DamageSourceHelper
Link to damagesourcehelper
The class has some static methods to create some specific damage sources.
Importing the class
Link to 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.
ZenScript Copyimport crafttweaker.api.util.DamageSourceHelper;
Static Methods
Link to static-methods
Name: causeBeeStingDamage
Return Type: DamageSource
ZenScript CopyDamageSourceHelper.causeBeeStingDamage(bee as MCLivingEntity) as DamageSource
Parameter | Type | Description |
---|---|---|
Parameter bee | Type MCLivingEntity | Description No Description Provided |
Name: causeIndirectDamage
Return Type: DamageSource
ZenScript CopyDamageSourceHelper.causeIndirectDamage(source as MCEntity, indirectEntityIn as MCLivingEntity) as DamageSource
Parameter | Type | Description |
---|---|---|
Parameter source | Type MCEntity | Description No Description Provided |
Parameter indirectEntityIn | Type MCLivingEntity | Description No Description Provided |
Name: causeMobDamage
Return Type: DamageSource
ZenScript CopyDamageSourceHelper.causeMobDamage(mob as MCLivingEntity) as DamageSource
Parameter | Type | Description |
---|---|---|
Parameter mob | Type MCLivingEntity | Description No Description Provided |
Name: causePlayerDamage
Return Type: DamageSource
ZenScript CopyDamageSourceHelper.causePlayerDamage(player as MCPlayerEntity) as DamageSource
Parameter | Type | Description |
---|---|---|
Parameter player | Type MCPlayerEntity | Description No Description Provided |