v0.7.0: added prices for runestones, corrected prices for rare seeds
This commit is contained in:
parent
5f615bb178
commit
11ed648dfd
|
@ -51,4 +51,9 @@ public abstract class Runestone extends Item {
|
|||
public boolean isIdentified() {
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int price() {
|
||||
return 10 * quantity;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -63,4 +63,9 @@ public class StoneOfEnchantment extends InventoryStone {
|
|||
useAnimation();
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public int price() {
|
||||
return 30 * quantity;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -54,5 +54,10 @@ public class Rotberry extends Plant {
|
|||
|
||||
plantClass = Rotberry.class;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int price() {
|
||||
return 30 * quantity;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -53,5 +53,10 @@ public class Starflower extends Plant {
|
|||
|
||||
plantClass = Starflower.class;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int price() {
|
||||
return 30 * quantity;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user