mirror of
https://git.fellies.tech/minecraft/fellies.git
synced 2021-02-13 10:18:48 +00:00
85 lines
3.1 KiB
JavaScript
85 lines
3.1 KiB
JavaScript
// priority: 98
|
|
|
|
events.listen('recipes', e => {
|
|
var idsToRemove = [
|
|
// Additional Lights
|
|
'additional_lights:fire_for_standing_torch_s',
|
|
'additional_lights:fire_for_standing_torch_l',
|
|
'additional_lights:fire_for_fire_pit_s',
|
|
'additional_lights:fire_for_fire_pit_l',
|
|
'additional_lights:soul_fire_for_standing_torch_s',
|
|
'additional_lights:soul_fire_for_standing_torch_l',
|
|
'additional_lights:soul_fire_for_fire_pit_s',
|
|
'additional_lights:soul_fire_for_fire_pit_l',
|
|
|
|
// Extra Storage
|
|
'extrastorage:part/storagepart_256k',
|
|
'extrastorage:part/storagepart_1024k',
|
|
'extrastorage:part/storagepart_4096k',
|
|
'extrastorage:part/storagepart_16384k',
|
|
'extrastorage:part/storagepart_16384k_fluid',
|
|
'extrastorage:part/storagepart_65536k_fluid',
|
|
'extrastorage:part/storagepart_262144k_fluid',
|
|
'extrastorage:part/storagepart_1048576k_fluid',
|
|
'extrastorage:disk/shaped/disk_256k',
|
|
'extrastorage:disk/shaped/disk_1024k',
|
|
'extrastorage:disk/shaped/disk_4096k',
|
|
'extrastorage:disk/shaped/disk_16384k',
|
|
'extrastorage:disk/shaped/disk_16384k_fluid',
|
|
'extrastorage:disk/shaped/disk_65536k_fluid',
|
|
'extrastorage:disk/shaped/disk_262144k_fluid',
|
|
'extrastorage:disk/shaped/disk_1048576k_fluid',
|
|
'extrastorage:disk/shapeless/disk_256k',
|
|
'extrastorage:disk/shapeless/disk_1024k',
|
|
'extrastorage:disk/shapeless/disk_4096k',
|
|
'extrastorage:disk/shapeless/disk_16384k',
|
|
'extrastorage:disk/shapeless/disk_16384k_fluid',
|
|
'extrastorage:disk/shapeless/disk_65536k_fluid',
|
|
'extrastorage:disk/shapeless/disk_262144k_fluid',
|
|
'extrastorage:disk/shapeless/disk_1048576k_fluid',
|
|
|
|
// Iron Rods
|
|
'immersiveengineering:crafting/stick_iron',
|
|
|
|
// Mekanism
|
|
'mekanism:storage_blocks/charcoal',
|
|
|
|
// Pams
|
|
'pamhc2foodextended:pralinesitem',
|
|
|
|
// Refined Storage
|
|
'refinedstorage:silicon',
|
|
|
|
// Thermal Series
|
|
'thermal:parts/emerald_gear',
|
|
'thermal:storage/bamboo_block',
|
|
'thermal:storage/gunpowder_block',
|
|
'thermal:storage/sugar_cane_block',
|
|
'thermal:storage/beetroot_block',
|
|
'thermal:storage/apple_block',
|
|
'thermal:storage/potato_block',
|
|
'thermal:storage/carrot_block',
|
|
'thermal:storage/charcoal_block',
|
|
'thermal:storage/sawdust_block',
|
|
'thermal:machine/press/packing3x3/press_bamboo_packing',
|
|
'thermal:machine/press/packing3x3/press_gunpowder_packing',
|
|
'thermal:machine/press/packing3x3/press_sugar_cane_packing',
|
|
'thermal:machine/press/packing3x3/press_beetroot_packing',
|
|
'thermal:machine/press/packing3x3/press_apple_packing',
|
|
'thermal:machine/press/packing3x3/press_potato_packing',
|
|
'thermal:machine/press/packing3x3/press_carrot_packing',
|
|
'thermal:machine/press/packing3x3/press_charcoal_packing',
|
|
'thermal:machine/press/packing3x3/press_sawdust_packing',
|
|
'thermal:phytogro_4',
|
|
'thermal:phytogro_8',
|
|
|
|
// Xreliquary
|
|
'xreliquary:items/uncrafting/redstone',
|
|
'xreliquary:items/uncrafting/gunpowder_witch_hat',
|
|
'xreliquary:items/uncrafting/glowstone_dust',
|
|
]
|
|
|
|
idsToRemove.forEach(remove => {
|
|
e.remove({id: remove})
|
|
})
|
|
}) |