init
This commit is contained in:
commit
a956daf8e2
2351 changed files with 163047 additions and 0 deletions
39
kubejs/server_scripts/monicoins/covers.js
Normal file
39
kubejs/server_scripts/monicoins/covers.js
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
/**
|
||||
* Registration of Monicoin trades for ULV covers
|
||||
*/
|
||||
ServerEvents.recipes(event => {
|
||||
if (doMonicoins) {
|
||||
// -- ULV Covers
|
||||
event.shaped(Item.of("ulvcovm:ulv_conveyor_module", 2), [
|
||||
" ",
|
||||
" ",
|
||||
"A A"
|
||||
], {
|
||||
A: "kubejs:moni_nickel"
|
||||
}).noMirror().noShrink()
|
||||
|
||||
event.shaped(Item.of("ulvcovm:ulv_electric_pump", 2), [
|
||||
" ",
|
||||
" ",
|
||||
" AA"
|
||||
], {
|
||||
A: "kubejs:moni_nickel"
|
||||
}).noMirror().noShrink()
|
||||
|
||||
event.shaped(Item.of("ulvcovm:ulv_robot_arm"), [
|
||||
" ",
|
||||
" A ",
|
||||
" A"
|
||||
], {
|
||||
A: "kubejs:moni_nickel"
|
||||
}).noMirror().noShrink()
|
||||
|
||||
event.shaped(Item.of("ulvcovm:ulv_fluid_regulator"), [
|
||||
" ",
|
||||
" A",
|
||||
" A"
|
||||
], {
|
||||
A: "kubejs:moni_nickel"
|
||||
}).noMirror().noShrink()
|
||||
}
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue