Expansion for MCTag<MCBlock>
Additional methods for easier modification of loot tables of blocks contained in tags.
Methods
Adds an ILootModifier to all the blocks contained in this tag, with the given name.
Return Type: void
Parameter | Type | Description |
---|---|---|
Parameter name | Type string | Description The name of the loot modifier to add. |
Parameter modifier | Type ILootModifier | Description The loot modifier to add. |
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
Parameter | Type | Description |
---|---|---|
Parameter name | Type string | Description The name of the loot modifier. |
Parameter modifier | Type ILootModifier | Description The loot modifier to add to the block state. |
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
Parameter | Type | Description |
---|---|---|
Parameter name | Type string | Description The name of the loot modifier. |
Parameter tool | Type IItemStack | Description The tool one of the blocks contained in the tag was broken with. |
Parameter modifier | Type ILootModifier | Description The loot modifier to add to the block tag. |
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
Parameter | Type | Description |
---|---|---|
Parameter name | Type string | Description The name of the loot modifier. |
Parameter tool | Type IItemStack | Description The tool one of the blocks contained in the tag was broken with. |
Parameter matchDamage | Type boolean | Description Whether to consider damage or not when trying to match the tool. |
Parameter modifier | Type ILootModifier | Description The loot modifier to add to the block tag. |
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
Parameter | Type | Description |
---|---|---|
Parameter name | Type string | Description The name of the loot modifier. |
Parameter tool | Type IItemStack | Description The tool one of the blocks contained in the tag was broken with. |
Parameter matchDamage | Type boolean | Description Whether to consider damage or not when trying to match the tool. |
Parameter matchNbt | Type boolean | Description Whether to consider NBT data or not when trying to match the tool. |
Parameter modifier | Type ILootModifier | Description The loot modifier to add to the block tag. |
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
Parameter | Type | Description |
---|---|---|
Parameter name | Type string | Description The name of the loot modifier. |
Parameter toolType | Type ToolType | Description The type of the tool one of the blocks contained in this tag must be broken with. |
Parameter modifier | Type ILootModifier | Description The loot modifier to add to the block tag. |