fix(kubejs): update kubejs scripts
This commit is contained in:
parent
28a30d94c0
commit
57be389894
13 changed files with 921 additions and 251 deletions
61
kubejs/server_scripts/config.js
Normal file
61
kubejs/server_scripts/config.js
Normal file
|
|
@ -0,0 +1,61 @@
|
|||
/**
|
||||
* @type {{
|
||||
* dimensions: Array<{
|
||||
* id: string,
|
||||
* gamemode: string,
|
||||
* portal: {
|
||||
* material: string,
|
||||
* fluid: string,
|
||||
* color: string,
|
||||
* },
|
||||
* worldgen: {
|
||||
* [key: string]: number,
|
||||
* },
|
||||
* }>,
|
||||
* greeting: {
|
||||
* [key: string]: string
|
||||
* },
|
||||
* }}
|
||||
*/
|
||||
const config = {
|
||||
dimensions: [
|
||||
{
|
||||
id: "retards:creative",
|
||||
gamemode: "creative",
|
||||
portal: {
|
||||
material: "minecraft:glowstone",
|
||||
fluid: "minecraft:water",
|
||||
color: "#1E66F5",
|
||||
},
|
||||
worldgen: {
|
||||
"minecraft:bedrock": 1,
|
||||
"minecraft:stone": 40,
|
||||
"minecraft:dirt": 8,
|
||||
"minecraft:grass_block": 1,
|
||||
},
|
||||
},
|
||||
{
|
||||
id: "retards:adventure",
|
||||
gamemode: "adventure",
|
||||
portal: {
|
||||
material: "minecraft:bedrock",
|
||||
fluid: "minecraft:water",
|
||||
color: "#1E66F5",
|
||||
},
|
||||
worldgen: {
|
||||
"minecraft:bedrock": 1,
|
||||
"minecraft:stone": 40,
|
||||
"minecraft:dirt": 8,
|
||||
"minecraft:grass_block": 1,
|
||||
},
|
||||
},
|
||||
],
|
||||
greeting: {
|
||||
Sbebas_s: "MCFLURRY!!!",
|
||||
Mark917: "CUCARACHA",
|
||||
Anthony_7: "onion rings",
|
||||
Tren_boy: "Kebab",
|
||||
Cheruz: "Fa freddo",
|
||||
default: "Welcome",
|
||||
},
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue