From 0d5d6ab6b22659566ccb6ededdbc758aa291daed Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Thu, 4 Oct 2018 23:17:19 -0400 Subject: [PATCH] v0.7.0: adjusted the balance on alchemize to 8 cost and 4 quantity --- .../shatteredpixeldungeon/items/spells/Alchemize.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/Alchemize.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/Alchemize.java index 82a8cb633..d7da6f962 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/Alchemize.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/Alchemize.java @@ -64,10 +64,10 @@ public class Alchemize extends Spell implements AlchemyScene.AlchemyProvider { inputs = new Class[]{ScrollOfRecharging.class, PotionOfLiquidFlame.class}; inQuantity = new int[]{1, 1}; - cost = 10; + cost = 8; output = Alchemize.class; - outQuantity = 5; + outQuantity = 4; } }