Home Migration Guide Getting Started With Scripts Commands Examples
BracketHandlers

DamageSourceHelper

The class has some static methods to create some specific damage sources.

Importing the class

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.

script.zs
import crafttweaker.api.util.DamageSourceHelper;

Static Methods

Return Type: DamageSource

script.zs
DamageSourceHelper.causeBeeStingDamage(bee as MCLivingEntity) as DamageSource
ParameterTypeDescription
Parameter
bee
Type
MCLivingEntity
Description
No Description Provided

Return Type: DamageSource

script.zs
DamageSourceHelper.causeIndirectDamage(source as MCEntity, indirectEntityIn as MCLivingEntity) as DamageSource
ParameterTypeDescription
Parameter
source
Type
MCEntity
Description
No Description Provided
Parameter
indirectEntityIn
Type
MCLivingEntity
Description
No Description Provided

Return Type: DamageSource

script.zs
DamageSourceHelper.causeMobDamage(mob as MCLivingEntity) as DamageSource
ParameterTypeDescription
Parameter
mob
Type
MCLivingEntity
Description
No Description Provided

Return Type: DamageSource

script.zs
DamageSourceHelper.causePlayerDamage(player as MCPlayerEntity) as DamageSource
ParameterTypeDescription
Parameter
player
Type
MCPlayerEntity
Description
No Description Provided