Expansion for Block
Link to expansion-for-block
Additional methods for easier modification of block-related loot tables.
Metodi
Link to metodi
Name: addLootModifier
Adds an ILootModifier to this block, with the given name.
Return Type: void
ZenScript CopyBlock.addLootModifier(name as string, modifier as ILootModifier) as void
Parametro | Tipo | Descrizione |
---|---|---|
Parametro nome | Tipo string | Descrizione The name of the loot modifier to add. |
Parametro modifier | Tipo ILootModifier | Descrizione 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.
Return Type: void
ZenScript CopyBlock.addNoSilkTouchLootModifier(name as string, modifier as ILootModifier) as void
Parametro | Tipo | Descrizione |
---|---|---|
Parametro nome | Tipo string | Descrizione The name of the loot modifier to add. |
Parametro modifier | Tipo ILootModifier | Descrizione The loot modifier to add. |
Name: addStateLootModifier
Adds an ILootModifier to this block, firing only if it matches the state outlined in the StatePropertiesPredicate.
Return Type: void
ZenScript CopyBlock.addStateLootModifier(name as string, statePredicate as StatePropertiesPredicateBuilder, modifier as ILootModifier) as void
Parametro | Tipo | Descrizione |
---|---|---|
Parametro nome | Tipo string | Descrizione The name of the loot modifier to add. |
Parametro statePredicate | Tipo StatePropertiesPredicateBuilder | Descrizione A consumer to configure the StatePropertiesPredicate to identify the target state. |
Parametro modifier | Tipo ILootModifier | Descrizione 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.
Return Type: void
ZenScript CopyBlock.addToolLootModifier(name as string, tool as IItemStack, modifier as ILootModifier) as void
Parametro | Tipo | Descrizione |
---|---|---|
Parametro nome | Tipo string | Descrizione The name of the loot modifier. |
Parametro tool | Tipo IItemStack | Descrizione The tool the block was broken with. |
Parametro modifier | Tipo ILootModifier | Descrizione 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.
Return Type: void
ZenScript CopyBlock.addToolLootModifier(name as string, tool as IItemStack, matchDamage as boolean, modifier as ILootModifier) as void
Parametro | Tipo | Descrizione |
---|---|---|
Parametro nome | Tipo string | Descrizione The name of the loot modifier. |
Parametro tool | Tipo IItemStack | Descrizione The tool the block was broken with. |
Parametro matchDamage | Tipo boolean | Descrizione Whether to consider damage or not when trying to match the tool. |
Parametro modifier | Tipo ILootModifier | Descrizione 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.
Return Type: void
ZenScript CopyBlock.addToolLootModifier(name as string, tool as IItemStack, matchDamage as boolean, matchNbt as boolean, modifier as ILootModifier) as void
Parametro | Tipo | Descrizione |
---|---|---|
Parametro nome | Tipo string | Descrizione The name of the loot modifier. |
Parametro tool | Tipo IItemStack | Descrizione The tool the block was broken with. |
Parametro matchDamage | Tipo boolean | Descrizione Whether to consider damage or not when trying to match the tool. |
Parametro matchNbt | Tipo boolean | Descrizione Whether to consider NBT data or not when trying to match the tool. |
Parametro modifier | Tipo ILootModifier | Descrizione The loot modifier to add to the block. |