From 9c0391f39ecc671c949d115ea0612ffc85985af8 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sun, 5 Apr 2015 16:42:22 -0400 Subject: [PATCH] v0.3.0: modified some basic wand properties (now max at 10 charges, and IDs much quicker) --- .../shatteredpixeldungeon/items/wands/Wand.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/Wand.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/Wand.java index 9418f0d7d..638ec1115 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/Wand.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/wands/Wand.java @@ -46,7 +46,7 @@ import com.watabou.utils.Random; public abstract class Wand extends KindOfWeapon { - private static final int USAGES_TO_KNOW = 40; + private static final int USAGES_TO_KNOW = 10; public static final String AC_ZAP = "ZAP"; @@ -245,7 +245,7 @@ public abstract class Wand extends KindOfWeapon { } public void updateLevel() { - maxCharges = Math.min( initialCharges() + level, 9 ); + maxCharges = Math.min( initialCharges() + level, 10 ); curCharges = Math.min( curCharges, maxCharges ); calculateDamage();