Class ItemPreventClause
java.lang.Object
com.pixelmonmod.pixelmon.battles.api.rules.clauses.BattleClause
com.pixelmonmod.pixelmon.battles.api.rules.clauses.type.ItemPreventClause
- All Implemented Interfaces:
IEncodeable,Comparable<BattleClause>
Prevents certain held items from being used.
-
Constructor Summary
ConstructorsConstructorDescriptionItemPreventClause(String id, EnumHeldItems... heldItems) Creates a clause to ban specific held items. -
Method Summary
Modifier and TypeMethodDescriptionbooleanvalidateSingle(Pokemon pokemon) Checks if the rule allows a Pokémon to be chosen for battle.Methods inherited from class com.pixelmonmod.pixelmon.battles.api.rules.clauses.BattleClause
compareTo, decodeInto, encodeInto, equals, getDescription, getID, getLocalizedName, getLocalizedName, hashCode, setDescription, toString, validateTeam
-
Constructor Details
-
ItemPreventClause
Creates a clause to ban specific held items.- Parameters:
id- The unique ID of the battle clause.heldItems- The banned held items.
-
-
Method Details
-
validateSingle
Description copied from class:BattleClauseChecks if the rule allows a Pokémon to be chosen for battle.- Overrides:
validateSinglein classBattleClause- Parameters:
pokemon- The Pokémon to check.- Returns:
- Whether the rule allows the given Pokémon to be chosen for battle.
-