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

Flower colour areas, faults/cliffs, desert stone as layer, climbable jungletrees

This commit is contained in:
paramat
2014-03-22 06:40:39 +00:00
parent 9c85ca40f9
commit 9f0b9d6137
4 changed files with 78 additions and 31 deletions

View File

@ -64,7 +64,6 @@ minetest.register_node("watershed:cloud", {
pointable = false,
diggable = false,
buildable_to = true,
is_ground_content = false,
post_effect_color = {a=64, r=241, g=248, b=255},
groups = {not_in_creative_inventory=1},
})
@ -80,7 +79,6 @@ minetest.register_node("watershed:darkcloud", {
pointable = false,
diggable = false,
buildable_to = true,
is_ground_content = false,
post_effect_color = {a=128, r=241, g=248, b=255},
groups = {not_in_creative_inventory=1},
})
@ -134,6 +132,20 @@ minetest.register_node("watershed:permafrost", {
sounds = default.node_sound_dirt_defaults(),
})
minetest.register_node("watershed:vine", {
description = "WS Jungletree Vine",
drawtype = "airlike",
paramtype = "light",
sunlight_propagates = true,
walkable = false,
climbable = true,
pointable = false,
diggable = false,
buildable_to = true,
is_ground_content = false,
groups = {not_in_creative_inventory=1},
})
minetest.register_node("watershed:water", {
description = "WS Water Source",
inventory_image = minetest.inventorycube("default_water.png"),