v0.7.0: added prices for runestones, corrected prices for rare seeds

This commit is contained in:
Evan Debenham 2018-06-24 21:21:07 -04:00
parent 5f615bb178
commit 11ed648dfd
4 changed files with 20 additions and 0 deletions

View File

@ -51,4 +51,9 @@ public abstract class Runestone extends Item {
public boolean isIdentified() {
return true;
}
@Override
public int price() {
return 10 * quantity;
}
}

View File

@ -63,4 +63,9 @@ public class StoneOfEnchantment extends InventoryStone {
useAnimation();
}
@Override
public int price() {
return 30 * quantity;
}
}

View File

@ -54,5 +54,10 @@ public class Rotberry extends Plant {
plantClass = Rotberry.class;
}
@Override
public int price() {
return 30 * quantity;
}
}
}

View File

@ -53,5 +53,10 @@ public class Starflower extends Plant {
plantClass = Starflower.class;
}
@Override
public int price() {
return 30 * quantity;
}
}
}