FishingPredicate
Link to fishingpredicate
Represents a predicate for a fishing hook, as a specialization of EntityPredicate.
This predicate can be used to check various properties of the fishing hook entity, such as being used for fishing in open waters instead of a closed pond.
By default, the entity passes the checks without caring about the entity type. If at least one of the properties is set, then the entity must be a fishing hook to pass the checks.
Importare la Classe
Link to importare-la-classe
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 Copyimport crafttweaker.api.predicate.FishingPredicate;
Extending AnyDefaultingVanillaWrappingPredicate
Link to extending-anydefaultingvanillawrappingpredicate
FishingPredicate extends AnyDefaultingVanillaWrappingPredicate. That means all methods available in AnyDefaultingVanillaWrappingPredicate are also available in FishingPredicate
Metodi
Link to metodi
Name: withClosedWaters
Indicates that the fishing hook has been used in not open waters, such as a pond.
If the predicate had already been set to check the opposite condition, the setting will be overwritten.
Returns: This predicate for chaining.
Return Type: FishingPredicate
ZenScript Copy// FishingPredicate.withClosedWaters() as FishingPredicate
myFishingPredicate.withClosedWaters();
Name: withOpenWaters
Indicates that the fishing hook has been used in open waters.
If the predicate had already been set to check the opposite condition, the setting will be overwritten.
Returns: This predicate for chaining.
Return Type: FishingPredicate
ZenScript Copy// FishingPredicate.withOpenWaters() as FishingPredicate
myFishingPredicate.withOpenWaters();