v0.3.0a: buffed mage and huntress earlygame

This commit is contained in:
Evan Debenham 2015-05-27 01:38:40 -04:00
parent e794cfe5a1
commit ec2d1bf511
3 changed files with 4 additions and 4 deletions

View File

@ -57,7 +57,7 @@ public class WandOfMagicMissile extends Wand {
int level = level();
ch.damage(Random.NormalIntRange(2 , 6 + level * 2), this);
ch.damage(Random.NormalIntRange(4 , 6 + level * 2), this);
ch.sprite.burst(0xFFFFFFFF, level / 2 + 2);

View File

@ -50,10 +50,10 @@ public class MagesStaff extends MeleeWeapon {
public MagesStaff() {
//tier 1 weapon with really poor base stats.
//tier 1 weapon with poor base stats.
super(1, 1f, 1f);
MIN = 1;
MAX = 4;
MAX = 5;
wand = null;
}

View File

@ -33,7 +33,7 @@ public class Boomerang extends MissileWeapon {
STR = 10;
MIN = 1;
MAX = 4;
MAX = 5;
stackable = false;