mirror of
https://git.fellies.tech/minecraft/fellies.git
synced 2021-02-13 10:18:48 +00:00
Updates
This commit is contained in:
77
kubejs/server_scripts/fellies/kubejs/recipes/remove.js
Normal file
77
kubejs/server_scripts/fellies/kubejs/recipes/remove.js
Normal file
@ -0,0 +1,77 @@
|
||||
events.listen('recipes', (event) => {
|
||||
// Additional Lights
|
||||
event.remove({output: 'additional_lights:fire_for_standing_torch_s'});
|
||||
event.remove({output: 'additional_lights:fire_for_standing_torch_l'});
|
||||
event.remove({output: 'additional_lights:fire_for_fire_pit_s'});
|
||||
event.remove({output: 'additional_lights:fire_for_fire_pit_l'});
|
||||
event.remove({output: 'additional_lights:soul_fire_for_standing_torch_s'});
|
||||
event.remove({output: 'additional_lights:soul_fire_for_standing_torch_l'});
|
||||
event.remove({output: 'additional_lights:soul_fire_for_fire_pit_s'});
|
||||
event.remove({output: 'additional_lights:soul_fire_for_fire_pit_l'});
|
||||
|
||||
// Environmental Core
|
||||
event.remove({input: 'envirocore:aethium', output: 'envirocore:aethium'});
|
||||
event.remove({input: 'envirocore:litherite', output: 'envirocore:litherite'});
|
||||
|
||||
// Extra Storage
|
||||
event.remove({id: 'extrastorage:part/storagepart_256k'});
|
||||
event.remove({id: 'extrastorage:part/storagepart_1024k'});
|
||||
event.remove({id: 'extrastorage:part/storagepart_4096k'});
|
||||
event.remove({id: 'extrastorage:part/storagepart_16384k'});
|
||||
event.remove({id: 'extrastorage:part/storagepart_16384k_fluid'});
|
||||
event.remove({id: 'extrastorage:part/storagepart_65536k_fluid'});
|
||||
event.remove({id: 'extrastorage:part/storagepart_262144k_fluid'});
|
||||
event.remove({id: 'extrastorage:part/storagepart_1048576k_fluid'});
|
||||
event.remove({id: 'extrastorage:disk/shaped/disk_256k'});
|
||||
event.remove({id: 'extrastorage:disk/shaped/disk_1024k'});
|
||||
event.remove({id: 'extrastorage:disk/shaped/disk_4096k'});
|
||||
event.remove({id: 'extrastorage:disk/shaped/disk_16384k'});
|
||||
event.remove({id: 'extrastorage:disk/shaped/disk_16384k_fluid'});
|
||||
event.remove({id: 'extrastorage:disk/shaped/disk_65536k_fluid'});
|
||||
event.remove({id: 'extrastorage:disk/shaped/disk_262144k_fluid'});
|
||||
event.remove({id: 'extrastorage:disk/shaped/disk_1048576k_fluid'});
|
||||
event.remove({id: 'extrastorage:disk/shapeless/disk_256k'});
|
||||
event.remove({id: 'extrastorage:disk/shapeless/disk_1024k'});
|
||||
event.remove({id: 'extrastorage:disk/shapeless/disk_4096k'});
|
||||
event.remove({id: 'extrastorage:disk/shapeless/disk_16384k'});
|
||||
event.remove({id: 'extrastorage:disk/shapeless/disk_16384k_fluid'});
|
||||
event.remove({id: 'extrastorage:disk/shapeless/disk_65536k_fluid'});
|
||||
event.remove({id: 'extrastorage:disk/shapeless/disk_262144k_fluid'});
|
||||
event.remove({id: 'extrastorage:disk/shapeless/disk_1048576k_fluid'});
|
||||
|
||||
|
||||
// Iron Rods
|
||||
event.remove({id: 'immersiveengineering:crafting/stick_iron'});
|
||||
|
||||
// Mekanism
|
||||
event.remove({id: 'mekanism:storage_blocks/charcoal'});
|
||||
|
||||
// Pams
|
||||
event.remove({id: 'pamhc2foodextended:pralinesitem'});
|
||||
|
||||
// Thermal Series
|
||||
event.remove({id: 'thermal:parts/emerald_gear'});
|
||||
event.remove({id: 'thermal:storage/bamboo_block'});
|
||||
event.remove({id: 'thermal:storage/gunpowder_block'});
|
||||
event.remove({id: 'thermal:storage/sugar_cane_block'});
|
||||
event.remove({id: 'thermal:storage/beetroot_block'});
|
||||
event.remove({id: 'thermal:storage/apple_block'});
|
||||
event.remove({id: 'thermal:storage/potato_block'});
|
||||
event.remove({id: 'thermal:storage/carrot_block'});
|
||||
event.remove({id: 'thermal:storage/charcoal_block'});
|
||||
event.remove({id: 'thermal:storage/sawdust_block'});
|
||||
event.remove({id: 'thermal:machine/press/packing3x3/press_bamboo_packing'});
|
||||
event.remove({id: 'thermal:machine/press/packing3x3/press_gunpowder_packing'});
|
||||
event.remove({id: 'thermal:machine/press/packing3x3/press_sugar_cane_packing'});
|
||||
event.remove({id: 'thermal:machine/press/packing3x3/press_beetroot_packing'});
|
||||
event.remove({id: 'thermal:machine/press/packing3x3/press_apple_packing'});
|
||||
event.remove({id: 'thermal:machine/press/packing3x3/press_potato_packing'});
|
||||
event.remove({id: 'thermal:machine/press/packing3x3/press_carrot_packing'});
|
||||
event.remove({id: 'thermal:machine/press/packing3x3/press_charcoal_packing'});
|
||||
event.remove({id: 'thermal:machine/press/packing3x3/press_sawdust_packing'});
|
||||
|
||||
// Xreliquary
|
||||
event.remove({id: 'xreliquary:items/uncrafting/redstone'});
|
||||
event.remove({id: 'xreliquary:items/uncrafting/gunpowder_witch_hat'});
|
||||
event.remove({id: 'xreliquary:items/uncrafting/glowstone_dust'});
|
||||
});
|
11
kubejs/server_scripts/fellies/kubejs/recipes/replace.js
Normal file
11
kubejs/server_scripts/fellies/kubejs/recipes/replace.js
Normal file
@ -0,0 +1,11 @@
|
||||
events.listen('recipes', (event) => {
|
||||
// Immersive Engineering
|
||||
// event.replaceInput({}, '#minecraft:planks', 'minecraft:gold_nugget');
|
||||
// event.replaceOutput({}, 'minecraft:stick', 'minecraft:oak_sapling');
|
||||
|
||||
// Extra Storage
|
||||
// event.replaceInput({}, 'extrastorage:storagepart_256k', 'extradisks:256k_storage_part');
|
||||
// event.replaceInput({}, 'extrastorage:storagepart_1024k', 'extradisks:1024k_storage_part');
|
||||
// event.replaceInput({}, 'extrastorage:storagepart_4096k', 'extradisks:4096k_storage_part');
|
||||
// event.replaceInput({}, 'extrastorage:storagepart_16384k', 'extradisks:16384k_storage_part');
|
||||
});
|
27
kubejs/server_scripts/fellies/kubejs/recipes/shaped.js
Normal file
27
kubejs/server_scripts/fellies/kubejs/recipes/shaped.js
Normal file
@ -0,0 +1,27 @@
|
||||
events.listen('recipes', (event) => {
|
||||
// Xreliquary
|
||||
event.shaped(Item.of('minecraft:glowstone_dust', 6), [
|
||||
'H ',
|
||||
' H ',
|
||||
' H'
|
||||
], {
|
||||
H: 'xreliquary:witch_hat'
|
||||
});
|
||||
|
||||
event.shaped(Item.of('minecraft:gunpowder', 6), [
|
||||
' H ',
|
||||
' H ',
|
||||
' H '
|
||||
], {
|
||||
H: 'xreliquary:witch_hat'
|
||||
});
|
||||
|
||||
event.shaped(Item.of('minecraft:redstone', 6), [
|
||||
'H ',
|
||||
' H ',
|
||||
'H '
|
||||
], {
|
||||
H: 'xreliquary:witch_hat'
|
||||
});
|
||||
});
|
||||
|
11
kubejs/server_scripts/fellies/kubejs/recipes/shapeless.js
Normal file
11
kubejs/server_scripts/fellies/kubejs/recipes/shapeless.js
Normal file
@ -0,0 +1,11 @@
|
||||
events.listen('recipes', (event) => {
|
||||
// Additional Lights
|
||||
event.shapeless('additional_lights:fire_for_standing_torch_s', ['#fellies:minicoal']);
|
||||
event.shapeless('additional_lights:fire_for_standing_torch_l', ['#fellies:minicoal', '#fellies:minicoal']);
|
||||
event.shapeless('additional_lights:fire_for_fire_pit_s', ['#fellies:minicoal', '#fellies:minicoal','#fellies:minicoal']);
|
||||
event.shapeless('additional_lights:fire_for_fire_pit_l', ['#fellies:minicoal', '#fellies:minicoal','#fellies:minicoal','#fellies:minicoal']);
|
||||
event.shapeless('additional_lights:soul_fire_for_standing_torch_s', ['#fellies:minicoal', '#forge:soul_sand']);
|
||||
event.shapeless('additional_lights:soul_fire_for_standing_torch_l', ['#fellies:minicoal', '#fellies:minicoal', '#forge:soul_sand']);
|
||||
event.shapeless('additional_lights:soul_fire_for_fire_pit_s', ['#fellies:minicoal', '#fellies:minicoal','#fellies:minicoal', '#forge:soul_sand']);
|
||||
event.shapeless('additional_lights:soul_fire_for_fire_pit_l', ['#fellies:minicoal', '#fellies:minicoal','#fellies:minicoal','#fellies:minicoal', '#forge:soul_sand']);
|
||||
});
|
Reference in New Issue
Block a user