MCTag
Link to mctag
Questa classe è stata aggiunta da una mod con ID crafttweaker
. Perciò, è necessario avere questa mod installata per poter utilizzare questa funzione.
Importare la Classe
Link to importare-la-classe
Potrebbe essere necessario importare il pacchetto, se si incontrano dei problemi (come castare un vettore), quindi meglio essere sicuri e aggiungere la direttiva di importazione.
ZenScript Copycrafttweaker.api.tag.MCTag
Interfacce Implementate
Link to interfacce-implementate
MCTag implements the following interfaces. Ciò significa che ogni metodo presente nell'interfaccia può essere usato anche per questa classe.
Metodi
Link to metodi
addBlocks
Link to addblocks
ZenScript CopymyMCTag.addBlocks(blocks as crafttweaker.api.block.MCBlock[]);
Parametro | Tipo | Descrizione |
---|---|---|
Parametro blocks | Tipo crafttweaker.api.block.MCBlock[] | Descrizione Nessuna descrizione fornita |
addEntityTypes
Link to addentitytypes
ZenScript CopymyMCTag.addEntityTypes(entities as crafttweaker.api.entity.MCEntityType[]);
Parametro | Tipo | Descrizione |
---|---|---|
Parametro entities | Tipo crafttweaker.api.entity.MCEntityType[] | Descrizione Nessuna descrizione fornita |
addItems
Link to additems
ZenScript CopymyMCTag.addItems(items as crafttweaker.api.item.IItemStack[]);
Parametro | Tipo | Descrizione |
---|---|---|
Parametro items | Tipo crafttweaker.api.item.IItemStack[] | Descrizione Nessuna descrizione fornita |
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>);
Parametro | Tipo | Descrizione |
---|---|---|
Parametro stack | Tipo crafttweaker.api.item.IItemStack | Descrizione The stack to provide for this ingredient. |
matches
Link to matches
Does the given stack match the ingredient?
Restituisce un booleano
ZenScript CopymyMCTag.matches(stack as crafttweaker.api.item.IItemStack);
myMCTag.matches(<item:minecraft:iron_ingot>);
Parametro | Tipo | Descrizione |
---|---|---|
Parametro stack | Tipo crafttweaker.api.item.IItemStack | Descrizione The stack to check |
removeBlocks
Link to removeblocks
ZenScript CopymyMCTag.removeBlocks(blocks as crafttweaker.api.block.MCBlock[]);
Parametro | Tipo | Descrizione |
---|---|---|
Parametro blocks | Tipo crafttweaker.api.block.MCBlock[] | Descrizione Nessuna descrizione fornita |
removeEntityTypes
Link to removeentitytypes
ZenScript CopymyMCTag.removeEntityTypes(entities as crafttweaker.api.entity.MCEntityType[]);
Parametro | Tipo | Descrizione |
---|---|---|
Parametro entities | Tipo crafttweaker.api.entity.MCEntityType[] | Descrizione Nessuna descrizione fornita |
removeItems
Link to removeitems
ZenScript CopymyMCTag.removeItems(items as crafttweaker.api.item.IItemStack[]);
Parametro | Tipo | Descrizione |
---|---|---|
Parametro items | Tipo crafttweaker.api.item.IItemStack[] | Descrizione Nessuna descrizione fornita |
Proprietà
Link to proprietà
Nome | Tipo | Ha Getter | Ha Setter |
---|---|---|---|
Nome blocks | Tipo crafttweaker.api.block.MCBlock[] | Ha Getter sì | Ha Setter no |
Nome commandString | Tipo String | Ha Getter sì | Ha Setter no |
Nome entityTypes | Tipo crafttweaker.api.entity.MCEntityType[] | Ha Getter sì | Ha Setter no |
Nome items | Tipo crafttweaker.api.item.IItemStack[] | Ha Getter sì | Ha Setter no |
Caster
Link to caster
Tipo Risultato | Implicito |
---|---|
Tipo Risultato crafttweaker.api.data.IData | Implicito sì |
Tipo Risultato crafttweaker.api.data.MapData | Implicito sì |