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. Так что если вы хотите использовать эту функцию, вам нужно установить этот мод.

Импорт класса

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
Copy
import mods.botania.StateIngredient;

Implemented Interfaces

Link to implemented-interfaces

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

Тип результатаЯвляется неявным
Тип результата
string
Является неявным
false

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
Описание
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