RetardsModpack/kubejs/server_scripts/config.js
2026-02-22 21:51:29 +01:00

61 lines
1.2 KiB
JavaScript

/**
* @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",
},
};