Importing the Package

Link to importing-the-package

ZenScript
Copy
import mods.embers.EmberBore;
import mods.embers.EmberBoreSet;

Creating/Retrieving Boresets

Link to creatingretrieving-boresets

ZenScript
Copy
var boreset = mods.embers.EmberBore.create(int[] dimensionIDs, string[] biomes);
var defaultBoreset = mods.embers.EmberBore.getDefault();
ZenScript
Copy
boreset.addOutput(WeightedItemStack output);
boreset.removeOutput(IItemStack output);
boreset.clear();

ZenGetters/ZenSetters

Link to zengetterszensetters

Property NameTypeDescriptionGetter?Setter?
Property Name
dimensions
Type
int[]
Description
An array containing all dimensions for which this boreset applies
Getter?
Yes
Setter?
Yes
Property Name
biomes
Type
string[]
Description
An array containing all biomes for which this boreset applies
Getter?
Yes
Setter?
Yes
Property Name
stacks
Type
WeightedItemStack[]
Description
An array containing all outputs of the ember bore
Getter?
Yes
Setter?
No