V0.1.0 Final Commit

Full changelist:
Seeds:
-Blindweed buffed, now cripples as well as blinds
-Sungrass nerfed, heal scales up over time, total heal reduced by combat
-Earthroot nerfed, absorb is now 50%, total shield unchanged
-Icecap buffed, freeze effect now much stronger in water.

Potions:
-Purity buffed, immunity increased to 10 turns, clear effect radius increased
-Frost buffed, freeze effect now much stronger in water.

Scrolls:
-Psionic blast reworked, now rarer, more risky, & much stronger.
-Challenge renamed to Rage, buffed, now amoks nearby enemies
Scroll of Lullaby will be buffed next patch

Etc.:
-Internal android packaging changed, IDs as new program.
-Descriptions updated
-Rough mod indicator added to rankings
This commit is contained in:
Evan Debenham
2014-08-04 22:34:26 -04:00
parent 36b4b82454
commit c5e8ffea91
13 changed files with 31 additions and 42 deletions
@@ -17,6 +17,7 @@
*/
package com.shatteredpixel.shatteredpixeldungeon.items.scrolls;
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Paralysis;
import com.watabou.noosa.audio.Sample;
import com.shatteredpixel.shatteredpixeldungeon.Assets;
import com.shatteredpixel.shatteredpixeldungeon.Dungeon;
@@ -44,13 +45,13 @@ public class ScrollOfPsionicBlast extends Scroll {
for (Mob mob : Dungeon.level.mobs.toArray( new Mob[0] )) {
if (Level.fieldOfView[mob.pos]) {
Buff.prolong( mob, Blindness.class, Random.Int( 3, 6 ) );
mob.damage(mob.HT, this );
}
}
curUser.damage(Random.IntRange(curUser.HT/3, (int)(curUser.HT*0.99)), this);
Buff.prolong( curUser, Blindness.class, Random.Int( 3, 6 ) );
curUser.damage(Random.IntRange(curUser.HT/3, (int)(curUser.HT*0.85)), this);
Buff.prolong( curUser, Paralysis.class, Random.Int( 2, 4 ) );
Buff.prolong( curUser, Blindness.class, Random.Int( 4, 8 ) );
Dungeon.observe();
setKnown();
@@ -61,9 +62,9 @@ public class ScrollOfPsionicBlast extends Scroll {
@Override
public String desc() {
return
"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" +
"blind and massively harm the reader. if the reader is already injured they will likely die.";
"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 " +
"blind, temporarily stun, and massively harm the reader.";
}
@Override