MCTag
This class was added by a mod with mod-id crafttweaker
. So you need to have this mod installed if you want to use this feature.
Importing the class
It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import.
crafttweaker.api.tag.MCTag
Implemented Interfaces
MCTag implements the following interfaces. That means any method available to them can also be used on this class.
Methods
addBlocks
myMCTag.addBlocks(blocks as crafttweaker.api.block.MCBlock[]);
Parameter | Type | Description |
---|---|---|
Parameter blocks | Type crafttweaker.api.block.MCBlock[] | Description No description provided |
addEntityTypes
myMCTag.addEntityTypes(entities as crafttweaker.api.entity.MCEntityType[]);
Parameter | Type | Description |
---|---|---|
Parameter entities | Type crafttweaker.api.entity.MCEntityType[] | Description No description provided |
addItems
myMCTag.addItems(items as crafttweaker.api.item.IItemStack[]);
Parameter | Type | Description |
---|---|---|
Parameter items | Type crafttweaker.api.item.IItemStack[] | Description No description provided |
createBlockTag
Returns crafttweaker.api.tag.MCTag
myMCTag.createBlockTag();
createEntityTypeTag
Returns crafttweaker.api.tag.MCTag
myMCTag.createEntityTypeTag();
createItemTag
Returns crafttweaker.api.tag.MCTag
myMCTag.createItemTag();
getRemainingItem
When this ingredient stack is crafted, what will remain in the grid? Does not check if the stack matches though! Used e.g. in CrT’s net.minecraft.item.crafting.ICraftingRecipe
Returns crafttweaker.api.item.IItemStack
myMCTag.getRemainingItem(stack as crafttweaker.api.item.IItemStack);myMCTag.getRemainingItem(<item:minecraft:iron_ingot>);
Parameter | Type | Description |
---|---|---|
Parameter stack | Type crafttweaker.api.item.IItemStack | Description The stack to provide for this ingredient. |
matches
Does the given stack match the ingredient?
Returns boolean
myMCTag.matches(stack as crafttweaker.api.item.IItemStack);myMCTag.matches(<item:minecraft:iron_ingot>);
Parameter | Type | Description |
---|---|---|
Parameter stack | Type crafttweaker.api.item.IItemStack | Description The stack to check |
removeBlocks
myMCTag.removeBlocks(blocks as crafttweaker.api.block.MCBlock[]);
Parameter | Type | Description |
---|---|---|
Parameter blocks | Type crafttweaker.api.block.MCBlock[] | Description No description provided |
removeEntityTypes
myMCTag.removeEntityTypes(entities as crafttweaker.api.entity.MCEntityType[]);
Parameter | Type | Description |
---|---|---|
Parameter entities | Type crafttweaker.api.entity.MCEntityType[] | Description No description provided |
removeItems
myMCTag.removeItems(items as crafttweaker.api.item.IItemStack[]);
Parameter | Type | Description |
---|---|---|
Parameter items | Type crafttweaker.api.item.IItemStack[] | Description No description provided |
Properties
Name | Type | Has Getter | Has Setter |
---|---|---|---|
Name blocks | Type crafttweaker.api.block.MCBlock[] | Has Getter true | Has Setter false |
Name commandString | Type String | Has Getter true | Has Setter false |
Name entityTypes | Type crafttweaker.api.entity.MCEntityType[] | Has Getter true | Has Setter false |
Name items | Type crafttweaker.api.item.IItemStack[] | Has Getter true | Has Setter false |
Casters
Result type | Is Implicit |
---|---|
Result type crafttweaker.api.data.IData | Is Implicit true |
Result type crafttweaker.api.data.MapData | Is Implicit true |