V0.2.1 : reduced self-damage on Scroll of Psionic Blast

This commit is contained in:
Evan Debenham 2014-10-11 17:02:10 -04:00
parent 8d6207dec0
commit 12e2f13808

View File

@ -52,7 +52,7 @@ public class ScrollOfPsionicBlast extends Scroll {
} }
} }
curUser.damage(Random.IntRange(curUser.HT/3, (int)(curUser.HT*0.67)), this); curUser.damage(Random.IntRange(curUser.HT/4, curUser.HT/2), this);
Buff.prolong( curUser, Paralysis.class, Random.Int( 4, 6 ) ); Buff.prolong( curUser, Paralysis.class, Random.Int( 4, 6 ) );
Buff.prolong( curUser, Blindness.class, Random.Int( 6, 9 ) ); Buff.prolong( curUser, Blindness.class, Random.Int( 6, 9 ) );
Dungeon.observe(); Dungeon.observe();
@ -72,7 +72,7 @@ public class ScrollOfPsionicBlast extends Scroll {
return return
"This scroll contains destructive energy that can be psionically channeled to tear apart " + "This scroll contains destructive energy that can be psionically channeled to tear apart " +
"the minds of all visible creatures. The power unleashed by the scroll will also temporarily " + "the minds of all visible creatures. The power unleashed by the scroll will also temporarily " +
"blind, temporarily stun, and massively harm the reader."; "blind, stun, and seriously harm the reader.";
} }
@Override @Override