StateIngredient
Link to stateingredient
Wrapper around blocks, blockstates or block tags used to match recipe inputs like blocks to convert with the Pure Daisy, or catalysts for mana infusion.
To create, simply cast an MCBlock, MCBlockState, an array of MCBlocks, or an MCTag<MCBlock> to StateIngredient. This is done automatically when using them as a parameter for a method.
This class was added by a mod with mod-id botania
. 因此,如果要使用此功能,则需要安装此mod。
导入类
Link to 导入类
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 Copyimport mods.botania.StateIngredient;
已实现的接口
Link to 已实现的接口
StateIngredient implements the following interfaces. That means all methods defined in these interfaces are also available in StateIngredient
- Predicate<MCBlockState>
Casters
Link to casters
结果类型 | 是否隐藏 |
---|---|
结果类型 string | 是否隐藏 false |
使用方式
Link to 使用方式
Name: matches
Tests if the provided block state matches the recipe.
Return Type: boolean
ZenScript Copy// StateIngredient.matches(state as MCBlockState) as boolean
ingredient.matches(<blockstate:minecraft:dirt>);
参数 | 类型 | 描述 |
---|---|---|
参数 state | 类型 MCBlockState #MC方块状态 | 描述 Block state to test against this ingredient |
Name: pick
Returns a random state matching the ingredient.
Return Type: MCBlockState
ZenScript Copy// StateIngredient.pick(random as Random) as MCBlockState
ingredient.pick(world.random);
参数 | 类型 | 描述 |
---|---|---|
参数 random | 类型 Random | 描述 a Random instance, usually obtained from a world |