v0.7.3b: added a price to broken honeypots
This commit is contained in:
parent
fff6687f50
commit
167c3e88bc
|
@ -229,6 +229,10 @@ public class Honeypot extends Item {
|
|||
public boolean isIdentified() {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public int price() {
|
||||
return 5 * quantity;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -67,6 +67,12 @@ public class ElixirOfHoneyedHealing extends Elixir {
|
|||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public int price() {
|
||||
//prices of ingredients
|
||||
return quantity * (30 + 5);
|
||||
}
|
||||
|
||||
public static class Recipe extends com.shatteredpixel.shatteredpixeldungeon.items.Recipe.SimpleRecipe {
|
||||
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue
Block a user