init
This commit is contained in:
commit
a956daf8e2
2351 changed files with 163047 additions and 0 deletions
80
kubejs/server_scripts/monicoins/saplings.js
Normal file
80
kubejs/server_scripts/monicoins/saplings.js
Normal file
|
|
@ -0,0 +1,80 @@
|
|||
/**
|
||||
* Registration of Monicoin trades for saplings
|
||||
*/
|
||||
|
||||
ServerEvents.recipes(event => {
|
||||
if (doMonicoins) {
|
||||
// -- Saplings
|
||||
event.shaped(Item.of("minecraft:oak_sapling", 64), [
|
||||
"AAA",
|
||||
" ",
|
||||
" "
|
||||
], {
|
||||
A: "kubejs:moni_penny"
|
||||
}).noMirror().noShrink()
|
||||
|
||||
event.shaped(Item.of("minecraft:dark_oak_sapling", 64), [
|
||||
"AA ",
|
||||
" ",
|
||||
"A "
|
||||
], {
|
||||
A: "kubejs:moni_penny"
|
||||
}).noMirror().noShrink()
|
||||
|
||||
event.shaped(Item.of("minecraft:acacia_sapling", 64), [
|
||||
"A ",
|
||||
" A ",
|
||||
" A"
|
||||
], {
|
||||
A: "kubejs:moni_penny"
|
||||
}).noMirror().noShrink()
|
||||
|
||||
event.shaped(Item.of("minecraft:spruce_sapling", 64), [
|
||||
"AA ",
|
||||
" ",
|
||||
" A "
|
||||
], {
|
||||
A: "kubejs:moni_penny"
|
||||
}).noMirror().noShrink()
|
||||
|
||||
event.shaped(Item.of("minecraft:birch_sapling", 64), [
|
||||
"AA ",
|
||||
"A ",
|
||||
" "
|
||||
], {
|
||||
A: "kubejs:moni_penny"
|
||||
}).noMirror().noShrink()
|
||||
|
||||
event.shaped(Item.of("thermal:rubberwood_sapling", 64), [
|
||||
"AA ",
|
||||
" A ",
|
||||
" "
|
||||
], {
|
||||
A: "kubejs:moni_penny"
|
||||
}).noMirror().noShrink()
|
||||
|
||||
event.shaped(Item.of("minecraft:jungle_sapling", 64), [
|
||||
"AA ",
|
||||
" A",
|
||||
" "
|
||||
], {
|
||||
A: "kubejs:moni_penny"
|
||||
}).noMirror().noShrink()
|
||||
|
||||
event.shaped(Item.of("minecraft:cherry_sapling", 64), [
|
||||
"AA ",
|
||||
" ",
|
||||
" A"
|
||||
], {
|
||||
A: "kubejs:moni_penny"
|
||||
}).noMirror().noShrink()
|
||||
|
||||
event.shaped(Item.of("minecraft:mangrove_propagule", 64), [
|
||||
"A ",
|
||||
" A",
|
||||
" A "
|
||||
], {
|
||||
A: "kubejs:moni_penny"
|
||||
}).noMirror().noShrink()
|
||||
}
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue