IItemStack
This represents an item. It can be retrieved using an Item BEP. Is an crafttweaker.api.item.IIngredient
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.item.IItemStack
Implemented Interfaces
IItemStack implements the following interfaces. That means any method available to them can also be used on this class.
Methods
clearCustomName
ItemStackに設定されているカスタムネームを取り除きます。
<item:minecraft:dirt>.clearCustomName();
getRemainingItem
この材料スタックでクラフトが行われると、グリッド上になにが残るか? ただし、スタックが一致するかどうかのチェックは行いません! Craft Tweakerでの使用例,
Returns crafttweaker.api.item.IItemStack
<item:minecraft:dirt>.getRemainingItem(stack as crafttweaker.api.item.IItemStack);
<item:minecraft:dirt>.getRemainingItem(<item:minecraft:iron_ingot>);
matches
Does the given stack match the ingredient?
Returns boolean
<item:minecraft:dirt>.matches(stack as crafttweaker.api.item.IItemStack);
<item:minecraft:dirt>.matches(<item:minecraft:iron_ingot>);
setDisplayName
ItemStackに表示される名前を設定します。
Returns crafttweaker.api.item.IItemStack
<item:minecraft:dirt>.setDisplayName(name as String);
<item:minecraft:dirt>.setDisplayName("totally not dirt");
Parameter | Type | Description |
---|
name | String | stackの新しい名前 |
withDamage
ItemStackのダメージ(耐久値)を設定します。
Returns crafttweaker.api.item.IItemStack
<item:minecraft:dirt>.withDamage(damage as int);
<item:minecraft:dirt>.withDamage(10);
Parameter | Type | Description |
---|
damage | int | 新しいダメージの値 |
withTag
ItemStackのタグを設定します。
Returns crafttweaker.api.item.IItemStack
<item:minecraft:dirt>.withTag(tag as crafttweaker.api.data.IData);
<item:minecraft:dirt>.withTag({Display: {lore: ["Hello"]}});
Properties
名称 | Type | Has Getter | Has Setter |
---|
amount | int | true | false |
burnTime | int | true | true |
commandString | String | true | false |
damageable | boolean型 | true | false |
damaged | boolean型 | true | false |
displayName | String | true | false |
empty | boolean型 | true | false |
food | crafttweaker.api.food.MCFood | true | true |
getOrCreate | crafttweaker.api.data.IData | true | false |
getRepairCost | int | true | false |
hasDisplayName | boolean型 | true | false |
hasEffect | boolean型 | true | false |
hasTag | boolean型 | true | false |
isCrossbow | boolean型 | true | false |
isEnchantable | boolean型 | true | false |
isEnchanted | boolean型 | true | false |
items | crafttweaker.api.item.IItemStack[] | true | false |
maxDamage | int | true | false |
maxStackSize | int | true | false |
registryName | String | true | false |
stackable | boolean型 | true | false |
tag | crafttweaker.api.data.IData | true | false |
translationKey | String | true | false |
useDuration | int | true | false |
演算子
MUL
ItemStackの数量(スタック数)を設定します。
<item:minecraft:dirt> * amount as int
<item:minecraft:dirt> * 3
Parameter | Type | Description |
---|
amount | int | new amount |
Casters