From 4bf074c3deab21984413be0dda914343dc94c905 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Thu, 8 Jan 2015 20:46:02 -0500 Subject: [PATCH] v0.2.3c: buffs to unstable spellbook --- .../items/artifacts/UnstableSpellbook.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/UnstableSpellbook.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/UnstableSpellbook.java index 41bb314ca..b98f3e0a3 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/UnstableSpellbook.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/UnstableSpellbook.java @@ -183,7 +183,7 @@ public class UnstableSpellbook extends Artifact { @Override public boolean act() { if (charge < chargeCap && !cursed) { - partialCharge += 1 / (300f - (chargeCap - charge)*30f); + partialCharge += 1 / (200f - (chargeCap - charge)*20f); if (partialCharge >= 1) { partialCharge --;