Expansion for BlockState
Link to expansion-for-blockstate
Additional methods for easier modification of block state-related loot tables.
Методы
Link to методы
Name: addBlockLootModifier
Adds an ILootModifier to this block, ignoring the current state.
ZenScript CopyBlockState.addBlockLootModifier(name as string, modifier as ILootModifier)
Параметр | Тип | Описание |
---|---|---|
Параметр name | Тип string | Описание The name of the loot modifier. |
Параметр modifier | Тип ILootModifier | Описание The loot modifier to add. |
Name: addNoSilkTouchLootModifier
Adds an ILootModifier to this block, with the given name, only if it is not harvested with the silk touch enchantment.
ZenScript CopyBlockState.addNoSilkTouchLootModifier(name as string, modifier as ILootModifier)
Параметр | Тип | Описание |
---|---|---|
Параметр name | Тип string | Описание The name of the loot modifier to add. |
Параметр modifier | Тип ILootModifier | Описание The loot modifier to add. |
Name: addTargetedLootModifier
Adds an ILootModifier to the current block, only if it matches the current block state precisely.
ZenScript CopyBlockState.addTargetedLootModifier(name as string, modifier as ILootModifier)
Параметр | Тип | Описание |
---|---|---|
Параметр name | Тип string | Описание The name of the loot modifier. |
Параметр modifier | Тип ILootModifier | Описание The loot modifier to add to the block state. |
Name: addToolLootModifier
Adds an ILootModifier that fires if this block state gets broken with the given tool.
Parameters that may be attached to the tool such as count, damage, or NBT data are ignored.
ZenScript CopyBlockState.addToolLootModifier(name as string, tool as IItemStack, modifier as ILootModifier)
Параметр | Тип | Описание |
---|---|---|
Параметр name | Тип string | Описание The name of the loot modifier. |
Параметр tool | Тип IItemStack | Описание The tool the block state was broken with. |
Параметр modifier | Тип ILootModifier | Описание The loot modifier to add to the block state. |
Name: addToolLootModifier
Adds an ILootModifier that fires if this block state gets broken with the given tool, optionally considering its damage.
Additional parameters that may be attached to the tool, such as NBT or count, are ignored.
ZenScript CopyBlockState.addToolLootModifier(name as string, tool as IItemStack, matchDamage as boolean, modifier as ILootModifier)
Параметр | Тип | Описание |
---|---|---|
Параметр name | Тип string | Описание The name of the loot modifier. |
Параметр tool | Тип IItemStack | Описание The tool the block state was broken with. |
Параметр matchDamage | Тип boolean | Описание Whether to consider damage or not when trying to match the tool. |
Параметр modifier | Тип ILootModifier | Описание The loot modifier to add to the block state. |
Name: addToolLootModifier
Adds an ILootModifier that fires if this block state gets broken with the given tool, optionally considering its damage or NBT.
Additional parameters that may be attached to the tool, such as count, are ignored.
ZenScript CopyBlockState.addToolLootModifier(name as string, tool as IItemStack, matchDamage as boolean, matchNbt as boolean, modifier as ILootModifier)
Параметр | Тип | Описание |
---|---|---|
Параметр name | Тип string | Описание The name of the loot modifier. |
Параметр tool | Тип IItemStack | Описание The tool the block state was broken with. |
Параметр matchDamage | Тип boolean | Описание Whether to consider damage or not when trying to match the tool. |
Параметр matchNbt | Тип boolean | Описание Whether to consider NBT data or not when trying to match the tool. |
Параметр modifier | Тип ILootModifier | Описание The loot modifier to add to the block state. |