Allows editing lists of results from the Orechid and Orechid Ignem.

Note that outputs added through this list will not be affected by the priority config option.

To dump the full list of loaded results, run the /ct dump orechidOutputs command.

This class was added by a mod with mod-id botania. Perciò, è necessario avere questa mod installata per poter utilizzare questa funzione.

Importare la Classe

Link to importare-la-classe

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.Orechid;

Static Properties

Link to static-properties

NomeTipoHa GetterHa SetterDescrizione
Nome
main
Tipo
Orechid
Ha Getter
Ha Setter
no
Descrizione
The manager for the standard Orechid.
Nome
nether
Tipo
Orechid
Ha Getter
Ha Setter
no
Descrizione
The manager for the nether variant, Orechid Ignem.

Name: clear

Completely clears the ore list.

Return Type: void

ZenScript
Copy
// Orechid.clear() as void

Orechid.main.clear();

Link to registerOreWeight

Name: registerOreWeight

Adds the specified ingredient with the specified weight at the end of the ore list.

As the output is a state ingredient, you can use blocks, blockstates and tags as the output.

Return Type: void

ZenScript
Copy
// Orechid.registerOreWeight(output as StateIngredient, weight as int) as void

Orechid.main.registerOreWeight(<block:minecraft:coal_ore>, 250);
ParametroTipoDescrizione
Parametro
output
Tipo
StateIngredient
Descrizione
The block result
Parametro
weight
Tipo
int
Descrizione
The weight of the result

Name: removeOreWeight

Removes all outputs that contain the specified state.

Return Type: void

ZenScript
Copy
// Orechid.removeOreWeight(state as MCBlockState) as void

Orechid.main.removeOreWeight(<blockstate:minecraft:diamond_ore>);
ParametroTipoDescrizione
Parametro
state
Tipo
MCBlockState
Descrizione
State to remove