Add frost barrier spell

This commit is contained in:
Electroblob77
2020-09-27 17:48:37 +01:00
parent a72ac33768
commit c05f4001fd
18 changed files with 426 additions and 19 deletions
@@ -240,6 +240,8 @@ public final class Spells {
// Wizardry 4.3 spells
public static final Spell frost_barrier = placeholder();
public static final Spell blinding_flash = placeholder();
public static final Spell mark_sacrifice = placeholder();
@@ -453,6 +455,8 @@ public final class Spells {
// Wizardry 4.3 spells
registry.register(new FrostBarrier());
registry.register(new BlindingFlash());
registry.register(new MarkSacrifice());
@@ -162,6 +162,7 @@ public class WizardryEntities {
registry.register(createEntry(EntityTornado.class, "tornado") .tracker(160, 3, false).build());
registry.register(createEntry(EntityIceSpike.class, "ice_spike") .tracker(160, 1, true).build());
registry.register(createEntry(EntityBoulder.class, "boulder") .tracker(160, 1, true).build()); // Vertical velocity is not constant
registry.register(createEntry(EntityIceBarrier.class, "ice_barrier") .tracker(160, 1, true).build());
}
@@ -66,6 +66,8 @@ public final class WizardrySounds {
public static final SoundEvent ENTITY_HAMMER_THROW = createSound("entity.hammer.throw");
public static final SoundEvent ENTITY_HAMMER_LAND = createSound("entity.hammer.land");
public static final SoundEvent ENTITY_HEAL_AURA_AMBIENT = createSound("entity.heal_aura.ambient");
public static final SoundEvent ENTITY_ICE_BARRIER_DEFLECT = createSound("entity.ice_barrier.deflect");
public static final SoundEvent ENTITY_ICE_BARRIER_EXTEND = createSound("entity.ice_barrier.extend");
public static final SoundEvent ENTITY_ICE_SPIKE_EXTEND = createSound("entity.ice_spike.extend");
public static final SoundEvent ENTITY_LIGHTNING_SIGIL_TRIGGER = createSound("entity.lightning_sigil.trigger");
public static final SoundEvent ENTITY_METEOR_FALLING = createSound("entity.meteor.falling");