BloodMagic/src/main/java/WayofTime/alchemicalWizardry/api/spell/ComplexSpellModifier.java
WayofTime beea2e875a Started working on allowing RitualDiviner to do directions.
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.
2014-11-12 17:14:43 -05:00

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();
}