This repository has been archived by the owner on Mar 11, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
funpack.json
150 lines (134 loc) · 3.04 KB
/
funpack.json
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"schema": [{
"name": "max-players",
"label": "Max Players",
"default": "50",
"type": "integer"
}, {
"name": "gamemode",
"label": "Game Mode",
"default": "0",
"values": [{
"value": "0",
"label": "Survival"
}, {
"value": "1",
"label": "Creative"
}, {
"value": "2",
"label": "Adventure"
}
]
},
{
"name": "difficulty",
"label": "Difficulty",
"default": "1",
"values": [{
"value": "0",
"label": "Peaceful"
}, {
"value": "1",
"label": "Easy"
}, {
"value": "2",
"label": "Normal"
}, {
"value": "3",
"label": "Hard"
}
]
},
{
"name": "level-type",
"label": "Level type",
"default": "DEFAULT",
"values": [{
"value": "DEFAULT",
"label": "Default",
"description": "Standard world with hills, valleys, water, etc."
}, {
"value": "FLAT",
"label": "Flat",
"description": "A flat world with no features, meant for building."
}, {
"value": "LARGEBIOMES",
"label": "Large biomes",
"description": "Same as default but all biomes are larger."
}
]
},
{
"name": "level-seed",
"label": "Level seed",
"description": "Add a seed for your world, as in Singleplayer. Some examples are: minecraft, 404, 1a2b3c."
},
{
"name": "texture-pack",
"label": "Texture pack URL",
"description": "Server prompts client to download texture pack upon join. This link must be a direct link to the actual texture pack .zip file."
},
{
"name": "generator-settings",
"label": "Generator settings",
"description": "Used to customize Superflat world generation."
},
{
"name": "hardcore",
"type": "boolean",
"label": "Hardcore",
"default": false,
"description": "Players will be permanently banned if they die."
},
{
"name": "allow-flight",
"type": "boolean",
"label": "Allow flight",
"default": false
},
{
"name": "generate-structures",
"type": "boolean",
"label": "Generate structures",
"default": true
},
{
"name": "allow-nether",
"type": "boolean",
"label": "Allow nether",
"default": true
},
{
"name": "pvp",
"type": "boolean",
"label": "PVP",
"default": true
},
{
"name": "spawn-animals",
"type": "boolean",
"label": "Spawn animals",
"default": true
},
{
"name": "spawn-monsters",
"type": "boolean",
"label": "Spawn monsters",
"default": true
},
{
"name": "spawn-npcs",
"type": "boolean",
"label": "Spawn NPCs",
"default": true
},
{
"name": "whitelist",
"type": "text"
},
{
"name": "ops",
"type": "text"
}
]
}