Add mark sacrifice spell
This commit is contained in:
@@ -241,6 +241,7 @@ public final class Spells {
|
||||
// Wizardry 4.3 spells
|
||||
|
||||
public static final Spell blinding_flash = placeholder();
|
||||
public static final Spell mark_sacrifice = placeholder();
|
||||
|
||||
public static final Spell stormcloud = placeholder();
|
||||
public static final Spell fangs = placeholder();
|
||||
@@ -452,6 +453,7 @@ public final class Spells {
|
||||
// Wizardry 4.3 spells
|
||||
|
||||
registry.register(new BlindingFlash());
|
||||
registry.register(new MarkSacrifice());
|
||||
|
||||
registry.register(new Stormcloud());
|
||||
registry.register(new Fangs());
|
||||
|
||||
@@ -55,6 +55,7 @@ public final class WizardryPotions {
|
||||
public static final Potion curse_of_undeath = placeholder();
|
||||
public static final Potion containment = placeholder();
|
||||
public static final Potion frost_step = placeholder();
|
||||
public static final Potion mark_of_sacrifice = placeholder();
|
||||
|
||||
/**
|
||||
* Sets both the registry and unlocalised names of the given potion, then registers it with the given registry. Use
|
||||
@@ -190,6 +191,9 @@ public final class WizardryPotions {
|
||||
|
||||
registerPotion(registry, "frost_step", new PotionFrostStep(false, 0).setBeneficial());
|
||||
|
||||
registerPotion(registry, "mark_of_sacrifice", new PotionMagicEffect(true, 0xe90e48,
|
||||
new ResourceLocation(Wizardry.MODID, "textures/gui/potion_icons/mark_of_sacrifice.png")));
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user