V0.2.0b: Clarified Blandfruit description, buffed Blandfruit horn value

This commit is contained in:
Evan Debenham 2014-09-17 16:47:22 -04:00
parent 82d90b90f1
commit c5a15a0441

View File

@ -27,7 +27,7 @@ import com.watabou.utils.Random;
public class Blandfruit extends Food { public class Blandfruit extends Food {
public String message = "You eat the Blandfruit, bleugh!"; public String message = "You eat the Blandfruit, bleugh!";
public String info = "So dry and insubstantial, perhaps cooking could improve it."; public String info = "So dry and insubstantial, perhaps stewing it with another ingredient would improve it.";
public Potion potionAttrib = null; public Potion potionAttrib = null;
public ItemSprite.Glowing potionGlow = null; public ItemSprite.Glowing potionGlow = null;
@ -37,7 +37,7 @@ public class Blandfruit extends Food {
stackable = false; stackable = false;
image = ItemSpriteSheet.BLANDFRUIT; image = ItemSpriteSheet.BLANDFRUIT;
energy = (Hunger.STARVING - Hunger.HUNGRY)/2; energy = (Hunger.STARVING - Hunger.HUNGRY)/2;
hornValue = 3; //only applies when blandfruit is cooked hornValue = 6; //only applies when blandfruit is cooked
} }
@Override @Override