Files
Wizardry/src/main/java/electroblob/wizardry/registry/Spells.java
T
2020-05-18 20:41:41 +01:00

450 lines
25 KiB
Java

package electroblob.wizardry.registry;
import electroblob.wizardry.Wizardry;
import electroblob.wizardry.entity.construct.*;
import electroblob.wizardry.entity.living.*;
import electroblob.wizardry.entity.projectile.*;
import electroblob.wizardry.item.SpellActions;
import electroblob.wizardry.spell.*;
import net.minecraft.entity.projectile.EntitySnowball;
import net.minecraft.init.MobEffects;
import net.minecraft.util.ResourceLocation;
import net.minecraftforge.event.RegistryEvent;
import net.minecraftforge.fml.common.Mod;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import net.minecraftforge.fml.common.registry.GameRegistry.ObjectHolder;
import net.minecraftforge.registries.IForgeRegistry;
import net.minecraftforge.registries.RegistryBuilder;
import javax.annotation.Nonnull;
/**
* Class responsible for defining, storing and registering all of wizardry's spells. Use this to access individual
* spell instances, similar to the {@code Blocks} and {@code Items} classes.
*
* @author Electroblob
* @since Wizardry 2.1
*/
@ObjectHolder(Wizardry.MODID)
@Mod.EventBusSubscriber
public final class Spells {
private Spells(){} // No instances!
// This is here because this class is already an event handler.
@SubscribeEvent
public static void createRegistry(RegistryEvent.NewRegistry event){
RegistryBuilder<Spell> builder = new RegistryBuilder<>();
builder.setType(Spell.class);
builder.setName(new ResourceLocation(Wizardry.MODID, "spells"));
builder.setIDRange(0, 5000); // Is there any penalty for using a larger number?
Spell.registry = builder.create();
}
@Nonnull
@SuppressWarnings("ConstantConditions")
private static <T> T placeholder(){ return null; }
// Wizardry 1.0 spells
public static final Spell none = placeholder();
public static final Spell magic_missile = placeholder();
public static final Spell ignite = placeholder();
public static final Spell freeze = placeholder();
public static final Spell snowball = placeholder();
public static final Spell arc = placeholder();
public static final Spell thunderbolt = placeholder();
public static final Spell summon_zombie = placeholder();
public static final Spell snare = placeholder();
public static final Spell dart = placeholder();
public static final Spell light = placeholder();
public static final Spell telekinesis = placeholder();
public static final Spell heal = placeholder();
public static final Spell fireball = placeholder();
public static final Spell flame_ray = placeholder();
public static final Spell firebomb = placeholder();
public static final Spell fire_sigil = placeholder();
public static final Spell firebolt = placeholder();
public static final Spell frost_ray = placeholder();
public static final Spell summon_snow_golem = placeholder();
public static final Spell ice_shard = placeholder();
public static final Spell ice_statue = placeholder();
public static final Spell frost_sigil = placeholder();
public static final Spell lightning_ray = placeholder();
public static final Spell spark_bomb = placeholder();
public static final Spell homing_spark = placeholder();
public static final Spell lightning_sigil = placeholder();
public static final Spell lightning_arrow = placeholder();
public static final Spell life_drain = placeholder();
public static final Spell summon_skeleton = placeholder();
public static final Spell metamorphosis = placeholder();
public static final Spell wither = placeholder();
public static final Spell poison = placeholder();
public static final Spell growth_aura = placeholder();
public static final Spell bubble = placeholder();
public static final Spell whirlwind = placeholder();
public static final Spell poison_bomb = placeholder();
public static final Spell summon_spirit_wolf = placeholder();
public static final Spell blink = placeholder();
public static final Spell agility = placeholder();
public static final Spell conjure_sword = placeholder();
public static final Spell conjure_pickaxe = placeholder();
public static final Spell conjure_bow = placeholder();
public static final Spell force_arrow = placeholder();
public static final Spell shield = placeholder();
public static final Spell replenish_hunger = placeholder();
public static final Spell cure_effects = placeholder();
public static final Spell heal_ally = placeholder();
public static final Spell summon_blaze = placeholder();
public static final Spell ring_of_fire = placeholder();
public static final Spell detonate = placeholder();
public static final Spell fire_resistance = placeholder();
public static final Spell fireskin = placeholder();
public static final Spell flaming_axe = placeholder();
public static final Spell blizzard = placeholder();
public static final Spell summon_ice_wraith = placeholder();
public static final Spell ice_shroud = placeholder();
public static final Spell ice_charge = placeholder();
public static final Spell frost_axe = placeholder();
public static final Spell invoke_weather = placeholder();
public static final Spell chain_lightning = placeholder();
public static final Spell lightning_bolt = placeholder();
public static final Spell summon_lightning_wraith = placeholder();
public static final Spell static_aura = placeholder();
public static final Spell lightning_disc = placeholder();
public static final Spell mind_control = placeholder();
public static final Spell summon_wither_skeleton = placeholder();
public static final Spell entrapment = placeholder();
public static final Spell wither_skull = placeholder();
public static final Spell darkness_orb = placeholder();
public static final Spell shadow_ward = placeholder();
public static final Spell decay = placeholder();
public static final Spell water_breathing = placeholder();
public static final Spell tornado = placeholder();
public static final Spell glide = placeholder();
public static final Spell summon_spirit_horse = placeholder();
public static final Spell spider_swarm = placeholder();
public static final Spell slime = placeholder();
public static final Spell petrify = placeholder();
public static final Spell invisibility = placeholder();
public static final Spell levitation = placeholder();
public static final Spell force_orb = placeholder();
public static final Spell transportation = placeholder();
public static final Spell spectral_pathway = placeholder();
public static final Spell phase_step = placeholder();
public static final Spell vanishing_box = placeholder();
public static final Spell greater_heal = placeholder();
public static final Spell healing_aura = placeholder();
public static final Spell forcefield = placeholder();
public static final Spell ironflesh = placeholder();
public static final Spell transience = placeholder();
public static final Spell meteor = placeholder();
public static final Spell fire_breath = placeholder();
public static final Spell summon_phoenix = placeholder();
public static final Spell ice_age = placeholder();
public static final Spell wall_of_frost = placeholder();
public static final Spell summon_ice_giant = placeholder();
public static final Spell thunderstorm = placeholder();
public static final Spell lightning_hammer = placeholder();
public static final Spell plague_of_darkness = placeholder();
public static final Spell summon_skeleton_legion = placeholder();
public static final Spell summon_shadow_wraith = placeholder();
public static final Spell forests_curse = placeholder();
public static final Spell flight = placeholder();
public static final Spell silverfish_swarm = placeholder();
public static final Spell black_hole = placeholder();
public static final Spell shockwave = placeholder();
public static final Spell summon_iron_golem = placeholder();
public static final Spell arrow_rain = placeholder();
public static final Spell diamondflesh = placeholder();
public static final Spell font_of_vitality = placeholder();
// Wizardry 1.1 spells
public static final Spell smoke_bomb = placeholder();
public static final Spell mind_trick = placeholder();
public static final Spell leap = placeholder();
public static final Spell pocket_furnace = placeholder();
public static final Spell intimidate = placeholder();
public static final Spell banish = placeholder();
public static final Spell sixth_sense = placeholder();
public static final Spell darkvision = placeholder();
public static final Spell clairvoyance = placeholder();
public static final Spell pocket_workbench = placeholder();
public static final Spell imbue_weapon = placeholder();
public static final Spell invigorating_presence = placeholder();
public static final Spell oakflesh = placeholder();
public static final Spell greater_fireball = placeholder();
public static final Spell flaming_weapon = placeholder();
public static final Spell ice_lance = placeholder();
public static final Spell freezing_weapon = placeholder();
public static final Spell ice_spikes = placeholder();
public static final Spell lightning_pulse = placeholder();
public static final Spell curse_of_soulbinding = placeholder();
public static final Spell cobwebs = placeholder();
public static final Spell decoy = placeholder();
public static final Spell arcane_jammer = placeholder();
public static final Spell conjure_armour = placeholder();
public static final Spell group_heal = placeholder();
public static final Spell hailstorm = placeholder();
public static final Spell lightning_web = placeholder();
public static final Spell summon_storm_elemental = placeholder();
public static final Spell earthquake = placeholder();
public static final Spell font_of_mana = placeholder();
// Wizardry 4.2 spells
public static final Spell mine = placeholder();
public static final Spell conjure_block = placeholder();
public static final Spell muffle = placeholder();
public static final Spell ward = placeholder();
public static final Spell evade = placeholder();
public static final Spell iceball = placeholder();
public static final Spell charge = placeholder();
public static final Spell reversal = placeholder();
public static final Spell grapple = placeholder();
public static final Spell divination = placeholder();
public static final Spell empowering_presence = placeholder();
public static final Spell disintegration = placeholder();
public static final Spell combustion_rune = placeholder();
public static final Spell frost_step = placeholder();
public static final Spell paralysis = placeholder();
public static final Spell shulker_bullet = placeholder();
public static final Spell curse_of_undeath = placeholder();
public static final Spell dragon_fireball = placeholder();
public static final Spell greater_telekinesis = placeholder();
public static final Spell vex_swarm = placeholder();
public static final Spell arcane_lock = placeholder();
public static final Spell containment = placeholder();
public static final Spell satiety = placeholder();
public static final Spell greater_ward = placeholder();
public static final Spell ray_of_purification = placeholder();
public static final Spell remove_curse = placeholder();
public static final Spell possession = placeholder();
public static final Spell curse_of_enfeeblement = placeholder();
public static final Spell forest_of_thorns = placeholder();
public static final Spell speed_time = placeholder();
public static final Spell slow_time = placeholder();
public static final Spell resurrection = placeholder();
// Wizardry 4.3 spells
public static final Spell stormcloud = placeholder();
@SubscribeEvent
public static void register(RegistryEvent.Register<Spell> event){
IForgeRegistry<Spell> registry = event.getRegistry();
registry.register(new None());
registry.register(new SpellArrow<EntityMagicMissile>("magic_missile", EntityMagicMissile::new){
@Override
protected String getTranslationKey(){
return Wizardry.tisTheSeason ? super.getTranslationKey() + "_festive" : super.getTranslationKey();
}
}.addProperties(Spell.DAMAGE).soundValues(1, 1.4f, 0.4f));
registry.register(new Ignite());
registry.register(new Freeze());
registry.register(new SpellThrowable<>("snowball", EntitySnowball::new).npcSelector((e, o) -> o).soundValues(0.5f, 0.4f, 0.2f)); // Let's spare wizards the pain of the snowball spell
registry.register(new Arc());
registry.register(new SpellProjectile<>("thunderbolt", EntityThunderbolt::new).addProperties(Spell.DAMAGE, EntityThunderbolt.KNOCKBACK_STRENGTH).soundValues(0.8f, 0.9f, 0.2f));
registry.register(new SummonZombie());
registry.register(new Snare());
registry.register(new SpellArrow<>("dart", EntityDart::new).addProperties(Spell.DAMAGE, Spell.EFFECT_DURATION, Spell.EFFECT_STRENGTH).soundValues(0.5f, 0.4f, 0.2f));
registry.register(new Light());
registry.register(new Telekinesis());
registry.register(new Heal());
registry.register(new SpellProjectile<>("fireball", EntityMagicFireball::new).addProperties(Spell.DAMAGE, Spell.BURN_DURATION));//new Fireball());
registry.register(new FlameRay());
registry.register(new SpellProjectile<>("firebomb", EntityFirebomb::new).addProperties(Spell.DIRECT_DAMAGE, Spell.SPLASH_DAMAGE, Spell.BLAST_RADIUS, Spell.BURN_DURATION).soundValues(0.5f, 0.4f, 0.2f));
registry.register(new SpellConstructRanged<>("fire_sigil", EntityFireSigil::new, true).floor(true).addProperties(Spell.DAMAGE, Spell.BURN_DURATION));
registry.register(new SpellProjectile<>("firebolt", EntityFirebolt::new).addProperties(Spell.DAMAGE, Spell.BURN_DURATION));
registry.register(new FrostRay());
registry.register(new SummonSnowGolem());
registry.register(new SpellArrow<>("ice_shard", EntityIceShard::new).addProperties(Spell.DAMAGE, Spell.EFFECT_DURATION, Spell.EFFECT_STRENGTH).soundValues(1, 1.6f, 0.4f));
registry.register(new IceStatue());
registry.register(new SpellConstructRanged<>("frost_sigil", EntityFrostSigil::new, true).floor(true).addProperties(Spell.DAMAGE, Spell.EFFECT_DURATION, Spell.EFFECT_STRENGTH));
registry.register(new LightningRay());
registry.register(new SpellProjectile<>("spark_bomb", EntitySparkBomb::new).addProperties(Spell.DIRECT_DAMAGE, Spell.EFFECT_RADIUS, EntitySparkBomb.SECONDARY_MAX_TARGETS, Spell.SPLASH_DAMAGE).soundValues(0.5f, 0.4f, 0.2f));
registry.register(new SpellProjectile<>("homing_spark", EntitySpark::new).addProperties(Spell.DAMAGE, Spell.SEEKING_STRENGTH).soundValues(1.0f, 0.4f, 0.2f));
registry.register(new SpellConstructRanged<>("lightning_sigil", EntityLightningSigil::new, true).floor(true).addProperties(Spell.DIRECT_DAMAGE, Spell.EFFECT_RADIUS, EntityLightningSigil.SECONDARY_MAX_TARGETS, Spell.SPLASH_DAMAGE));
registry.register(new SpellArrow<>("lightning_arrow", EntityLightningArrow::new).addProperties(Spell.DAMAGE).soundValues(1, 1.45f, 0.3f));
registry.register(new LifeDrain());
registry.register(new SummonSkeleton());
registry.register(new Metamorphosis());
registry.register(new Wither());
registry.register(new Poison());
registry.register(new GrowthAura());
registry.register(new Bubble());
registry.register(new Whirlwind());
registry.register(new SpellProjectile<>("poison_bomb", EntityPoisonBomb::new).addProperties(Spell.DIRECT_DAMAGE, Spell.EFFECT_RADIUS, Spell.DIRECT_EFFECT_DURATION, Spell.DIRECT_EFFECT_STRENGTH, Spell.SPLASH_DAMAGE, Spell.SPLASH_EFFECT_DURATION, Spell.SPLASH_EFFECT_STRENGTH).soundValues(0.5f, 0.4f, 0.2f));
registry.register(new SummonSpiritWolf());
registry.register(new Blink());
registry.register(new SpellBuff("agility", 0.4f, 1.0f, 0.8f, () -> MobEffects.SPEED, () -> MobEffects.JUMP_BOOST).soundValues(0.7f, 1.2f, 0.4f));
registry.register(new SpellConjuration("conjure_sword", WizardryItems.spectral_sword));
registry.register(new SpellConjuration("conjure_pickaxe", WizardryItems.spectral_pickaxe));
registry.register(new SpellConjuration("conjure_bow", WizardryItems.spectral_bow));
registry.register(new ForceArrow());
registry.register(new Shield());
registry.register(new ReplenishHunger());
registry.register(new CureEffects());
registry.register(new HealAlly());
registry.register(new SpellMinion<>("summon_blaze", EntityBlazeMinion::new).soundValues(1, 1.1f, 0.2f));
registry.register(new SpellConstruct<>("ring_of_fire", SpellActions.POINT_DOWN, EntityFireRing::new, false).floor(true).addProperties(Spell.DAMAGE, Spell.BURN_DURATION));
registry.register(new Detonate());
registry.register(new SpellBuff("fire_resistance", 1, 0.5f, 0, () -> MobEffects.FIRE_RESISTANCE).soundValues(0.7f, 1.2f, 0.4f));
registry.register(new SpellBuff("fireskin", 1, 0.5f, 0, () -> WizardryPotions.fireskin).addProperties(Spell.BURN_DURATION));
registry.register(new FlamingAxe());
registry.register(new SpellConstructRanged<>("blizzard", EntityBlizzard::new, false).addProperties(Spell.EFFECT_RADIUS));
registry.register(new SpellMinion<>("summon_ice_wraith", EntityIceWraith::new).soundValues(1, 1.1f, 0.2f));
registry.register(new SpellBuff("ice_shroud", 0.3f, 0.5f, 1, () -> WizardryPotions.ice_shroud).addProperties(Spell.EFFECT_DURATION, Spell.EFFECT_STRENGTH).soundValues(1, 1.6f, 0.4f));
registry.register(new SpellProjectile<>("ice_charge", EntityIceCharge::new).addProperties(Spell.DAMAGE, Spell.EFFECT_RADIUS, Spell.DIRECT_EFFECT_DURATION, Spell.DIRECT_EFFECT_STRENGTH, Spell.SPLASH_EFFECT_DURATION, Spell.SPLASH_EFFECT_STRENGTH, EntityIceCharge.ICE_SHARDS).soundValues(1, 1.6f, 0.4f));
registry.register(new FrostAxe());
registry.register(new InvokeWeather());
registry.register(new ChainLightning());
registry.register(new LightningBolt());
registry.register(new SpellMinion<>("summon_lightning_wraith", EntityLightningWraith::new).soundValues(1, 1.1f, 0.2f));
registry.register(new SpellBuff("static_aura", 0, 0.5f, 0.7f, () -> WizardryPotions.static_aura).addProperties(Spell.DAMAGE).soundValues(1, 1.6f, 0.4f));
registry.register(new SpellProjectile<>("lightning_disc", EntityLightningDisc::new).addProperties(Spell.DAMAGE, Spell.SEEKING_STRENGTH).soundValues(1, 0.95f, 0.3f));
registry.register(new MindControl());
registry.register(new SummonWitherSkeleton());
registry.register(new Entrapment());
registry.register(new WitherSkull());
registry.register(new SpellProjectile<>("darkness_orb", EntityDarknessOrb::new).addProperties(Spell.DAMAGE, Spell.EFFECT_DURATION, Spell.EFFECT_STRENGTH).soundValues(0.5f, 0.4f, 0.2f));
registry.register(new ShadowWard());
registry.register(new Decay());
registry.register(new SpellBuff("water_breathing", 0.3f, 0.3f, 1, () -> MobEffects.WATER_BREATHING).npcSelector((e, o) -> false).soundValues(0.7f, 1.2f, 0.4f));
registry.register(new Tornado());
registry.register(new Glide());
registry.register(new SummonSpiritHorse());
registry.register(new SpellMinion<>("spider_swarm", EntitySpiderMinion::new).soundValues(1, 1.1f, 0.1f));
registry.register(new Slime());
registry.register(new Petrify());
registry.register(new SpellBuff("invisibility", 0.7f, 1, 1, () -> MobEffects.INVISIBILITY).soundValues(0.7f, 1.2f, 0.4f));
registry.register(new Levitation());
registry.register(new SpellProjectile<>("force_orb", EntityForceOrb::new).addProperties(Spell.DAMAGE, Spell.BLAST_RADIUS).soundValues(0.5f, 0.4f, 0.2f));
registry.register(new Transportation());
registry.register(new SpectralPathway());
registry.register(new PhaseStep());
registry.register(new VanishingBox());
registry.register(new GreaterHeal());
registry.register(new SpellConstruct<>("healing_aura", SpellActions.POINT_DOWN, EntityHealAura::new, false).addProperties(Spell.DAMAGE, Spell.HEALTH));
registry.register(new Forcefield());
registry.register(new SpellBuff("ironflesh", 0.4f, 0.5f, 0.6f, () -> MobEffects.RESISTANCE).soundValues(0.7f, 1.2f, 0.4f));
registry.register(new Transience());
registry.register(new Meteor());
registry.register(new FireBreath());
registry.register(new SpellMinion<>("summon_phoenix", EntityPhoenix::new).flying(true).soundValues(1, 1.1f, 0.1f));
registry.register(new IceAge());
registry.register(new WallOfFrost());
registry.register(new SpellMinion<>("summon_ice_giant", EntityIceGiant::new).soundValues(1, 0.15f, 0.1f));
registry.register(new Thunderstorm());
registry.register(new LightningHammer());
registry.register(new PlagueOfDarkness());
registry.register(new SummonSkeletonLegion());
registry.register(new SummonShadowWraith());
registry.register(new ForestsCurse());
registry.register(new Flight());
registry.register(new SpellMinion<>("silverfish_swarm", EntitySilverfishMinion::new).soundValues(1, 1.1f, 0.1f));
registry.register(new SpellConstructRanged<>("black_hole", EntityBlackHole::new, false).soundValues(2, 0.7f, 0));
registry.register(new Shockwave());
registry.register(new SummonIronGolem());
registry.register(new ArrowRain());
registry.register(new SpellBuff("diamondflesh", 0.1f, 0.7f, 1, () -> MobEffects.RESISTANCE).soundValues(0.7f, 1.2f, 0.4f));
registry.register(new SpellBuff("font_of_vitality", 1, 0.8f, 0.3f, () -> MobEffects.ABSORPTION, () -> MobEffects.REGENERATION).soundValues(0.7f, 1.2f, 0.4f));
// Wizardry 1.1 spells
registry.register(new SpellProjectile<>("smoke_bomb", EntitySmokeBomb::new).addProperties(Spell.BLAST_RADIUS, Spell.EFFECT_DURATION).soundValues(0.5f, 0.4f, 0.2f));
registry.register(new MindTrick());
registry.register(new Leap());
registry.register(new PocketFurnace());
registry.register(new Intimidate());
registry.register(new Banish());
registry.register(new SixthSense());
registry.register(new SpellBuff("darkvision", 0, 0.4f, 0.7f, () -> MobEffects.NIGHT_VISION).npcSelector((e, o) -> false).soundValues(0.7f, 1.2f, 0.4f));
registry.register(new Clairvoyance());
registry.register(new PocketWorkbench());
registry.register(new ImbueWeapon());
registry.register(new InvigoratingPresence());
registry.register(new SpellBuff("oakflesh", 0.6f, 0.5f, 0.4f, () -> MobEffects.RESISTANCE).soundValues(0.7f, 1.2f, 0.4f));
registry.register(new SpellProjectile<>("greater_fireball", EntityLargeMagicFireball::new).addProperties(Spell.DAMAGE, EntityLargeMagicFireball.EXPLOSION_POWER));//new GreaterFireball());
registry.register(new FlamingWeapon());
registry.register(new SpellArrow<>("ice_lance", EntityIceLance::new).addProperties(Spell.DAMAGE, Spell.EFFECT_DURATION, Spell.EFFECT_STRENGTH).soundValues(1, 1, 0.4f));
registry.register(new FreezingWeapon());
registry.register(new IceSpikes());
registry.register(new LightningPulse());
registry.register(new CurseOfSoulbinding());
registry.register(new Cobwebs());
registry.register(new Decoy());
registry.register(new ArcaneJammer());
registry.register(new ConjureArmour());
registry.register(new GroupHeal());
registry.register(new Hailstorm());
registry.register(new LightningWeb());
registry.register(new SpellMinion<>("summon_storm_elemental", EntityStormElemental::new).soundValues(1, 1.1f, 0.1f));
registry.register(new Earthquake());
registry.register(new FontOfMana());
// Wizardry 4.2 spells
registry.register(new Mine());
registry.register(new ConjureBlock());
registry.register(new SpellBuff("muffle", 0.3f, 0.4f, 0.8f, () -> WizardryPotions.muffle).soundValues(0.7f, 1.2f, 0.4f));
registry.register(new SpellBuff("ward", 0.75f, 0.6f, 0.8f, () -> WizardryPotions.ward).soundValues(0.7f, 1.2f, 0.4f));
registry.register(new Evade());
registry.register(new SpellProjectile<>("iceball", EntityIceball::new).addProperties(Spell.DAMAGE, Spell.EFFECT_DURATION, Spell.EFFECT_STRENGTH));
registry.register(new Charge());
registry.register(new Reversal());
registry.register(new Grapple());
registry.register(new Divination());
registry.register(new EmpoweringPresence());
registry.register(new Disintegration());
registry.register(new SpellConstructRanged<>("combustion_rune", EntityCombustionRune::new, true).floor(true).addProperties(Spell.BLAST_RADIUS));
registry.register(new SpellBuff("frost_step", 0.3f, 0.4f, 0.8f, () -> WizardryPotions.frost_step).soundValues(0.7f, 1.2f, 0.4f));
registry.register(new Paralysis());
registry.register(new ShulkerBullet());
registry.register(new CurseOfUndeath());
registry.register(new DragonFireball());
registry.register(new GreaterTelekinesis());
registry.register(new SpellMinion<>("vex_swarm", EntityVexMinion::new).flying(true).soundValues(1, 1.1f, 0.1f));
registry.register(new ArcaneLock());
registry.register(new Containment());
registry.register(new Satiety());
registry.register(new SpellBuff("greater_ward", 0.75f, 0.6f, 0.8f, () -> WizardryPotions.ward).soundValues(0.7f, 1.2f, 0.4f));
registry.register(new RayOfPurification());
registry.register(new RemoveCurse());
registry.register(new Possession());
registry.register(new CurseOfEnfeeblement());
registry.register(new ForestOfThorns());
registry.register(new SpeedTime());
registry.register(new SlowTime());
registry.register(new Resurrection());
// Wizardry 4.3 spells
registry.register(new Stormcloud());
}
}