An ingredient that matches any item with the given tool type.

This class was added by a mod with mod-id farmersdelight. So you need to have this mod installed if you want to use this feature.

Importing the class

Link to 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 at the very top of the file.

ZenScript
Copy
import mods.farmersdelight.ToolIngredient;

Implemented Interfaces

Link to implemented-interfaces

ToolIngredient implements the following interfaces. That means all methods defined in these interfaces are also available in ToolIngredient

Link to getToolIngredient

Name: getToolIngredient

Get a tool ingredient from a tool type name.

Returns: The ingredient
Return Type: ToolIngredient

ZenScript
Copy
<toolingredient:axe>

// ToolIngredient.getToolIngredient(type as string) as ToolIngredient

ToolIngredient.getToolIngredient("axe");
ParameterTypeDescription
Parameter
type
Type
string
Description
The name of the type

Link to getToolIngredient

Name: getToolIngredient

Get a tool ingredient from a tool type.

Returns: The ingredient
Return Type: ToolIngredient

ZenScript
Copy
// ToolIngredient.getToolIngredient(type as ToolType) as ToolIngredient

ToolIngredient.getToolIngredient(<tooltype:axe>);
ParameterTypeDescription
Parameter
type
Type
ToolType
Description
The tool type
Result typeIs Implicit
Result type
IData
Is Implicit
true
Result type
MapData
Is Implicit
true

Link to addGlobalAttributeModifier

Name: addGlobalAttributeModifier

Return Type: void

ZenScript
Copy
ToolIngredient.addGlobalAttributeModifier(attribute as Attribute, name as string, value as double, operation as AttributeOperation, slotTypes as MCEquipmentSlotType[]) as void
ParameterTypeDescription
Parameter
attribute
Type
Attribute
Description
No Description Provided
Parameter
name
Type
string
Description
No Description Provided
Parameter
value
Type
double
Description
No Description Provided
Parameter
operation
Type
AttributeOperation
Description
No Description Provided
Parameter
slotTypes
Type
MCEquipmentSlotType[]
Description
No Description Provided

Link to addGlobalAttributeModifier

Name: addGlobalAttributeModifier

Return Type: void

ZenScript
Copy
ToolIngredient.addGlobalAttributeModifier(attribute as Attribute, uuid as string, name as string, value as double, operation as AttributeOperation, slotTypes as MCEquipmentSlotType[]) as void
ParameterTypeDescription
Parameter
attribute
Type
Attribute
Description
No Description Provided
Parameter
uuid
Type
string
Description
No Description Provided
Parameter
name
Type
string
Description
No Description Provided
Parameter
value
Type
double
Description
No Description Provided
Parameter
operation
Type
AttributeOperation
Description
No Description Provided
Parameter
slotTypes
Type
MCEquipmentSlotType[]
Description
No Description Provided

Name: addShiftTooltip

Return Type: void

ZenScript
Copy
ToolIngredient.addShiftTooltip(arg0 as MCTextComponent, arg1 as MCTextComponent) as void
ParameterTypeDescriptionOptionalDefaultValue
Parameter
arg0
Type
MCTextComponent
Description
No Description Provided
Optional
false
DefaultValue
Parameter
arg1
Type
MCTextComponent
Description
No Description Provided
Optional
true
DefaultValue

Name: addTooltip

Return Type: void

ZenScript
Copy
ToolIngredient.addTooltip(content as MCTextComponent) as void
ParameterTypeDescription
Parameter
コンテンツ
Type
MCTextComponent
Description
No Description Provided

Name: anyDamage

Return Type: MCIngredientConditioned<IIngredient>

ZenScript
Copy
// ToolIngredient.anyDamage() as MCIngredientConditioned<IIngredient>

myToolIngredient.anyDamage();

Name: clearTooltip

Return Type: void

ZenScript
Copy
// ToolIngredient.clearTooltip() as void

myToolIngredient.clearTooltip();

Name: contains

Return Type: boolean

