v0.3.0: renamed wand of firebolt to wand of fireblast
This commit is contained in:
parent
9b280400c6
commit
3e083fc299
src/com/shatteredpixel/shatteredpixeldungeon
|
@ -26,7 +26,7 @@ import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Chill;
|
|||
import com.shatteredpixel.shatteredpixeldungeon.actors.buffs.Frost;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfLiquidFlame;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.wands.WandOfFirebolt;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.wands.WandOfFireblast;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.weapon.enchantments.Fire;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.levels.Level;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.sprites.ElementalSprite;
|
||||
|
@ -102,7 +102,7 @@ public class Elemental extends Mob {
|
|||
static {
|
||||
IMMUNITIES.add( Burning.class );
|
||||
IMMUNITIES.add( Fire.class );
|
||||
IMMUNITIES.add( WandOfFirebolt.class );
|
||||
IMMUNITIES.add( WandOfFireblast.class );
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -35,7 +35,6 @@ import com.shatteredpixel.shatteredpixeldungeon.effects.CellEmitter;
|
|||
import com.shatteredpixel.shatteredpixeldungeon.effects.Speck;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.Heap;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.Item;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.bags.Bag;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.potions.PotionOfStrength;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.quest.CorpseDust;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.wands.Wand;
|
||||
|
@ -43,7 +42,7 @@ import com.shatteredpixel.shatteredpixeldungeon.items.wands.WandOfAmok;
|
|||
import com.shatteredpixel.shatteredpixeldungeon.items.wands.WandOfAvalanche;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.wands.WandOfBlink;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.wands.WandOfDisintegration;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.wands.WandOfFirebolt;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.wands.WandOfFireblast;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.wands.WandOfLightning;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.wands.WandOfPoison;
|
||||
import com.shatteredpixel.shatteredpixeldungeon.items.wands.WandOfRegrowth;
|
||||
|
@ -239,7 +238,7 @@ public class Wandmaker extends NPC {
|
|||
wand1 = new WandOfDisintegration();
|
||||
break;
|
||||
case 2:
|
||||
wand1 = new WandOfFirebolt();
|
||||
wand1 = new WandOfFireblast();
|
||||
break;
|
||||
case 3:
|
||||
wand1 = new WandOfLightning();
|
||||
|
|
|
@ -118,7 +118,7 @@ public class Generator {
|
|||
Category.WAND.classes = new Class<?>[]{
|
||||
WandOfTeleportation.class,
|
||||
WandOfSlowness.class,
|
||||
WandOfFirebolt.class,
|
||||
WandOfFireblast.class,
|
||||
WandOfRegrowth.class,
|
||||
WandOfPoison.class,
|
||||
WandOfBlink.class,
|
||||
|
|
|
@ -37,11 +37,10 @@ import com.watabou.utils.Random;
|
|||
|
||||
import java.util.HashSet;
|
||||
|
||||
//TODO: rename to fireblast
|
||||
public class WandOfFirebolt extends Wand {
|
||||
public class WandOfFireblast extends Wand {
|
||||
|
||||
{
|
||||
name = "Wand of Firebolt";
|
||||
name = "Wand of Fireblast";
|
||||
image = ItemSpriteSheet.WAND_FIREBOLT;
|
||||
|
||||
collisionProperties = Ballistica.STOP_TERRAIN;
|
Loading…
Reference in New Issue
Block a user