Expansion for MCTag<MCBlock>

Link to expansion-for-mctagmcblock

Additional methods for easier modification of loot tables of blocks contained in tags.

Name: addLootModifier

Adds an ILootModifier to all the blocks contained in this tag, with the given name.

Return Type: void

ZenScript
Copy
MCTag.addLootModifier(name as string, modifier as ILootModifier) as void
ПараметрТипОписание
Параметр
name
Тип
string
Описание
The name of the loot modifier to add.
Параметр
modifier
Тип
ILootModifier
Описание
The loot modifier to add.

Link to addNoSilkTouchLootModifier

Name: addNoSilkTouchLootModifier

Adds an ILootModifier to all the blocks contained in this tag, only if it is not harvested with the silk touch enchantment.

Return Type: void

ZenScript
Copy
MCTag.addNoSilkTouchLootModifier(name as string, modifier as ILootModifier) as void
ПараметрТипОписание
Параметр
name
Тип
string
Описание
The name of the loot modifier.
Параметр
modifier
Тип
ILootModifier
Описание
The loot modifier to add to the block state.

Link to addToolLootModifier

Name: addToolLootModifier

Adds an ILootModifier that fires if any of the blocks contained in this tag 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
Copy
MCTag.addToolLootModifier(name as string, tool as IItemStack, modifier as ILootModifier) as void
ПараметрТипОписание
Параметр
name
Тип
string
Описание
The name of the loot modifier.
Параметр
tool
Тип
IItemStack
Описание
The tool one of the blocks contained in the tag was broken with.
Параметр
modifier
Тип
ILootModifier
Описание
The loot modifier to add to the block tag.

Link to addToolLootModifier

Name: addToolLootModifier

Adds an ILootModifier that fires if any of the blocks contained in this tag 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
Copy
MCTag.addToolLootModifier(name as string, tool as IItemStack, matchDamage as boolean, modifier as ILootModifier) as void
ПараметрТипОписание
Параметр
name
Тип
string
Описание
The name of the loot modifier.
Параметр
tool
Тип
IItemStack
Описание
The tool one of the blocks contained in the tag 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 tag.

Link to addToolLootModifier

Name: addToolLootModifier

Adds an ILootModifier that fires if any of the blocks contained in this tag 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
Copy
MCTag.addToolLootModifier(name as string, tool as IItemStack, matchDamage as boolean, matchNbt as boolean, modifier as ILootModifier) as void
ПараметрТипОписание
Параметр
name
Тип
string
Описание
The name of the loot modifier.
Параметр
tool
Тип
IItemStack
Описание
The tool one of the blocks contained in the tag 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 tag.

Link to addToolTypeLootModifier

Name: addToolTypeLootModifier

Adds an ILootModifier that fires if any of the blocks contained in this tag gets broken with a tool with the given ToolType.

Damage or NBT is ignored when attempting to match the tool.

Return Type: void

ZenScript
Copy
MCTag.addToolTypeLootModifier(name as string, toolType as ToolType, modifier as ILootModifier) as void
ПараметрТипОписание
Параметр
name
Тип
string
Описание
The name of the loot modifier.
Параметр
toolType
Тип
ToolType
Описание
The type of the tool one of the blocks contained in this tag must be broken with.
Параметр
modifier
Тип
ILootModifier
Описание
The loot modifier to add to the block tag.