[MH3] Implement Null Elemental Blast

This commit is contained in:
theelk801 2024-04-30 16:03:45 -04:00
parent 4149eeaa32
commit 32ea5e9cd0
3 changed files with 56 additions and 0 deletions

View file

@ -906,6 +906,13 @@ public final class StaticFilters {
FILTER_SPELL_A.setLockedFilter(true);
}
public static final FilterSpell FILTER_SPELL_MULTICOLORED = new FilterSpell("multicolored spell");
static {
FILTER_SPELL_MULTICOLORED.add(MulticoloredPredicate.instance);
FILTER_SPELL_MULTICOLORED.setLockedFilter(true);
}
public static final FilterSpell FILTER_SPELL_A_MULTICOLORED = new FilterSpell("a multicolored spell");
static {