export into cf form
github is now legible for other people (hooray)
This commit is contained in:
39
overrides/kubejs/server_scripts/torchmaster.js
Normal file
39
overrides/kubejs/server_scripts/torchmaster.js
Normal file
@@ -0,0 +1,39 @@
|
||||
ServerEvents.recipes((event) => {
|
||||
// Mega Torch
|
||||
event.remove({ id: "torchmaster:megatorch" });
|
||||
event.shaped("torchmaster:megatorch", ["SDR", "IBD", "RIS"], {
|
||||
S: "#forge:screws/iron",
|
||||
D: "#forge:gems/diamond",
|
||||
R: "#forge:rings/gold",
|
||||
I: "minecraft:stick",
|
||||
B: "#forge:storage_blocks/coke",
|
||||
});
|
||||
|
||||
// Dread Lamp
|
||||
event.remove({ id: "torchmaster:dreadlamp" });
|
||||
event.shaped("torchmaster:dreadlamp", ["PPP", "GLG", "PPP"], {
|
||||
P: "#forge:plates/obsidian",
|
||||
L: "minecraft:glowstone",
|
||||
G: "#forge:glass_panes",
|
||||
});
|
||||
|
||||
// Feral Flare Lantern
|
||||
event.remove({ id: "torchmaster:feral_flare_lantern" });
|
||||
event.shaped("torchmaster:feral_flare_lantern", ["SPR", "INP", "RIS"], {
|
||||
S: "#forge:screws/iron",
|
||||
P: "#forge:plates/glowstone",
|
||||
R: "#forge:rings/steel",
|
||||
I: "#forge:rods/steel",
|
||||
N: "#forge:springs/small/gold",
|
||||
});
|
||||
|
||||
// Frozen Pearl
|
||||
event.remove({ id: "torchmaster:frozen_pearl" });
|
||||
event.recipes.gtceu
|
||||
.chemical_bath("frozen_pearl")
|
||||
.itemInputs("minecraft:ender_pearl")
|
||||
.inputFluids("gtceu:ice 1152")
|
||||
.itemOutputs("torchmaster:frozen_pearl")
|
||||
.duration(100)
|
||||
.EUt(16);
|
||||
});
|
||||
Reference in New Issue
Block a user