MCTag
Link to mctag
这个类由mod-id为crafttweaker
的模组添加. 因此,如果要使用此功能,则需要安装此mod。
导入类
Link to 导入类
如果遇到任何问题(例如强制转换数组),则可能需要导入软件包,因此,最好的方式就是导入包支持。
ZenScript Copycrafttweaker.api.tag.MCTag
已实现的接口
Link to 已实现的接口
MCTag implements the following interfaces. 这意味着对这个接口可用的任何方法也可以在此类上使用。
使用方式
Link to 使用方式
addBlocks
Link to addblocks
ZenScript CopymyMCTag.addBlocks(blocks as crafttweaker.api.block.MCBlock[]);
参数 | 类型 | 描述 |
---|---|---|
参数 blocks | 类型 crafttweaker.api.block.MCBlock[] | 描述 No description provided |
addEntityTypes
Link to addentitytypes
ZenScript CopymyMCTag.addEntityTypes(entities as crafttweaker.api.entity.MCEntityType[]);
参数 | 类型 | 描述 |
---|---|---|
参数 entities | 类型 crafttweaker.api.entity.MCEntityType[] | 描述 No description provided |
addItems
Link to additems
ZenScript CopymyMCTag.addItems(items as crafttweaker.api.item.IItemStack[]);
参数 | 类型 | 描述 |
---|---|---|
参数 items | 类型 crafttweaker.api.item.IItemStack[] | 描述 No description provided |
createBlockTag
Link to createblocktag
Returns crafttweaker.api.tag.MCTag
ZenScript CopymyMCTag.createBlockTag();
createEntityTypeTag
Link to createentitytypetag
Returns crafttweaker.api.tag.MCTag
ZenScript CopymyMCTag.createEntityTypeTag();
createItemTag
Link to createitemtag
Returns crafttweaker.api.tag.MCTag
ZenScript CopymyMCTag.createItemTag();
getRemainingItem
Link to 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
ZenScript CopymyMCTag.getRemainingItem(stack as crafttweaker.api.item.IItemStack);
myMCTag.getRemainingItem(<item:minecraft:iron_ingot>);
参数 | 类型 | 描述 |
---|---|---|
参数 堆叠 | 类型 crafttweaker.api.item.IItemStack | 描述 The stack to provide for this ingredient. |
matches
Link to matches
Does the given stack match the ingredient?
返回为布尔值
ZenScript CopymyMCTag.matches(stack as crafttweaker.api.item.IItemStack);
myMCTag.matches(<item:minecraft:iron_ingot>);
参数 | 类型 | 描述 |
---|---|---|
参数 堆叠 | 类型 crafttweaker.api.item.IItemStack | 描述 The stack to check |
removeBlocks
Link to removeblocks
ZenScript CopymyMCTag.removeBlocks(blocks as crafttweaker.api.block.MCBlock[]);
参数 | 类型 | 描述 |
---|---|---|
参数 blocks | 类型 crafttweaker.api.block.MCBlock[] | 描述 No description provided |
removeEntityTypes
Link to removeentitytypes
ZenScript CopymyMCTag.removeEntityTypes(entities as crafttweaker.api.entity.MCEntityType[]);
参数 | 类型 | 描述 |
---|---|---|
参数 entities | 类型 crafttweaker.api.entity.MCEntityType[] | 描述 No description provided |
removeItems
Link to removeitems
ZenScript CopymyMCTag.removeItems(items as crafttweaker.api.item.IItemStack[]);
参数 | 类型 | 描述 |
---|---|---|
参数 items | 类型 crafttweaker.api.item.IItemStack[] | 描述 No description provided |
名称 | 类型 | 可获得 | 可设置 |
---|---|---|---|
名称 blocks | 类型 crafttweaker.api.block.MCBlock[] | 可获得 true | 可设置 false |
名称 commandString #命令字符串 | 类型 字符串[string] | 可获得 true | 可设置 false |
名称 entityTypes | 类型 crafttweaker.api.entity.MCEntityType[] | 可获得 true | 可设置 false |
名称 items | 类型 crafttweaker.api.item.IItemStack[] | 可获得 true | 可设置 false |
Casters
Link to casters
结果类型 | 是否隐藏 |
---|---|
结果类型 crafttweaker.api.data.IData | 是否隐藏 true |
结果类型 craftminstrer.api.data.MapData | 是否隐藏 true |