fix(kubejs): update kubejs scripts

This commit is contained in:
Malasaur 2026-02-22 21:51:29 +01:00
parent 28a30d94c0
commit 57be389894
No known key found for this signature in database
13 changed files with 921 additions and 251 deletions

View 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",
},
};