
Completed refactorization of spell system. Increased protection against void damage while void sigil is in Bound Armour. Added an OnRitualStop with an Enum input providing the action. Added more events.
9 lines
393 B
Java
9 lines
393 B
Java
package WayofTime.alchemicalWizardry.api.spell;
|
|
|
|
public class ComplexSpellModifier
|
|
{
|
|
public static ComplexSpellModifier DEFAULT = new ComplexSpellModifier();
|
|
public static ComplexSpellModifier OFFENSIVE = new ComplexSpellModifier();
|
|
public static ComplexSpellModifier DEFENSIVE = new ComplexSpellModifier();
|
|
public static ComplexSpellModifier ENVIRONMENTAL = new ComplexSpellModifier();
|
|
}
|