ZenScript
Copy
ToolIngredient.contains(ingredient as IIngredient) as boolean
ParameterTypeDescription
Parameter
ingredient
Type
IIngredient
Description
No Description Provided

Link to getRemainingItem

Name: getRemainingItem

Return Type: IItemStack

ZenScript
Copy
ToolIngredient.getRemainingItem(stack as IItemStack) as IItemStack
ParameterTypeDescription
Parameter
stack
Type
IItemStack
Description
No Description Provided

Name: matches

Return Type: boolean

ZenScript
Copy
ToolIngredient.matches(stack as IItemStack) as boolean
ParameterTypeDescription
Parameter
stack
Type
IItemStack
Description
No Description Provided

Link to modifyShiftTooltip

Name: modifyShiftTooltip

Return Type: void

ZenScript
Copy
ToolIngredient.modifyShiftTooltip(arg0 as ITooltipFunction, arg1 as ITooltipFunction) as void
ParameterTypeDescriptionOptionalDefaultValue
Parameter
arg0
Type
ITooltipFunction
Description
No Description Provided
Optional
false
DefaultValue
Parameter
arg1
Type
ITooltipFunction
Description
No Description Provided
Optional
true
DefaultValue

Name: modifyTooltip

Return Type: void

ZenScript
Copy
ToolIngredient.modifyTooltip(function as ITooltipFunction) as void
ParameterTypeDescription
Parameter
function
Type
ITooltipFunction
Description
No Description Provided

Name: only

Return Type: MCIngredientConditioned<IIngredient>

ZenScript
Copy
ToolIngredient.only(condition as IIngredientCondition<IIngredient>) as MCIngredientConditioned<IIngredient>
ParameterTypeDescription
Parameter
condition
Type
IIngredientCondition<IIngredient>
Description
No Description Provided

Name: onlyDamaged

Return Type: MCIngredientConditioned<IIngredient>

ZenScript
Copy
// ToolIngredient.onlyDamaged() as MCIngredientConditioned<IIngredient>

myToolIngredient.onlyDamaged();

Name: onlyIf

Return Type: MCIngredientConditioned<IIngredient>

ZenScript
Copy
ToolIngredient.onlyIf(arg0 as string, arg1 as Predicate<IItemStack>) as MCIngredientConditioned<IIngredient>
ParameterTypeDescriptionOptionalDefaultValue
Parameter
arg0
Type
string
Description
No Description Provided
Optional
false
DefaultValue
Parameter
arg1
Type
Predicate<IItemStack>
Description
No Description Provided
Optional
true
DefaultValue

Link to removeGlobalAttribute

Name: removeGlobalAttribute

Return Type: void

ZenScript
Copy
ToolIngredient.removeGlobalAttribute(attribute as Attribute, slotTypes as MCEquipmentSlotType[]) as void
ParameterTypeDescription
Parameter
attribute
Type
Attribute
Description
No Description Provided
Parameter
slotTypes
Type
MCEquipmentSlotType[]
Description
No Description Provided

Link to removeGlobalAttributeModifier

Name: removeGlobalAttributeModifier

Return Type: void

ZenScript
Copy
ToolIngredient.removeGlobalAttributeModifier(uuid as string, slotTypes as MCEquipmentSlotType[]) as void
ParameterTypeDescription
Parameter
uuid
Type
string
Description
No Description Provided
Parameter
slotTypes
Type
MCEquipmentSlotType[]
Description
No Description Provided

Name: removeTooltip

Return Type: void

ZenScript
Copy
ToolIngredient.removeTooltip(regex as string) as void
ParameterTypeDescription
Parameter
regex
Type
string
Description
No Description Provided

Name: CONTAINS

ZenScript
Copy
ingredient as IIngredient in myToolIngredient

Name: OR

ZenScript
Copy
myToolIngredient | other as IIngredient
名称TypeHas GetterHas SetterDescription
名称
burnTime
Type
void
Has Getter
false
Has Setter
true
Description
No Description Provided