From c5a15a04413ec6aca3c931e2425f96b100ea0083 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 17 Sep 2014 16:47:22 -0400 Subject: [PATCH] V0.2.0b: Clarified Blandfruit description, buffed Blandfruit horn value --- .../shatteredpixeldungeon/items/food/Blandfruit.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/food/Blandfruit.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/food/Blandfruit.java index 4c3d7bcf7..75b54cfc7 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/food/Blandfruit.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/food/Blandfruit.java @@ -27,7 +27,7 @@ import com.watabou.utils.Random; public class Blandfruit extends Food { 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 ItemSprite.Glowing potionGlow = null; @@ -37,7 +37,7 @@ public class Blandfruit extends Food { stackable = false; image = ItemSpriteSheet.BLANDFRUIT; energy = (Hunger.STARVING - Hunger.HUNGRY)/2; - hornValue = 3; //only applies when blandfruit is cooked + hornValue = 6; //only applies when blandfruit is cooked } @Override