Add some extra info text.
This commit is contained in:
parent
3cca8b4fad
commit
ad2c9fd150
1 changed files with 2 additions and 1 deletions
|
@ -26,9 +26,9 @@ interface Weapon {
|
||||||
|
|
||||||
abstract class Sword implements Weapon {
|
abstract class Sword implements Weapon {
|
||||||
Map<String, Integer> requirements;
|
Map<String, Integer> requirements;
|
||||||
|
String infoDamageDice;
|
||||||
String infoDamageBonus;
|
String infoDamageBonus;
|
||||||
int playerStrength;
|
int playerStrength;
|
||||||
int playerDex;
|
|
||||||
String type = "Melee";
|
String type = "Melee";
|
||||||
String name;
|
String name;
|
||||||
String rarity;
|
String rarity;
|
||||||
|
@ -61,6 +61,7 @@ abstract class Sword implements Weapon {
|
||||||
|
|
||||||
abstract class Bow implements Weapon {
|
abstract class Bow implements Weapon {
|
||||||
Map<String, Integer> requirements;
|
Map<String, Integer> requirements;
|
||||||
|
String infoDamageDice;
|
||||||
String infoDamageBonus;
|
String infoDamageBonus;
|
||||||
int playerStrength;
|
int playerStrength;
|
||||||
int playerDex;
|
int playerDex;
|
||||||
|
|
Loading…
Reference in a new issue