Skip to content

Commit bed3e00

Browse files
committed
docs: add new world presets and enhance existing preset documentation
1 parent 8afa058 commit bed3e00

File tree

11 files changed

+344
-11
lines changed

11 files changed

+344
-11
lines changed

content/docs/worlds/manage/create.mdx

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -62,17 +62,7 @@ To generate a new world using an existing preset, use the command
6262
`/world create <key> preset <preset> [<dimension>] [<structures>] [<seed>]`
6363

6464
World presets are a way to create worlds with specific settings.
65-
The following presets are available by default:
66-
67-
- `classic-flat` - [A classic flat world, no Strongholds unlike in default superflat.](https://minecraft.wiki/w/Superflat#Default_presets)
68-
- `tunnelers-dream` - [Mineshafts, Strongholds, and Dungeons.](https://minecraft.wiki/w/Superflat#Default_presets)
69-
- `water-world` - [A world with a lot of water.](https://minecraft.wiki/w/Superflat#Default_presets)
70-
- `overworld` - [A flat world with ores, trees, and other features.](https://minecraft.wiki/w/Superflat#Default_presets)
71-
- `snowy-kingdom` - [A snowy flat world.](https://minecraft.wiki/w/Superflat#Default_presets)
72-
- `bottomless-pit` - [Cobblestone instead of bedrock.](https://minecraft.wiki/w/Superflat#Default_presets)
73-
- `desert` - [A desert flat world.](https://minecraft.wiki/w/Superflat#Default_presets)
74-
- `redstone-ready` - [A redstone ready world.](https://minecraft.wiki/w/Superflat#Default_presets)
75-
- `the-void` - [A void world.](https://minecraft.wiki/w/The_Void)
65+
Here you can find a list of [available presets](/docs/worlds/presets#available-presets).
7666

7767
Want to learn how to create your own presets?
7868
Check out the [Creating a world preset](/docs/worlds/presets) documentation.
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
title: Bottomless Pit
3+
description: Cobblestone instead of bedrock.
4+
---
5+
6+
```json lineNumbers
7+
{
8+
"biome": "minecraft:plains",
9+
"lakes": false,
10+
"features": false,
11+
"decoration": false,
12+
"layers": [
13+
{
14+
"block": "minecraft:cobblestone",
15+
"height": 2
16+
},
17+
{
18+
"block": "minecraft:dirt",
19+
"height": 3
20+
},
21+
{
22+
"block": "minecraft:grass_block",
23+
"height": 1
24+
}
25+
],
26+
"structure_overrides": ["minecraft:villages"]
27+
}
28+
```
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
title: Classic Flat
3+
description: A classic flat world, no Strongholds unlike in default superflat
4+
---
5+
6+
```json
7+
{
8+
"biome": "minecraft:plains",
9+
"lakes": false,
10+
"features": false,
11+
"decoration": false,
12+
"layers": [
13+
{
14+
"block": "minecraft:bedrock",
15+
"height": 1
16+
},
17+
{
18+
"block": "minecraft:dirt",
19+
"height": 2
20+
},
21+
{
22+
"block": "minecraft:grass_block",
23+
"height": 1
24+
}
25+
],
26+
"structure_overrides": ["minecraft:villages"]
27+
}
28+
```
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
---
2+
title: Desert
3+
description: A desert flat world.
4+
---
5+
6+
```json
7+
{
8+
"biome": "minecraft:desert",
9+
"lakes": false,
10+
"features": true,
11+
"decoration": false,
12+
"layers": [
13+
{
14+
"block": "minecraft:bedrock",
15+
"height": 1
16+
},
17+
{
18+
"block": "minecraft:stone",
19+
"height": 3
20+
},
21+
{
22+
"block": "minecraft:sandstone",
23+
"height": 52
24+
},
25+
{
26+
"block": "minecraft:sand",
27+
"height": 8
28+
}
29+
],
30+
"structure_overrides": [
31+
"minecraft:desert_pyramids",
32+
"minecraft:mineshafts",
33+
"minecraft:strongholds",
34+
"minecraft:villages"
35+
]
36+
}
37+
```
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,55 @@
11
---
22
title: Presets
3+
description: How to create your own presets.
34
---
5+
6+
import { File, Folder, Files } from "fumadocs-ui/components/files"
7+
8+
Presets are a way to create custom flat world configurations in Worlds.
9+
10+
Presets are stored under the `Worlds/presets` directory in your plugins folder.
11+
Each preset is a JSON file that defines the properties of the flat world.
12+
13+
https://minecraft.wiki/w/Biome#List_of_biomes
14+
15+
## Available presets
16+
17+
The following presets are available by default:
18+
19+
<Files>
20+
<Folder name="Worlds" defaultOpen>
21+
<Folder name="presets" defaultOpen>
22+
<a href="presets/classic-flat" target="_blank">
23+
<File name="classic-flat.json" />
24+
</a>
25+
<a href="presets/tunnelers-dream" target="_blank">
26+
<File name="tunnelers-dream.json" />
27+
</a>
28+
<a href="presets/water-world" target="_blank">
29+
<File name="water-world.json" />
30+
</a>
31+
<a href="presets/overworld" target="_blank">
32+
<File name="overworld.json" />
33+
</a>
34+
<a href="presets/snowy-kingdom" target="_blank">
35+
<File name="snowy-kingdom.json" />
36+
</a>
37+
<a href="presets/bottomless-pit" target="_blank">
38+
<File name="bottomless-pit.json" />
39+
</a>
40+
<a href="presets/desert" target="_blank">
41+
<File name="desert.json" />
42+
</a>
43+
<a href="presets/redstone-ready" target="_blank">
44+
<File name="redstone-ready.json" />
45+
</a>
46+
<a href="presets/the-void" target="_blank">
47+
<File name="the-void.json" />
48+
</a>
49+
</Folder>
50+
<Folder name="translations">
51+
<File name="worlds.properties" />
52+
<File name="worlds_german.properties" />
53+
</Folder>
54+
</Folder>
55+
</Files>
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
---
2+
title: Overworld
3+
description: A flat world with ores, trees, and other features.
4+
---
5+
6+
```json
7+
{
8+
"biome": "minecraft:plains",
9+
"lakes": true,
10+
"features": true,
11+
"decoration": false,
12+
"layers": [
13+
{
14+
"block": "minecraft:bedrock",
15+
"height": 1
16+
},
17+
{
18+
"block": "minecraft:stone",
19+
"height": 59
20+
},
21+
{
22+
"block": "minecraft:dirt",
23+
"height": 3
24+
},
25+
{
26+
"block": "minecraft:grass_block",
27+
"height": 1
28+
}
29+
],
30+
"structure_overrides": [
31+
"minecraft:mineshafts",
32+
"minecraft:pillager_outposts",
33+
"minecraft:ruined_portals",
34+
"minecraft:strongholds",
35+
"minecraft:villages"
36+
]
37+
}
38+
```
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
title: Redstone Ready
3+
description: A redstone ready world.
4+
---
5+
6+
```json
7+
{
8+
"biome": "minecraft:desert",
9+
"lakes": false,
10+
"features": false,
11+
"decoration": false,
12+
"layers": [
13+
{
14+
"block": "minecraft:bedrock",
15+
"height": 1
16+
},
17+
{
18+
"block": "minecraft:stone",
19+
"height": 3
20+
},
21+
{
22+
"block": "minecraft:sandstone",
23+
"height": 116
24+
}
25+
],
26+
"structure_overrides": []
27+
}
28+
```
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
title: Snowy Kingdom
3+
description: A snowy flat world with igloos and villages
4+
---
5+
6+
```json
7+
{
8+
"biome": "minecraft:snowy_plains",
9+
"lakes": false,
10+
"features": false,
11+
"decoration": false,
12+
"layers": [
13+
{
14+
"block": "minecraft:bedrock",
15+
"height": 1
16+
},
17+
{
18+
"block": "minecraft:stone",
19+
"height": 59
20+
},
21+
{
22+
"block": "minecraft:dirt",
23+
"height": 3
24+
},
25+
{
26+
"block": "minecraft:grass_block",
27+
"height": 1
28+
},
29+
{
30+
"block": "minecraft:snow",
31+
"height": 1
32+
}
33+
],
34+
"structure_overrides": ["minecraft:igloos", "minecraft:villages"]
35+
}
36+
```
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
title: The Void
3+
description: A void world with no blocks, no structures, and no features.
4+
---
5+
6+
```json
7+
{
8+
"biome": "minecraft:the_void",
9+
"lakes": false,
10+
"features": true,
11+
"decoration": false,
12+
"layers": [
13+
{
14+
"block": "minecraft:air",
15+
"height": 1
16+
}
17+
],
18+
"structure_overrides": []
19+
}
20+
```
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
title: Tunneler's Dream
3+
description: Mineshafts, Strongholds, and Dungeons.
4+
---
5+
6+
```json
7+
{
8+
"biome": "minecraft:windswept_hills",
9+
"lakes": false,
10+
"features": true,
11+
"decoration": false,
12+
"layers": [
13+
{
14+
"block": "minecraft:bedrock",
15+
"height": 1
16+
},
17+
{
18+
"block": "minecraft:stone",
19+
"height": 230
20+
},
21+
{
22+
"block": "minecraft:dirt",
23+
"height": 5
24+
},
25+
{
26+
"block": "minecraft:grass_block",
27+
"height": 1
28+
}
29+
],
30+
"structure_overrides": ["minecraft:mineshafts", "minecraft:strongholds"]
31+
}
32+
```

0 commit comments

Comments
 (0)