From 0850a2f7b3b51d3f72ba9632a8783503b11c99ed Mon Sep 17 00:00:00 2001
From: Evan Debenham <Evan@ShatteredPixel.com>
Date: Tue, 17 Feb 2015 00:23:14 -0500
Subject: [PATCH] v0.2.4: Significantly buffed the unstable spellbook

---
 .../items/artifacts/UnstableSpellbook.java                  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/UnstableSpellbook.java b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/UnstableSpellbook.java
index c939ef815..9a89ceb47 100644
--- a/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/UnstableSpellbook.java
+++ b/src/com/shatteredpixel/shatteredpixeldungeon/items/artifacts/UnstableSpellbook.java
@@ -34,9 +34,9 @@ public class UnstableSpellbook extends Artifact {
         level = 0;
         levelCap = 10;
 
-        charge = ((level/2)+1);
+        charge = ((level/2)+3);
         partialCharge = 0;
-        chargeCap = ((level/2)+1);
+        chargeCap = ((level/2)+3);
 
         defaultAction = AC_READ;
     }
@@ -184,7 +184,7 @@ public class UnstableSpellbook extends Artifact {
         @Override
         public boolean act() {
             if (charge < chargeCap && !cursed) {
-                partialCharge += 1 / (200f - (chargeCap - charge)*20f);
+                partialCharge += 1 / (200f - (chargeCap - charge)*15f);
 
                 if (partialCharge >= 1) {
                     partialCharge --;