init
This commit is contained in:
commit
d8d0e9d536
2567 changed files with 167778 additions and 0 deletions
40
kubejs/server_scripts/monicoins/seeds.js
Normal file
40
kubejs/server_scripts/monicoins/seeds.js
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
/**
|
||||
* Registration of Monicoin trades for seeds
|
||||
*/
|
||||
|
||||
ServerEvents.recipes(event => {
|
||||
if (doMonicoins) {
|
||||
// -- "Seeds"
|
||||
event.shaped(Item.of("minecraft:cocoa_beans", 32), [
|
||||
"A A",
|
||||
" ",
|
||||
" A "
|
||||
], {
|
||||
A: "kubejs:moni_penny"
|
||||
}).noMirror().noShrink()
|
||||
|
||||
event.shaped(Item.of("minecraft:sugar_cane", 32), [
|
||||
"A A",
|
||||
" ",
|
||||
" "
|
||||
], {
|
||||
A: "kubejs:moni_penny"
|
||||
}).noMirror().noShrink()
|
||||
|
||||
event.shaped(Item.of("minecraft:cactus", 32), [
|
||||
"A ",
|
||||
"A ",
|
||||
" "
|
||||
], {
|
||||
A: "kubejs:moni_penny"
|
||||
}).noMirror().noShrink()
|
||||
|
||||
event.shaped(Item.of("minecraft:potato", 32), [
|
||||
"AA ",
|
||||
" ",
|
||||
" "
|
||||
], {
|
||||
A: "kubejs:moni_penny"
|
||||
}).noMirror().noShrink()
|
||||
}
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue