Expansion for MCBlockState

Link to expansion-for-mcblockstate

Additional methods for easier modification of block state-related loot tables.

Name: addBlockDrop

Deprecated
Scheduled for removal in 1.17: use this#addBlockLootModifier(BlockState, String, ILootModifier) instead.

Adds an IItemStack to the drop for this block, ignoring the current state.

Return Type: void

ZenScript
Copy
MCBlockState.addBlockDrop(uniqueId as string, stack as IItemStack) as void
ПараметрТипОписание
Параметр
uniqueId
Тип
string
Описание
A unique identifier for this loot modifier.
Параметр
stack
Тип
IItemStack
Описание
The stack to add to the drops.

Name: addBlockDrops

Deprecated
Scheduled for removal in 1.17: use this#addBlockLootModifier(BlockState, String, ILootModifier) instead.

Adds a list of IItemStacks to the drops for this block, ignoring the current state.

Return Type: void

ZenScript
Copy
MCBlockState.addBlockDrops(uniqueId as string, stack as IItemStack) as void
ПараметрТипОписание
Параметр
uniqueId
Тип
string
Описание
A unique identifier for this loot modifier.
Параметр
stack
Тип
IItemStack
Описание
The stack to add to the drops.

Link to addBlockLootModifier

Name: addBlockLootModifier

Adds an ILootModifier to this block, ignoring the current state.

Return Type: void

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

Link to addNoSilkTouchLootModifier

Name: addNoSilkTouchLootModifier

Adds an ILootModifier to the current block, only if it matches the current block state precisely and not harvested with the silk touch enchantment.

Return Type: void

ZenScript
Copy
MCBlockState.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.

Name: addTargetedDrop

Deprecated
Scheduled for removal in 1.17: use this#addTargetedLootModifier(BlockState, String, ILootModifier) instead.

Adds an IItemStack to the drops of the current block, only if it matches the current block state precisely.

Return Type: void

ZenScript
Copy
MCBlockState.addTargetedDrop(uniqueId as string, stack as IItemStack) as void
ПараметрТипОписание
Параметр
uniqueId
Тип
string
Описание
A unique identifier for this loot modifier.
Параметр
stack
Тип
IItemStack
Описание
The stack to add to the drops.

Link to addTargetedDrops

Name: addTargetedDrops

Deprecated
Scheduled for removal in 1.17: use this#addTargetedLootModifier(BlockState, String, ILootModifier) instead.

Adds a list of IItemStacks to the drops of the current block, only if it matches the current block state precisely.

Return Type: void

ZenScript
Copy
MCBlockState.addTargetedDrops(uniqueId as string, stacks as IItemStack[]) as void
ПараметрТипОписание
Параметр
uniqueId
Тип
string
Описание
A unique identifier for this loot modifier.
Параметр
stacks
Тип
IItemStack[]
Описание
The stacks to add to the drops.

Link to addTargetedLootModifier

Name: addTargetedLootModifier

Adds an ILootModifier to the current block, only if it matches the current block state precisely.

Return Type: void

ZenScript
Copy
MCBlockState.addTargetedLootModifier(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.

Name: addToolDrop

Deprecated
Scheduled for removal in 1.17: use this#addToolLootModifier(BlockState, String, IItemStack, ILootModifier) instead.

Adds an IItemStack to the drops of this block, if it gets broken with the given tool and matches the current block state precisely.

Parameters that may be attached the tool such as count, damage, or NBT data are ignored.

Return Type: void

ZenScript
Copy
MCBlockState.addToolDrop(uniqueId as string, tool as IItemStack, stack as IItemStack) as void
ПараметрТипОписание
Параметр
uniqueId
Тип
string
Описание
A unique identifier for this loot modifier.
Параметр
tool
Тип
IItemStack
Описание
The tool the block state was broken with.
Параметр
stack
Тип
IItemStack
Описание
The stack to add to the drops.

Name: addToolDrops

Deprecated
Scheduled for removal in 1.17: use this#addToolLootModifier(BlockState, String, IItemStack, ILootModifier) instead.

Adds a list of IItemStacks to the drops of this block, if it gets broken with the given tool and matches the current block state precisely.

Parameters that may be attached the tool such as count, damage, or NBT data are ignored.

Return Type: void

ZenScript
Copy
MCBlockState.addToolDrops(uniqueId as string, tool as IItemStack, stacks as IItemStack[]) as void
ПараметрТипОписание
Параметр
uniqueId
Тип
string
Описание
A unique identifier for this loot modifier.
Параметр
tool
Тип
IItemStack
Описание
The tool the block state was broken with.
Параметр
stacks
Тип
IItemStack[]
Описание
The stacks to add to the drops.

Link to addToolLootModifier

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.

Return Type: void

ZenScript
Copy
MCBlockState.addToolLootModifier(name as string, tool as IItemStack, modifier as ILootModifier) as void
ПараметрТипОписание
Параметр
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.

Link to addToolLootModifier

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.

Return Type: void

ZenScript
Copy
MCBlockState.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 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.

Link to addToolLootModifier

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.

Return Type: void

ZenScript
Copy
MCBlockState.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 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.

Link to addToolTypeLootModifier

Name: addToolTypeLootModifier

Adds an ILootModifier that fires if this block state 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
MCBlockState.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 the block state must be broken with.
Параметр
modifier
Тип
ILootModifier
Описание
The loot modifier to add to the block state.