2023-05-20 04:24:13 +02:00
# Oxidization API for MineClone 2
This mods adds the oxidization api, so that modders can easily use the same features that copper uses.
## API
To take advantage of the actual oxidization, put `oxidizable = 1` into the list of groups for the oxidizable node.
You would also need to put `_mcl_oxidized_variant = itemstring of node this node will oxidize into` into the node definition.
For example, a copper block oxidizes into exposed copper, so the defintion would be `_mcl_oxidized_variant = "mcl_copper:block_exposed"` .
2023-06-01 18:18:36 +02:00
To utilize the ability to wax the block for protection from oxidization, put `mcl_waxed_variant = item string of waxed variant of node` into the node definition table.
2023-05-20 04:24:13 +02:00
For example, Copper Blocks have the definition arguement of `_mcl_waxed_variant = "mcl_copper:waxed_block"` .
For waxed nodes, scraping is easy. Start by putting `waxed = 1` into the list of groups of the waxed node.
2023-06-01 18:18:36 +02:00
Next put `_mcl_stripped_variant = item string of the unwaxed variant of the node` into the defintion table.
2023-09-02 15:18:30 +02:00
Waxed Copper Blocks can be scrapped into normal Copper Blocks because of the definition `_mcl_stripped_variant = "mcl_copper:block"` .