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 {
|
||||
Map<String, Integer> requirements;
|
||||
String infoDamageDice;
|
||||
String infoDamageBonus;
|
||||
int playerStrength;
|
||||
int playerDex;
|
||||
String type = "Melee";
|
||||
String name;
|
||||
String rarity;
|
||||
|
@ -61,6 +61,7 @@ abstract class Sword implements Weapon {
|
|||
|
||||
abstract class Bow implements Weapon {
|
||||
Map<String, Integer> requirements;
|
||||
String infoDamageDice;
|
||||
String infoDamageBonus;
|
||||
int playerStrength;
|
||||
int playerDex;
|
||||
|
|
Loading…
Reference in a new issue