v3.3.0: reduced honeyed healing cost and values

This commit is contained in:
Evan Debenham
2025-10-08 11:50:35 -04:00
parent 2136d6b64e
commit 3dfd4c8109
2 changed files with 13 additions and 12 deletions

View File

@@ -79,16 +79,6 @@ public class ElixirOfFeatherFall extends Elixir {
}
}
@Override
public int value() {
return (int)(60 * (quantity/(float) Recipe.OUT_QUANTITY));
}
@Override
public int energyVal() {
return (int)(12 * (quantity/(float) Recipe.OUT_QUANTITY));
}
public static class Recipe extends com.shatteredpixel.shatteredpixeldungeon.items.Recipe.SimpleRecipe {
private static final int OUT_QUANTITY = 1;

View File

@@ -66,14 +66,25 @@ public class ElixirOfHoneyedHealing extends Elixir {
}
}
}
//lower values, as it's cheaper to make
@Override
public int value() {
return quantity * 40;
}
@Override
public int energyVal() {
return 8;
}
public static class Recipe extends com.shatteredpixel.shatteredpixeldungeon.items.Recipe.SimpleRecipe {
{
inputs = new Class[]{PotionOfHealing.class, Honeypot.ShatteredPot.class};
inQuantity = new int[]{1, 1};
cost = 4;
cost = 2;
output = ElixirOfHoneyedHealing.class;
outQuantity = 1;