added recipes for scannable scanner and blank modules
All checks were successful
Actions / Build Prism Launcher Export File (push) Successful in 7s
Actions / Build ATLauncher Export File (push) Successful in 8s
Actions / Build Documentation (push) Successful in 28s

This commit is contained in:
SeaswimmerTheFsh 2024-02-09 21:24:56 -05:00
parent 0104b6c6fb
commit 53d5c7ca29
Signed by: cswimr
GPG key ID: B8953EC01E5C4063
3 changed files with 35 additions and 1 deletions

View file

@ -220,6 +220,10 @@ hash = "0e6154b8f0af0fd7d2746938981f82661b282a304695733e80850d3c2588540a"
file = "kubejs/server_scripts/recipes/mekaweapons.js"
hash = "fb87db3c4a2091b61c7d18866f826a0035138cfd981003dd818b4b7aeaf79a69"
[[files]]
file = "kubejs/server_scripts/recipes/scannable.js"
hash = "bd405477b40d8073ed3c2b58f8dfa67d3f1fd61e456f846978cac464a749b1f0"
[[files]]
file = "kubejs/server_scripts/test.js"
hash = "698d489a6bec11eafe725433e11c9d1733313c6c617834ca216c92a3c6c5acfd"

View file

@ -0,0 +1,30 @@
ServerEvents.recipes((event) => {
// Remove the Scannable Scanner recipe and add a progression-based one
event.remove({ output: "scannable:scanner" })
event.shaped("scannable:scanner", [
'A A',
'BCB',
'DED'
], {
A: "mekanism:ingot_osmium",
B: "mekanism:advanced_control_circuit",
C: "minecraft:redstone",
D: "minecraft:gold_ingot",
E: "minecraft:quartz"
})
// Remove the Scannable Blank Module recipe and add a progression-based one
event.remove({ output: "scannable:blank_module" })
event.shaped("scannable:blank_module", [
'AAA',
'BCB',
'BDB'
], {
A: "mekanism:basic_control_circuit",
B: "minecraft:clay_ball",
C: "minecraft:glowstone_dust",
D: "minecraft:gold_nugget"
})
})

View file

@ -6,7 +6,7 @@ pack-format = "packwiz:1.1.0"
[index]
file = "index.toml"
hash-format = "sha256"
hash = "fae4982374290fad211158ccc54968c59cbdc807199cf24c5b39fa96fb8bb74e"
hash = "d86021478333753c4f527b9dc210e4439f06988641faab03d43c9e75df4c14a8"
[versions]
forge = "47.2.0"