1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
/*
This config file makes it possible to switch off any Minecraft structure.
To disable a structure, simply set the value of that structure to "false".
To change the rarity of a structure category, use the other file in the folder.
*/
{
"igloos": {
"igloo": true
},
"desert_pyramids": {
"desert_pyramid": true
},
"end_cities": {
"end_city": true
},
"ocean_ruins": {
"ocean_ruin_cold": true,
"ocean_ruin_warm": true
},
"shipwrecks": {
"shipwreck": true,
"shipwreck_beached": true
},
"woodland_mansions": {
"mansion": true
},
"ancient_cities": {
"ancient_city": true
},
"buried_treasures": {
"buried_treasure": true
},
"villages": {
"village_plains": true,
"village_desert": true,
"village_savanna": true,
"village_snowy": true,
"village_taiga": true
},
"nether_complexes": {
"fortress": true,
"bastion_remnant": true
},
"ocean_monuments": {
"monument": true
},
"jungle_temples": {
"jungle_pyramid": true
},
"nether_fossils": {
"nether_fossil": true
},
"mineshafts": {
"mineshaft": true,
"mineshaft_mesa": true
},
"pillager_outposts": {
"pillager_outpost": true
},
"swamp_huts": {
"swamp_hut": true
},
"strongholds": {
"stronghold": true
},
"ruined_portals": {
"ruined_portal": true,
"ruined_portal_desert": true,
"ruined_portal_jungle": true,
"ruined_portal_swamp": true,
"ruined_portal_mountain": true,
"ruined_portal_ocean": true,
"ruined_portal_nether": true
}
}
|