Add mark sacrifice spell

This commit is contained in:
Electroblob77
2020-07-30 22:54:37 +01:00
parent a321e4ef66
commit 0d7d36c0b5
9 changed files with 106 additions and 1 deletions
@@ -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")));
}
}