V0.2.0: Horn of Plenty number tweaking

This commit is contained in:
Evan Debenham
2014-08-28 16:37:16 -04:00
parent 8733e99e03
commit 116d2b501f
8 changed files with 17 additions and 13 deletions
@@ -37,7 +37,7 @@ public class Blandfruit extends Food {
stackable = false;
image = ItemSpriteSheet.BLANDFRUIT;
energy = (Hunger.STARVING - Hunger.HUNGRY)/2;
hornValue = 15;
hornValue = 3; //only applies when blandfruit is cooked
}
@Override
@@ -26,7 +26,7 @@ public class ChargrilledMeat extends Food {
name = "chargrilled meat";
image = ItemSpriteSheet.STEAK;
energy = Hunger.STARVING - Hunger.HUNGRY;
hornValue = 5;
hornValue = 1;
}
@Override
@@ -41,7 +41,7 @@ public class Food extends Item {
public float energy = Hunger.HUNGRY;
public String message = "That food tasted delicious!";
public int hornValue = 15;
public int hornValue = 3;
{
stackable = true;
@@ -37,7 +37,7 @@ public class FrozenCarpaccio extends Food {
name = "frozen carpaccio";
image = ItemSpriteSheet.CARPACCIO;
energy = Hunger.STARVING - Hunger.HUNGRY;
hornValue = 5;
hornValue = 1;
}
@Override
@@ -36,7 +36,7 @@ public class MysteryMeat extends Food {
image = ItemSpriteSheet.MEAT;
energy = Hunger.STARVING - Hunger.HUNGRY;
message = "That food tasted... strange.";
hornValue = 5;
hornValue = 1;
}
@Override
@@ -27,7 +27,7 @@ public class OverpricedRation extends Food {
image = ItemSpriteSheet.OVERPRICED;
energy = Hunger.STARVING - Hunger.HUNGRY;
message = "That food tasted ok.";
hornValue = 5;
hornValue = 1;
}
@Override
@@ -26,7 +26,7 @@ public class Pasty extends Food {
name = "pasty";
image = ItemSpriteSheet.PASTY;
energy = Hunger.STARVING;
hornValue = 25;
hornValue = 5;
}
@Override