diff --git a/core/src/main/assets/items.png b/core/src/main/assets/items.png index 0bd001bb6..b921e4f12 100644 Binary files a/core/src/main/assets/items.png and b/core/src/main/assets/items.png differ diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/Recipe.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/Recipe.java index 78fc90376..a346cfe10 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/Recipe.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/Recipe.java @@ -25,7 +25,7 @@ import com.shatteredpixel.shatteredpixeldungeon.ShatteredPixelDungeon; import com.shatteredpixel.shatteredpixeldungeon.items.artifacts.AlchemistsToolkit; import com.shatteredpixel.shatteredpixeldungeon.items.bombs.Bomb; import com.shatteredpixel.shatteredpixeldungeon.items.food.Blandfruit; -import com.shatteredpixel.shatteredpixeldungeon.items.food.Feast; +import com.shatteredpixel.shatteredpixeldungeon.items.food.MeatPie; import com.shatteredpixel.shatteredpixeldungeon.items.food.StewedMeat; import com.shatteredpixel.shatteredpixeldungeon.items.potions.Potion; import com.shatteredpixel.shatteredpixeldungeon.items.potions.brews.BlizzardBrew; @@ -213,7 +213,7 @@ public abstract class Recipe { new ExoticPotion.PotionToExotic(), new ExoticScroll.ScrollToExotic(), new StewedMeat.threeMeat(), - new Feast.Recipe() + new MeatPie.Recipe() }; public static Recipe findRecipe(ArrayList<Item> ingredients){ diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/food/Feast.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/food/MeatPie.java similarity index 96% rename from core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/food/Feast.java rename to core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/food/MeatPie.java index 177dec736..f1bcd12ec 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/food/Feast.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/food/MeatPie.java @@ -30,10 +30,10 @@ import com.shatteredpixel.shatteredpixeldungeon.sprites.ItemSpriteSheet; import java.util.ArrayList; -public class Feast extends Food { +public class MeatPie extends Food { { - image = ItemSpriteSheet.FEAST; + image = ItemSpriteSheet.MEAT_PIE; energy = Hunger.STARVING*2f; } @@ -92,7 +92,7 @@ public class Feast extends Food { @Override public Item sampleOutput(ArrayList<Item> ingredients) { - return new Feast(); + return new MeatPie(); } } } diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/sprites/ItemSpriteSheet.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/sprites/ItemSpriteSheet.java index e619b8e95..e608e83fe 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/sprites/ItemSpriteSheet.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/sprites/ItemSpriteSheet.java @@ -607,7 +607,7 @@ public class ItemSpriteSheet { public static final int PASTY = FOOD+6; public static final int PUMPKIN_PIE = FOOD+7; public static final int CANDY_CANE = FOOD+8; - public static final int FEAST = FOOD+9; + public static final int MEAT_PIE = FOOD+9; public static final int BLANDFRUIT = FOOD+10; public static final int BLAND_CHUNKS= FOOD+11; static{ @@ -620,7 +620,7 @@ public class ItemSpriteSheet { assignItemRect(PASTY, 16, 11); assignItemRect(PUMPKIN_PIE, 16, 12); assignItemRect(CANDY_CANE, 13, 16); - assignItemRect(FEAST, 16, 12); + assignItemRect(MEAT_PIE, 16, 12); assignItemRect(BLANDFRUIT, 9, 12); assignItemRect(BLAND_CHUNKS,14, 6); } diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/QuickRecipe.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/QuickRecipe.java index 03b40ce10..012f01065 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/QuickRecipe.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/QuickRecipe.java @@ -28,8 +28,8 @@ import com.shatteredpixel.shatteredpixeldungeon.items.Item; import com.shatteredpixel.shatteredpixeldungeon.items.Recipe; import com.shatteredpixel.shatteredpixeldungeon.items.bombs.Bomb; import com.shatteredpixel.shatteredpixeldungeon.items.food.Blandfruit; -import com.shatteredpixel.shatteredpixeldungeon.items.food.Feast; import com.shatteredpixel.shatteredpixeldungeon.items.food.Food; +import com.shatteredpixel.shatteredpixeldungeon.items.food.MeatPie; import com.shatteredpixel.shatteredpixeldungeon.items.food.MysteryMeat; import com.shatteredpixel.shatteredpixeldungeon.items.food.Pasty; import com.shatteredpixel.shatteredpixeldungeon.items.food.StewedMeat; @@ -307,9 +307,9 @@ public class QuickRecipe extends Component { result.add(new QuickRecipe( new StewedMeat.threeMeat() )); result.add(null); result.add(null); - result.add(new QuickRecipe( new Feast.Recipe(), + result.add(new QuickRecipe( new MeatPie.Recipe(), new ArrayList<Item>(Arrays.asList(new Pasty(), new Food(), new MysteryMeat.PlaceHolder())), - new Feast())); + new MeatPie())); result.add(null); result.add(null); result.add(new QuickRecipe( new Blandfruit.CookFruit(), diff --git a/core/src/main/resources/com/shatteredpixel/shatteredpixeldungeon/messages/items/items.properties b/core/src/main/resources/com/shatteredpixel/shatteredpixeldungeon/messages/items/items.properties index 9feff2eba..33838a1a5 100644 --- a/core/src/main/resources/com/shatteredpixel/shatteredpixeldungeon/messages/items/items.properties +++ b/core/src/main/resources/com/shatteredpixel/shatteredpixeldungeon/messages/items/items.properties @@ -425,10 +425,6 @@ items.food.blandfruit$chunks.desc=The blandfruit has exploded on impact, leaving items.food.chargrilledmeat.name=chargrilled meat items.food.chargrilledmeat.desc=It looks like a decent steak. -items.food.feast.name=feast -items.food.feast.eat_msg=That meal was incredible! -items.food.feast.desc=A great variety of delicious food! This will satiate you far more than any other meal. - items.food.food.name=ration of food items.food.food.ac_eat=EAT items.food.food.eat_msg=That food tasted delicious! @@ -441,6 +437,10 @@ items.food.frozencarpaccio.refresh=Refreshing! items.food.frozencarpaccio.better=You feel better! items.food.frozencarpaccio.desc=It's a piece of frozen raw meat. The only way to eat it is by cutting thin slices of it. And this way it's suprisingly good. +items.food.meatpie.name=meat pie +items.food.meatpie.eat_msg=That food was incredible! +items.food.meatpie.desc=A delicious pie filled with savoury meat. This will satiate you far more than any other meal. + items.food.mysterymeat.name=mystery meat items.food.mysterymeat.eat_msg=That food tasted... strange. items.food.mysterymeat.hot=Oh it's hot!