v3.1.0: nerfed telegrab value to prevent turning thrown weps into energy

This commit is contained in:
Evan Debenham
2025-04-09 12:43:17 -04:00
parent 111e652e93
commit 22392538ec

View File

@@ -118,12 +118,12 @@ public class TelekineticGrab extends TargetedSpell {
@Override
public int value() {
return (int)(60 * (quantity/(float)Recipe.OUT_QUANTITY));
return (int)(50 * (quantity/(float)Recipe.OUT_QUANTITY));
}
@Override
public int energyVal() {
return (int)(12 * (quantity/(float)Recipe.OUT_QUANTITY));
return (int)(10 * (quantity/(float)Recipe.OUT_QUANTITY));
}
public static class Recipe extends com.shatteredpixel.shatteredpixeldungeon.items.Recipe.SimpleRecipe {