Home Getting Started With Scripts Commands Examples

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.

script.zs
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

script.zs
myMCTag.addBlocks(blocks as crafttweaker.api.block.MCBlock[]);
ParameterTypeDescription
Parameter
blocks
Type
crafttweaker.api.block.MCBlock[]
Description
No description provided

addEntityTypes

script.zs
myMCTag.addEntityTypes(entities as crafttweaker.api.entity.MCEntityType[]);
ParameterTypeDescription
Parameter
entities
Type
crafttweaker.api.entity.MCEntityType[]
Description
No description provided

addItems

script.zs
myMCTag.addItems(items as crafttweaker.api.item.IItemStack[]);
ParameterTypeDescription
Parameter
items
Type
crafttweaker.api.item.IItemStack[]
Description
No description provided

createBlockTag

Returns crafttweaker.api.tag.MCTag

script.zs
myMCTag.createBlockTag();

createEntityTypeTag

Returns crafttweaker.api.tag.MCTag

script.zs
myMCTag.createEntityTypeTag();

createItemTag

Returns crafttweaker.api.tag.MCTag

script.zs
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

script.zs
myMCTag.getRemainingItem(stack as crafttweaker.api.item.IItemStack);
myMCTag.getRemainingItem(<item:minecraft:iron_ingot>);
ParameterTypeDescription
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

script.zs
myMCTag.matches(stack as crafttweaker.api.item.IItemStack);
myMCTag.matches(<item:minecraft:iron_ingot>);
ParameterTypeDescription
Parameter
stack
Type
crafttweaker.api.item.IItemStack
Description
The stack to check

removeBlocks

script.zs
myMCTag.removeBlocks(blocks as crafttweaker.api.block.MCBlock[]);
ParameterTypeDescription
Parameter
blocks
Type
crafttweaker.api.block.MCBlock[]
Description
No description provided

removeEntityTypes

script.zs
myMCTag.removeEntityTypes(entities as crafttweaker.api.entity.MCEntityType[]);
ParameterTypeDescription
Parameter
entities
Type
crafttweaker.api.entity.MCEntityType[]
Description
No description provided

removeItems

script.zs
myMCTag.removeItems(items as crafttweaker.api.item.IItemStack[]);
ParameterTypeDescription
Parameter
items
Type
crafttweaker.api.item.IItemStack[]
Description
No description provided

Properties

NameTypeHas GetterHas 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 typeIs Implicit
Result type
crafttweaker.api.data.IData
Is Implicit
true
Result type
crafttweaker.api.data.MapData
Is Implicit
true