From 22392538ec09c5f782113517bd61d08e415e3d1f Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 9 Apr 2025 12:43:17 -0400 Subject: [PATCH] v3.1.0: nerfed telegrab value to prevent turning thrown weps into energy --- .../shatteredpixeldungeon/items/spells/TelekineticGrab.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/TelekineticGrab.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/TelekineticGrab.java index 2e1f7fbd7..995db302a 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/TelekineticGrab.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/TelekineticGrab.java @@ -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 {