Expansion for Block
Link to expansion-for-block
Additional methods for easier modification of block-related loot tables.
使用方式
Link to 使用方式
Name: addLootModifier
Adds an ILootModifier to this block, with the given name.
ZenScript CopyBlock.addLootModifier(name as string, modifier as ILootModifier)
参数 | 类型 | 描述 |
---|---|---|
参数 name(名称) | 类型 string | 描述 The name of the loot modifier to add. |
参数 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 CopyBlock.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: addStateLootModifier
Adds an ILootModifier to this block, firing only if it matches the state outlined in the StatePropertiesPredicate.
ZenScript CopyBlock.addStateLootModifier(name as string, statePredicate as StatePropertiesPredicateBuilder, modifier as ILootModifier)
参数 | 类型 | 描述 |
---|---|---|
参数 name(名称) | 类型 string | 描述 The name of the loot modifier to add. |
参数 statePredicate | 类型 StatePropertiesPredicateBuilder | 描述 A consumer to configure the StatePropertiesPredicate to identify the target state. |
参数 modifier | 类型 ILootModifier | 描述 The loot modifier to add. |
Name: addToolLootModifier
Adds an ILootModifier that fires if this block gets broken with the given tool.
Parameters that may be attached to the tool such as count, damage, or NBT data are ignored.
ZenScript CopyBlock.addToolLootModifier(name as string, tool as IItemStack, modifier as ILootModifier)
参数 | 类型 | 描述 |
---|---|---|
参数 name(名称) | 类型 string | 描述 The name of the loot modifier. |
参数 tool | 类型 IItemstack | 描述 The tool the block was broken with. |
参数 modifier | 类型 ILootModifier | 描述 The loot modifier to add to the block. |
Name: addToolLootModifier
Adds an ILootModifier that fires if this block 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 CopyBlock.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 was broken with. |
参数 matchDamage | 类型 布尔值 | 描述 Whether to consider damage or not when trying to match the tool. |
参数 modifier | 类型 ILootModifier | 描述 The loot modifier to add to the block. |
Name: addToolLootModifier
Adds an ILootModifier that fires if this block 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 CopyBlock.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 was broken with. |
参数 matchDamage | 类型 布尔值 | 描述 Whether to consider damage or not when trying to match the tool. |
参数 matchNbt | 类型 布尔值 | 描述 Whether to consider NBT data or not when trying to match the tool. |
参数 modifier | 类型 ILootModifier | 描述 The loot modifier to add to the block. |