v3.3.0: reduced honeyed healing cost and values
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user