IIngredientEmpty
Importing the class
If you need to reference this type directly, like when casting an Array, or as a parameter, you will need to import it. Simply add the import at the top of the file.
import crafttweaker.api.ingredient.type.IIngredientEmpty;Implements
IIngredientEmpty
implements the following interfaces:
IIngredient,CommandStringDisplayable
Operators
myIIngredient in myIIngredientEmptyParameters:
Return Type:
bool
// (IIngredientEmpty * (amount as int)) as IIngredientWithAmountmyIIngredientEmpty * myIntParameters:
amount: int Type: int
Return Type:
IIngredientWithAmount
myIIngredientEmpty | myIIngredientParameters:
other: IIngredient Type: IIngredient
Return Type:
IIngredientList
Members
Please use Item Components instead.
// IIngredientEmpty.addGlobalAttributeModifier(attribute as Attribute, id as ResourceLocation, value as double, operation as AttributeOperation, slotTypes as EquipmentSlot[]);myIIngredientEmpty.addGlobalAttributeModifier(myAttribute, myResourceLocation, myDouble, myOperation, myEquipmentSlot[]);Parameters:
id: ResourceLocation Type: ResourceLocation value: double Type: double operation: AttributeOperation Type: AttributeOperation slotTypes: EquipmentSlot[] Type: EquipmentSlot[] myIIngredientEmpty.asIIngredientWithAmount();
Return Type:
IIngredientWithAmount
// IIngredientEmpty as IIngredientWithAmountmyIIngredientEmpty as IIngredientWithAmount
Return Type:
IIngredientWithAmount
// IIngredientEmpty.burnTime = (time as int);myIIngredientEmpty.burnTime = myInt;Parameters:
time: int Type: int
- the new burn time // IIngredientEmpty.burnTime(time as int);myIIngredientEmpty.burnTime(500);Parameters:
time: int Type: int
- the new burn time // IIngredientEmpty.clearTooltip(leaveName as bool = false);myIIngredientEmpty.clearTooltip(myBool);Parameters:
leaveName: bool (optional) Type: bool
Default Value: false
myIIngredientEmpty.contains((<item:minecraft:iron_ingot> | <item:minecraft:gold_ingot>));Parameters:
Return Type:
bool
myIIngredientEmpty.getRemainingItem(<item:minecraft:iron_ingot>);Parameters:
Return Type:
IItemStack
// IIngredientEmpty.modifyShiftTooltip(shiftedFunction as ITooltipFunction, unshiftedFunction as ITooltipFunction = null);myIIngredientEmpty.modifyShiftTooltip(myITooltipFunction, myITooltipFunction);Parameters:
shiftedFunction: ITooltipFunction Type: ITooltipFunction myIIngredientEmpty.modifyTooltip(myITooltipFunction);Parameters:
function: ITooltipFunction Type: ITooltipFunction myIIngredientEmpty.mul(myInt);Parameters:
amount: int Type: int
Return Type:
IIngredientWithAmount
myIIngredientEmpty.onlyDamagedAtLeast(myInt);Parameters:
minDamage: int Type: int
Return Type:
IIngredient
myIIngredientEmpty.onlyDamagedAtMost(myInt);Parameters:
maxDamage: int Type: int
Return Type:
IIngredient
// IIngredientEmpty.onlyIf(uid as string, function as function(t as IItemStack) as bool = null) as IIngredient;myIIngredientEmpty.onlyIf(myString, myPredicate);Parameters:
uid: string Type: string function: function(t as IItemStack) as bool (optional) Type: function(t as IItemStack) as bool
Default Value: null
Return Type:
IIngredient
Please use Item Components instead.
myIIngredientEmpty.removeGlobalAttribute(myAttribute, myEquipmentSlot[]);Parameters:
slotTypes: EquipmentSlot[] Type: EquipmentSlot[] Please use Item Components instead.
myIIngredientEmpty.removeGlobalAttributeModifier(myString, myEquipmentSlot[]);Parameters:
uuid: string Type: string slotTypes: EquipmentSlot[] Type: EquipmentSlot[] Please use Item Components instead.
myIIngredientEmpty.removeGlobalAttributeModifier(myUUID, myEquipmentSlot[]);Parameters:
uuid: UUID Type: UUID slotTypes: EquipmentSlot[] Type: EquipmentSlot[] // IIngredientEmpty.removeTooltip(regex as string);myIIngredientEmpty.removeTooltip(myString);Parameters:
regex: string Type: string // IIngredientEmpty.transformCustom(uid as string, function as function(r as IItemStack) as IItemStack = null) as IIngredient;myIIngredientEmpty.transformCustom(myString, myFunction);Parameters:
uid: string Type: string function: function(r as IItemStack) as IItemStack (optional) Type: function(r as IItemStack) as IItemStack
Default Value: null
Return Type:
IIngredient
myIIngredientEmpty.transformDamage(myInt);Parameters:
amount: int (optional) Type: int
Default Value: 1
Return Type:
IIngredient
myIIngredientEmpty.transformReplace(myIItemStack);Parameters:
replaceWith: IItemStack Type: IItemStack
Return Type:
IIngredient