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

This class was added by a mod with mod-id farmersdelight. 因此,如果要使用此功能,则需要安装此mod。

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;

已实现的接口

Link to 已实现的接口

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");
参数类型描述
参数
类型
类型
string
描述
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>);
参数类型描述
参数
类型
类型
ToolType
描述
The tool type
结果类型是否隐藏
结果类型
IData #数据
是否隐藏
true
结果类型
MapData #地图数据
是否隐藏
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
参数类型描述
参数
attribute
类型
Attribute
描述
No Description Provided
参数
name(名称)
类型
string
描述
No Description Provided
参数
value
类型
double
描述
No Description Provided
参数
operation
类型
AttributeOperation
描述
No Description Provided
参数
slotTypes
类型
MCEquipmentSlotType[]
描述
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
参数类型描述
参数
attribute
类型
Attribute
描述
No Description Provided
参数
uuid
类型
string
描述
No Description Provided
参数
name(名称)
类型
string
描述
No Description Provided
参数
value
类型
double
描述
No Description Provided
参数
operation
类型
AttributeOperation
描述
No Description Provided
参数
slotTypes
类型
MCEquipmentSlotType[]
描述
No Description Provided

Name: addShiftTooltip

Return Type: void

ZenScript
Copy
ToolIngredient.addShiftTooltip(arg0 as MCTextComponent, arg1 as MCTextComponent) as void
参数类型描述可选DefaultValue
参数
arg0
类型
MCText组件
描述
No Description Provided
可选
false
DefaultValue
参数
arg1
类型
MCText组件
描述
No Description Provided
可选
true
DefaultValue

Name: addTooltip

Return Type: void

ZenScript
Copy
ToolIngredient.addTooltip(content as MCTextComponent) as void
参数类型描述
参数
内容
类型
MCText组件
描述
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
参数类型描述
参数
ingredient
类型
材料(IIngredient)
描述
No Description Provided

Link to getRemainingItem

Name: getRemainingItem

Return Type: IItemStack

ZenScript
Copy
ToolIngredient.getRemainingItem(stack as IItemStack) as IItemStack
参数类型描述
参数
堆叠
类型
IItemstack
描述
No Description Provided

Name: matches

Return Type: boolean

ZenScript
Copy
ToolIngredient.matches(stack as IItemStack) as boolean
参数类型描述
参数
堆叠
类型
IItemstack
描述
No Description Provided

Link to modifyShiftTooltip

Name: modifyShiftTooltip

Return Type: void

ZenScript
Copy
ToolIngredient.modifyShiftTooltip(arg0 as ITooltipFunction, arg1 as ITooltipFunction) as void
参数类型描述可选DefaultValue
参数
arg0
类型
ITooltipFunction
描述
No Description Provided
可选
false
DefaultValue
参数
arg1
类型
ITooltipFunction
描述
No Description Provided
可选
true
DefaultValue

Name: modifyTooltip

Return Type: void

ZenScript
Copy
ToolIngredient.modifyTooltip(function as ITooltipFunction) as void
参数类型描述
参数
function
类型
ITooltipFunction
描述
No Description Provided

Name: only

Return Type: MCIngredientConditioned<IIngredient>

ZenScript
Copy
ToolIngredient.only(condition as IIngredientCondition<IIngredient>) as MCIngredientConditioned<IIngredient>
参数类型描述
参数
condition
类型
IIngredientCondition<IIngredient>
描述
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>
参数类型描述可选DefaultValue
参数
arg0
类型
string
描述
No Description Provided
可选
false
DefaultValue
参数
arg1
类型
Predicate<IItemStack>
描述
No Description Provided
可选
true
DefaultValue

Link to removeGlobalAttribute

Name: removeGlobalAttribute

Return Type: void

ZenScript
Copy
ToolIngredient.removeGlobalAttribute(attribute as Attribute, slotTypes as MCEquipmentSlotType[]) as void
参数类型描述
参数
attribute
类型
Attribute
描述
No Description Provided
参数
slotTypes
类型
MCEquipmentSlotType[]
描述
No Description Provided

Link to removeGlobalAttributeModifier

Name: removeGlobalAttributeModifier

Return Type: void

ZenScript
Copy
ToolIngredient.removeGlobalAttributeModifier(uuid as string, slotTypes as MCEquipmentSlotType[]) as void
参数类型描述
参数
uuid
类型
string
描述
No Description Provided
参数
slotTypes
类型
MCEquipmentSlotType[]
描述
No Description Provided

Name: removeTooltip

Return Type: void

ZenScript
Copy
ToolIngredient.removeTooltip(regex as string) as void
参数类型描述
参数
regex
类型
string
描述
No Description Provided

Name: CONTAINS

ZenScript
Copy
ingredient as IIngredient in myToolIngredient

Name: OR

ZenScript
Copy
myToolIngredient | other as IIngredient
名称类型可获得可设置描述
名称
burnTime
类型
void
可获得
false
可设置
true
描述
No Description Provided