EnchantmentPredicate

Link to enchantmentpredicate

Represents the predicate for an MCEnchantment.

The predicate can be used to check various properties of a specific enchantment, such as its level.

This predicate must specify an enchantment to apply to. By default, the enchantment check will pass irregardless of the enchantment's level.

Diese Klasse importieren

Link to diese-klasse-importieren

It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.

ZenScript
Copy
import crafttweaker.api.predicate.EnchantmentPredicate;

Extending AnyDefaultingVanillaWrappingPredicate

Link to extending-anydefaultingvanillawrappingpredicate

EnchantmentPredicate extends AnyDefaultingVanillaWrappingPredicate. That means all methods available in AnyDefaultingVanillaWrappingPredicate are also available in EnchantmentPredicate

Name: withEnchantment

Sets the enchantment that needs to be present, and whose data needs to be checked.

This parameter is required.

Returns: This predicate for chaining.
Return Type: EnchantmentPredicate

ZenScript
Copy
EnchantmentPredicate.withEnchantment(enchantment as MCEnchantment) as EnchantmentPredicate
ParameterTypeBeschreibung
Parameter
enchantment
Type
MCEnchantment
Beschreibung
The enchantment that needs to be present.

Name: withExactLevel

Sets the level to exactly match the given value.

If the level had already some bounds specified, then they will be overwritten with the new value.

Returns: This predicate for chaining.
Return Type: EnchantmentPredicate

ZenScript
Copy
EnchantmentPredicate.withExactLevel(value as int) as EnchantmentPredicate
ParameterTypeBeschreibung
Parameter
value
Type
int
Beschreibung
The exact value the level should be.

Link to withMaximumLevel

Name: withMaximumLevel

Sets the maximum value the level should be to max.

If the level had already some bounds specified, then the maximum value of the bound will be overwritten with the value specified in max. On the other hand, if the level didn't have any bounds set, the maximum is set, leaving the lower end unbounded.

The maximum value is inclusive, meaning that a value that is equal to max will pass the check.

Returns: This predicate for chaining.
Return Type: EnchantmentPredicate

ZenScript
Copy
EnchantmentPredicate.withMaximumLevel(max as int) as EnchantmentPredicate
ParameterTypeBeschreibung
Parameter
max
Type
int
Beschreibung
The maximum value the level should be.

Link to withMinimumLevel

Name: withMinimumLevel

Sets the minimum value the level should be to min.

If the level had already some bounds specified, then the minimum value of the bound will be overwritten with the value specified in min. On the other hand, if the level didn't have any bounds set, the minimum is set, leaving the upper end unbounded.

The minimum value is inclusive, meaning that a value that is equal to min will pass the check.

Returns: This predicate for chaining.
Return Type: EnchantmentPredicate

ZenScript
Copy
EnchantmentPredicate.withMinimumLevel(min as int) as EnchantmentPredicate
ParameterTypeBeschreibung
Parameter
min
Type
int
Beschreibung
The minimum value the level should be.

Name: withRangedLevel

Sets both the minimum and maximum value the level should be to min and max respectively.

If the level had already some bounds specified, then they will be overwritten with the new values.

Both minimum and maximum values are inclusive, meaning that a value that is equal to either min or max will pass the check.

Returns: This predicate for chaining.
Return Type: EnchantmentPredicate

ZenScript
Copy
EnchantmentPredicate.withRangedLevel(min as int, max as int) as EnchantmentPredicate
ParameterTypeBeschreibung
Parameter
min
Type
int
Beschreibung
The minimum value the level should be.
Parameter
max
Type
int
Beschreibung
The maximum value the level should be.