v0.3.0: corrected wand hitsplashes

This commit is contained in:
Evan Debenham 2015-04-29 21:33:49 -04:00
parent 11a13d72dd
commit 99d077a2dd
2 changed files with 4 additions and 4 deletions

View File

@ -40,7 +40,7 @@ public class WandOfFrost extends Wand {
if (ch.buff(Chill.class) != null){
damage = Math.round(damage * ch.buff(Chill.class).speedFactor());
} else {
ch.sprite.burst(0x99FFFFFF, level / 2 + 2);
ch.sprite.burst( 0xFF99CCFF, level / 2 + 2 );
}
ch.damage(damage, this);

View File

@ -77,9 +77,9 @@ public class WandOfMagicMissile extends Wand {
int level = level();
ch.damage( Random.NormalIntRange( 3+level, 6+level*2 ), this );
ch.sprite.burst( 0xFF99CCFF, level / 2 + 2 );
ch.damage(Random.NormalIntRange(3 + level, 6 + level * 2), this);
ch.sprite.burst(0xFFFFFFFF, level / 2 + 2);
if (ch == curUser && !ch.isAlive()) {
Dungeon.fail( Utils.format( ResultDescriptions.ITEM, name ) );