Compare commits
No commits in common. "6c5f0ef2c19694fb317878d8b4fd6067dce9aa60" and "92d1c78e118939b3c95e0d4a386a4a277298aba3" have entirely different histories.
6c5f0ef2c1
...
92d1c78e11
1 changed files with 17 additions and 23 deletions
|
@ -20,21 +20,17 @@ core.register_node("vox_main:grass", {
|
||||||
groups = {cracky = 3}
|
groups = {cracky = 3}
|
||||||
})
|
})
|
||||||
core.register_alias("grass", "vox_main:grass")
|
core.register_alias("grass", "vox_main:grass")
|
||||||
core.register_alias("default:dirt_with_grass" , "vox_main:grass")
|
|
||||||
|
|
||||||
core.register_biome({
|
core.register_biome({
|
||||||
name = "grassland",
|
name = "grassland",
|
||||||
node_top = "grass",
|
node_top = "vox_main:grass",
|
||||||
depth_top = 1,
|
depth_top = 1,
|
||||||
node_filler = "vox_main:dirt",
|
node_filler = "vox_main:grass",
|
||||||
node_stone = "vox_main:stone",
|
|
||||||
depth_filler = 3,
|
depth_filler = 3,
|
||||||
node_riverbed = "vox_main:sand",
|
node_stone = "vox_main:grass",
|
||||||
node_river_water = "vox_main:water_source",
|
|
||||||
depth_riverbed = 2,
|
|
||||||
height_min = 1,
|
height_min = 1,
|
||||||
height_max = 256,
|
height_max = 4,
|
||||||
heat_point = 35,
|
heat_point = 50,
|
||||||
humidity_point = 50
|
humidity_point = 50
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -45,19 +41,19 @@ core.register_node("vox_main:stone", {
|
||||||
groups = {cracky = 2}
|
groups = {cracky = 2}
|
||||||
})
|
})
|
||||||
core.register_alias("stone", "vox_main:stone")
|
core.register_alias("stone", "vox_main:stone")
|
||||||
core.register_alias("mapgen_stone", "vox_main:stone")
|
|
||||||
-- core.register_alias("default:stone", "vox_main:stone")
|
|
||||||
|
|
||||||
-- Sand
|
core.register_biome({
|
||||||
-- (I don't like sand. It's coarse and rough and irritating and it gets everywhere.)
|
name = "stone",
|
||||||
core.register_node("vox_main:sand", {
|
node_top = "vox_main:stone",
|
||||||
description = "Sand",
|
depth_top = 1,
|
||||||
tiles = {"vox_sand.png"},
|
node_filler = "vox_main:stone",
|
||||||
groups = {crumbly = 3}
|
depth_filler = 3,
|
||||||
|
node_stone = "vox_main:stone",
|
||||||
|
height_min = -31000,
|
||||||
|
height_max = 1,
|
||||||
|
heat_point = 50,
|
||||||
|
humidity_point = 50
|
||||||
})
|
})
|
||||||
core.register_alias("sand", "vox_main:sand")
|
|
||||||
core.register_alias("default:sand", "vox_main:sand")
|
|
||||||
|
|
||||||
|
|
||||||
-- Water
|
-- Water
|
||||||
core.register_node("vox_main:water_source", {
|
core.register_node("vox_main:water_source", {
|
||||||
|
@ -74,7 +70,7 @@ core.register_node("vox_main:water_source", {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
alpha = 128,
|
alpha = 160,
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
walkable = false,
|
walkable = false,
|
||||||
pointable = false,
|
pointable = false,
|
||||||
|
@ -87,8 +83,6 @@ core.register_node("vox_main:water_source", {
|
||||||
post_effect_color = {a = 103, r = 30, g = 60, b = 90}
|
post_effect_color = {a = 103, r = 30, g = 60, b = 90}
|
||||||
})
|
})
|
||||||
core.register_alias("water_source", "vox_main:water_source")
|
core.register_alias("water_source", "vox_main:water_source")
|
||||||
core.register_alias("default:river_water", "vox_main:water_source")
|
|
||||||
core.register_alias("mapgen_water_source", "vox_main:water_source")
|
|
||||||
|
|
||||||
core.register_node("vox_main:water_flowing", {
|
core.register_node("vox_main:water_flowing", {
|
||||||
description = "Flowing Water",
|
description = "Flowing Water",
|
||||||
|
|
Loading…
Add table
Reference in a new issue