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