Expansion for EntityType<Entity>
Link to expansion-for-entitytypeentity
Additional methods for easier modification of entity-related loot tables.
Methods
Link to methods
Name: addLootModifier
Adds an ILootModifier to the current entity.
ZenScript CopyEntityType.addLootModifier(name as string, modifier as ILootModifier)
Parameter | Type | Description |
---|---|---|
Parameter name | Type string | Description The name of the loot modifier. |
Parameter modifier | Type ILootModifier | Description The loot modifier to add to the entity. |
Name: addPlayerOnlyLootModifier
Adds an ILootModifier to the current entity that fires only if the entity was killed by a player.
ZenScript CopyEntityType.addPlayerOnlyLootModifier(name as string, modifier as ILootModifier)
Parameter | Type | Description |
---|---|---|
Parameter name | Type string | Description The name of the loot modifier. |
Parameter modifier | Type ILootModifier | Description The loot modifier to add to the entity. |
Name: addWeaponAndPlayerOnlyLootModifier
Adds an ILootModifier to the current entity that fires only if the entity was killed by a player with the given weapon.
Additional parameters that further specify the weapon, such as NBT, count, or damage, are ignored.
ZenScript CopyEntityType.addWeaponAndPlayerOnlyLootModifier(name as string, weapon as IItemStack, modifier as ILootModifier)
Parameter | Type | Description |
---|---|---|
Parameter name | Type string | Description The name of the loot modifier. |
Parameter weapon | Type IItemStack | Description The weapon that needs to be used to kill the entity. |
Parameter modifier | Type ILootModifier | Description The loot modifier to add to the entity. |
Name: addWeaponAndPlayerOnlyLootModifier
Adds an ILootModifier to the current entity that fires only if the entity was killed by a player with the given weapon, optionally considering its damage and NBT data.
Additional parameters that further specify the weapon, such as count, are ignored.
ZenScript CopyEntityType.addWeaponAndPlayerOnlyLootModifier(name as string, weapon as IItemStack, matchComponents as boolean, modifier as ILootModifier)
Parameter | Type | Description |
---|---|---|
Parameter name | Type string | Description The name of the loot modifier. |
Parameter weapon | Type IItemStack | Description The weapon that needs to be used to kill the entity. |
Parameter matchComponents | Type boolean | Description Whether to consider components or not when identifying the weapon. |
Parameter modifier | Type ILootModifier | Description The loot modifier to add to the entity. |
Name: addWeaponOnlyLootModifier
Adds an ILootModifier to the current entity that fires only if the entity was killed with the given weapon.
Additional parameters that further specify the weapon, such as NBT, count, or damage, are ignored.
ZenScript CopyEntityType.addWeaponOnlyLootModifier(name as string, weapon as IItemStack, modifier as ILootModifier)
Parameter | Type | Description |
---|---|---|
Parameter name | Type string | Description The name of the loot modifier. |
Parameter weapon | Type IItemStack | Description The weapon that needs to be used to kill the entity. |
Parameter modifier | Type ILootModifier | Description The loot modifier to add to the entity. |
Name: addWeaponOnlyLootModifier
Adds an ILootModifier to the current entity that fires only if the entity was killed with the given weapon, optionally considering its damage and NBT data.
Additional parameters that further specify the weapon, such as count, are ignored.
ZenScript CopyEntityType.addWeaponOnlyLootModifier(name as string, weapon as IItemStack, matchComponents as boolean, modifier as ILootModifier)
Parameter | Type | Description |
---|---|---|
Parameter name | Type string | Description The name of the loot modifier. |
Parameter weapon | Type IItemStack | Description The weapon that needs to be used to kill the entity. |
Parameter matchComponents | Type boolean | Description Whether to consider components or not when identifying the weapon. |
Parameter modifier | Type ILootModifier | Description The loot modifier to add to the entity. |