DamageSourcePredicate

Importing the class

If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.

script.zs
import crafttweaker.api.predicate.DamageSourcePredicate;

Members

static create() as Builder
script.zs
// DamageSourcePredicate.create() as DamageSourcePredicateBuilder;
DamageSourcePredicate.create();

Return Type: DamageSourcePredicateBuilder

matches(player as ServerPlayer, source as DamageSource) as bool
script.zs
// DamageSourcePredicate.matches(player as ServerPlayer, source as DamageSource) as bool;
myDamageSourcePredicate.matches(myServerPlayer, myDamageSource);

Parameters:

player Type: ServerPlayer
source Type: DamageSource

Return Type: bool

matches(level as ServerLevel, pos as Vec3, source as DamageSource) as bool
script.zs
// DamageSourcePredicate.matches(level as ServerLevel, pos as Vec3, source as DamageSource) as bool;
myDamageSourcePredicate.matches(myServerLevel, myVec3, myDamageSource);

Parameters:

level Type: ServerLevel
pos Type: Vec3
source Type: DamageSource

Return Type: bool