* Need to organise this better next time * Shifted * Need to rewrite this in the future * Adding events * First iteration * Revert back to iriginal * Added global tag * Consolidated the recycling index TODO: Fix the amount of dust it gives, 1 log gives 4 dust, but 2 planks (equivalent of 1 log) gives 16 dust... * Bamboo lumber * Remove unnecessary recipes * bamboo lumber * 2nd reiteration * Improved sprite * TFG Mosaic Wood Builder * Indentation * Removed displayname
58 lines
1.4 KiB
JavaScript
58 lines
1.4 KiB
JavaScript
// priority: -100
|
|
"use strict";
|
|
|
|
global.BENEATH_DISABLED_ITEMS = [
|
|
"beneath:cobblerack",
|
|
"beneath:crackrack_rock",
|
|
"beneath:lost_page",
|
|
"beneath:ore/slimed_netherrack",
|
|
"beneath:raw_slime",
|
|
"beneath:haunted_spike",
|
|
"beneath:fungal_cobblerack",
|
|
"beneath:soul_farmland",
|
|
"beneath:gold_chunk",
|
|
"beneath:nether_pebble",
|
|
"beneath:seeds/crimson_roots",
|
|
"beneath:seeds/warped_roots",
|
|
"beneath:seeds/nether_wart",
|
|
"beneath:seeds/ghost_pepper",
|
|
"beneath:seeds/gleamflower",
|
|
|
|
"beneath:ore/poor_nether_gold",
|
|
"beneath:ore/normal_nether_gold",
|
|
"beneath:ore/rich_nether_gold",
|
|
"beneath:ore/nether_pyrite",
|
|
|
|
"beneath:pure_death",
|
|
"beneath:pure_destruction",
|
|
"beneath:pure_decay",
|
|
"beneath:pure_sorrow",
|
|
"beneath:pure_flame",
|
|
"beneath:agonizing_fertilizer",
|
|
|
|
"beneath:wood/water_wheel/crimson",
|
|
"beneath:wood/gear_box/crimson",
|
|
"beneath:wood/axle/crimson",
|
|
"beneath:wood/encased_axle/crimson",
|
|
"beneath:wood/bladed_axle/crimson",
|
|
"beneath:wood/clutch/crimson",
|
|
"beneath:wood/windmill/crimson",
|
|
"beneath:wood/boat/crimson",
|
|
|
|
"beneath:wood/water_wheel/warped",
|
|
"beneath:wood/gear_box/warped",
|
|
"beneath:wood/axle/warped",
|
|
"beneath:wood/encased_axle/warped",
|
|
"beneath:wood/bladed_axle/warped",
|
|
"beneath:wood/clutch/warped",
|
|
"beneath:wood/windmill/warped",
|
|
"beneath:wood/boat/warped",
|
|
|
|
"beneath:wood/sapling/crimson",
|
|
"beneath:wood/sapling/warped"
|
|
];
|
|
|
|
global.BENEATH_WOOD_TYPES = /** @type {const} */ ([
|
|
"crimson",
|
|
"warped"
|
|
]); |