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.
import crafttweaker.api.util.DamageSourceHelper;
Static Methods
Return Type: DamageSource
DamageSourceHelper.causeBeeStingDamage(bee as MCLivingEntity) as DamageSource
Parameter | Type | Description |
---|---|---|
Parameter bee | Type MCLivingEntity | Description No Description Provided |
Return Type: DamageSource
DamageSourceHelper.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 |
Return Type: DamageSource
DamageSourceHelper.causeMobDamage(mob as MCLivingEntity) as DamageSource
Parameter | Type | Description |
---|---|---|
Parameter mob | Type MCLivingEntity | Description No Description Provided |
Return Type: DamageSource
DamageSourceHelper.causePlayerDamage(player as MCPlayerEntity) as DamageSource
Parameter | Type | Description |
---|---|---|
Parameter player | Type MCPlayerEntity | Description No Description Provided |