-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsontemplates.js
119 lines (116 loc) · 2.41 KB
/
jsontemplates.js
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
// Contains template JSON objects for dimensions and biomes
dimensionBase = {
type: {
ultrawarm: false,
natural: true,
piglin_safe: false,
respawn_anchor_works: false,
bed_works: true,
has_raids: true,
has_skylight: true,
has_ceiling: false,
coordinate_scale: 1,
ambient_light: 0,
logical_height: 256,
infiniburn: "minecraft:infiniburn_overworld",
},
generator: {
type: "minecraft:noise",
seed: 0,
settings: {
bedrock_roof_position: -10,
bedrock_floor_position: 0,
sea_level: 63,
disable_mob_generation: false,
default_block: {
Name: "minecraft:stone",
},
default_fluid: {
Name: "minecraft:water",
Properties: {
level: "0",
},
},
noise: {
height: 256,
density_factor: 1,
density_offset: -0.46875,
size_horizontal: 1,
size_vertical: 2,
simplex_surface_noise: true,
random_density_offset: true,
sampling: {
xz_scale: 0.9999999814507745,
y_scale: 0.9999999814507745,
xz_factor: 80,
y_factor: 160,
},
bottom_slide: {
target: -30,
size: 0,
offset: 0,
},
top_slide: {
target: -10,
size: 3,
offset: 0,
},
},
structures: {
structures: {},
},
},
biome_source: {
type: "minecraft:multi_noise",
seed: 0,
altitude_noise: {
firstOctave: -7,
amplitudes: [1, 1],
},
temperature_noise: {
firstOctave: -7,
amplitudes: [1, 1],
},
humidity_noise: {
firstOctave: -7,
amplitudes: [1, 1],
},
weirdness_noise: {
firstOctave: -7,
amplitudes: [1, 1],
},
biomes: [
],
},
},
};
biomeBase = {
surface_builder: "minecraft:grass",
depth: 0.125,
scale: 0.05,
temperature: 0.8,
downfall: 0.4,
precipitation: "rain",
category: "plains",
player_spawn_friendly: true,
effects: {
sky_color: 7907327,
fog_color: 12638463,
water_color: 4159204,
water_fog_color: 329011,
mood_sound: {},
},
starts: [],
spawners: {
monster: [],
creature: [],
water_creature: [],
water_ambient: [],
misc: [],
},
spawn_costs: {},
carvers: {
air: [],
},
features: [[], [], [], [], [], [], [], [], [], []],
};