use of main.elements.conditions.standard.ClassificationCondition in project Eidolons by IDemiurge.
the class AshAnnihilationRule method initConditions.
@Override
public void initConditions() {
conditions = new Conditions(new NumericCondition("{match_blaze_counters}", "0"));
conditions.add(new NotCondition(new ClassificationCondition(CLASSIFICATIONS.ELEMENTAL)));
conditions.add(new NotCondition(new PropCondition(G_PROPS.STANDARD_PASSIVES, STANDARD_PASSIVES.IMMATERIAL.getName())));
}
Aggregations