1
0
mirror of https://github.com/paramat/watershed.git synced 2025-07-22 02:00:36 +02:00

Snowy berg if humid. Harmonic noise returns. Flatter lowlands. New node icydirt: tundra surface

This commit is contained in:
paramat
2014-04-19 19:52:33 +01:00
parent ba596b269f
commit 410f1b39d1
5 changed files with 92 additions and 31 deletions

View File

@ -24,6 +24,7 @@ minetest.register_node("watershed:acaciatree", {
description = "WS Acacia Tree",
tiles = {"watershed_acaciatreetop.png", "watershed_acaciatreetop.png", "watershed_acaciatree.png"},
paramtype2 = "facedir",
is_ground_content = false,
groups = {tree=1,choppy=2,oddly_breakable_by_hand=1,flammable=2},
sounds = default.node_sound_wood_defaults(),
on_place = minetest.rotate_node
@ -44,6 +45,7 @@ minetest.register_node("watershed:pinetree", {
description = "WS Pine Tree",
tiles = {"watershed_pinetreetop.png", "watershed_pinetreetop.png", "watershed_pinetree.png"},
paramtype2 = "facedir",
is_ground_content = false,
groups = {tree=1,choppy=2,oddly_breakable_by_hand=1,flammable=2},
sounds = default.node_sound_wood_defaults(),
on_place = minetest.rotate_node
@ -69,6 +71,18 @@ minetest.register_node("watershed:dirt", {
sounds = default.node_sound_dirt_defaults(),
})
minetest.register_node("watershed:icydirt", {
description = "WS Icy Dirt",
tiles = {"watershed_icydirt.png"},
is_ground_content = false,
groups = {crumbly=1},
drop = "default:dirt",
sounds = default.node_sound_dirt_defaults({
footstep = {name="default_snow_footstep", gain=0.15},
dug = {name="default_snow_footstep", gain=0.45},
}),
})
minetest.register_node("watershed:grass", {
description = "WS Grass",
tiles = {"default_grass.png", "default_dirt.png", "default_dirt.png^default_grass_side.png"},
@ -139,7 +153,7 @@ minetest.register_node("watershed:drygrass", {
description = "WS Dry Grass",
tiles = {"watershed_drygrass.png"},
is_ground_content = false,
groups = {crumbly=3,soil=1},
groups = {crumbly=1,soil=1},
drop = "default:dirt",
sounds = default.node_sound_dirt_defaults({
footstep = {name="default_grass_footstep", gain=0.4},
@ -150,7 +164,7 @@ minetest.register_node("watershed:permafrost", {
description = "WS Permafrost",
tiles = {"watershed_permafrost.png"},
is_ground_content = false,
groups = {crumbly=2},
groups = {crumbly=1},
drop = "default:dirt",
sounds = default.node_sound_dirt_defaults(),
})
@ -194,6 +208,7 @@ minetest.register_node("watershed:luxoreoff", {
description = "WS Lux Ore Off",
tiles = {"watershed_luxore.png"},
light_source = 14,
is_ground_content = false,
groups = {cracky=3},
drop = "watershed:luxcrystal 8",
sounds = default.node_sound_glass_defaults(),