All 4 saplngs, grown by LVM. nodeupdate(pos) to spread luxore light. Wider ore seams
This commit is contained in:
parent
cc4e445d5b
commit
fe89e76758
@ -1,4 +1,4 @@
|
|||||||
watershed 0.4.0 by paramat
|
watershed 0.4.1 by paramat
|
||||||
For latest stable Minetest back to 0.4.8
|
For latest stable Minetest back to 0.4.8
|
||||||
Depends default bucket
|
Depends default bucket
|
||||||
Licenses: code WTFPL, textures CC BY-SA
|
Licenses: code WTFPL, textures CC BY-SA
|
||||||
|
104
functions.lua
104
functions.lua
@ -356,3 +356,107 @@ minetest.register_abm({
|
|||||||
minetest.sound_play("default_cool_lava", {pos = pos, gain = 0.25})
|
minetest.sound_play("default_cool_lava", {pos = pos, gain = 0.25})
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
-- Update luxore light
|
||||||
|
|
||||||
|
minetest.register_abm({
|
||||||
|
nodenames = {"watershed:luxoreoff"},
|
||||||
|
interval = 5,
|
||||||
|
chance = 8,
|
||||||
|
action = function(pos, node)
|
||||||
|
minetest.add_node(pos, {name="watershed:luxore"})
|
||||||
|
nodeupdate(pos)
|
||||||
|
end,
|
||||||
|
})
|
||||||
|
|
||||||
|
-- Appletree sapling
|
||||||
|
|
||||||
|
minetest.register_abm({
|
||||||
|
nodenames = {"watershed:appling"},
|
||||||
|
interval = 57,
|
||||||
|
chance = 3,
|
||||||
|
action = function(pos, node)
|
||||||
|
local x = pos.x
|
||||||
|
local y = pos.y
|
||||||
|
local z = pos.z
|
||||||
|
local vm = minetest.get_voxel_manip()
|
||||||
|
local pos1 = {x=x-2, y=y-2, z=z-2}
|
||||||
|
local pos2 = {x=x+2, y=y+4, z=z+2}
|
||||||
|
local emin, emax = vm:read_from_map(pos1, pos2)
|
||||||
|
local area = VoxelArea:new({MinEdge=emin, MaxEdge=emax})
|
||||||
|
local data = vm:get_data()
|
||||||
|
watershed_appletree(x, y, z, area, data)
|
||||||
|
vm:set_data(data)
|
||||||
|
vm:write_to_map()
|
||||||
|
vm:update_map()
|
||||||
|
end,
|
||||||
|
})
|
||||||
|
|
||||||
|
-- Pine sapling
|
||||||
|
|
||||||
|
minetest.register_abm({
|
||||||
|
nodenames = {"watershed:pineling"},
|
||||||
|
interval = 59,
|
||||||
|
chance = 3,
|
||||||
|
action = function(pos, node)
|
||||||
|
local x = pos.x
|
||||||
|
local y = pos.y
|
||||||
|
local z = pos.z
|
||||||
|
local vm = minetest.get_voxel_manip()
|
||||||
|
local pos1 = {x=x-2, y=y-4, z=z-2}
|
||||||
|
local pos2 = {x=x+2, y=y+17, z=z+2}
|
||||||
|
local emin, emax = vm:read_from_map(pos1, pos2)
|
||||||
|
local area = VoxelArea:new({MinEdge=emin, MaxEdge=emax})
|
||||||
|
local data = vm:get_data()
|
||||||
|
watershed_pinetree(x, y, z, area, data)
|
||||||
|
vm:set_data(data)
|
||||||
|
vm:write_to_map()
|
||||||
|
vm:update_map()
|
||||||
|
end,
|
||||||
|
})
|
||||||
|
|
||||||
|
-- Acacia sapling
|
||||||
|
|
||||||
|
minetest.register_abm({
|
||||||
|
nodenames = {"watershed:acacialing"},
|
||||||
|
interval = 61,
|
||||||
|
chance = 3,
|
||||||
|
action = function(pos, node)
|
||||||
|
local x = pos.x
|
||||||
|
local y = pos.y
|
||||||
|
local z = pos.z
|
||||||
|
local vm = minetest.get_voxel_manip()
|
||||||
|
local pos1 = {x=x-4, y=y-3, z=z-4}
|
||||||
|
local pos2 = {x=x+4, y=y+6, z=z+4}
|
||||||
|
local emin, emax = vm:read_from_map(pos1, pos2)
|
||||||
|
local area = VoxelArea:new({MinEdge=emin, MaxEdge=emax})
|
||||||
|
local data = vm:get_data()
|
||||||
|
watershed_acaciatree(x, y, z, area, data)
|
||||||
|
vm:set_data(data)
|
||||||
|
vm:write_to_map()
|
||||||
|
vm:update_map()
|
||||||
|
end,
|
||||||
|
})
|
||||||
|
|
||||||
|
-- Jungletree sapling
|
||||||
|
|
||||||
|
minetest.register_abm({
|
||||||
|
nodenames = {"watershed:jungling"},
|
||||||
|
interval = 63,
|
||||||
|
chance = 3,
|
||||||
|
action = function(pos, node)
|
||||||
|
local x = pos.x
|
||||||
|
local y = pos.y
|
||||||
|
local z = pos.z
|
||||||
|
local vm = minetest.get_voxel_manip()
|
||||||
|
local pos1 = {x=x-2, y=y-5, z=z-2}
|
||||||
|
local pos2 = {x=x+2, y=y+23, z=z+2}
|
||||||
|
local emin, emax = vm:read_from_map(pos1, pos2)
|
||||||
|
local area = VoxelArea:new({MinEdge=emin, MaxEdge=emax})
|
||||||
|
local data = vm:get_data()
|
||||||
|
watershed_jungletree(x, y, z, area, data)
|
||||||
|
vm:set_data(data)
|
||||||
|
vm:write_to_map()
|
||||||
|
vm:update_map()
|
||||||
|
end,
|
||||||
|
})
|
||||||
|
19
init.lua
19
init.lua
@ -1,13 +1,12 @@
|
|||||||
-- watershed 0.4.0 by paramat
|
-- watershed 0.4.1 by paramat
|
||||||
-- For latest stable Minetest and back to 0.4.8
|
-- For latest stable Minetest and back to 0.4.8
|
||||||
-- Depends default bucket
|
-- Depends default bucket
|
||||||
-- License: code WTFPL, textures CC BY-SA
|
-- License: code WTFPL, textures CC BY-SA
|
||||||
-- Red cobble texture CC BY-SA by brunob.santos
|
-- Red cobble texture CC BY-SA by brunob.santos
|
||||||
|
|
||||||
-- no luxore abm
|
-- saplings grown by abm for all 4 trees
|
||||||
-- terblen exponent returns
|
-- nodeupdate(pos) luxore
|
||||||
-- enable xlscale
|
-- wider ore seams
|
||||||
-- grass, flowers return to forest, grassland
|
|
||||||
|
|
||||||
-- Parameters
|
-- Parameters
|
||||||
|
|
||||||
@ -35,7 +34,7 @@ local TSTREAM = -0.004 -- Densitymid threshold for stream surface
|
|||||||
local TSSAND = -0.005 -- Densitymid threshold for stream sand
|
local TSSAND = -0.005 -- Densitymid threshold for stream sand
|
||||||
local TLAVA = 2.3 -- Maximum densitybase threshold for lava, small because grad is non-linear
|
local TLAVA = 2.3 -- Maximum densitybase threshold for lava, small because grad is non-linear
|
||||||
local TFIS = 0.01 -- Fissure threshold, controls width
|
local TFIS = 0.01 -- Fissure threshold, controls width
|
||||||
local TSEAM = 0.1 -- Seam threshold, width of seams
|
local TSEAM = 0.2 -- Seam threshold, width of seams
|
||||||
local ORESCA = 512 -- Seam system vertical scale
|
local ORESCA = 512 -- Seam system vertical scale
|
||||||
local ORETHI = 0.002 -- Ore seam thickness tuner
|
local ORETHI = 0.002 -- Ore seam thickness tuner
|
||||||
local BERGDEP = 32 -- Maximum iceberg depth
|
local BERGDEP = 32 -- Maximum iceberg depth
|
||||||
@ -55,10 +54,10 @@ local FLOCHA = 289 -- Flower
|
|||||||
local GRACHA = 36 -- Grassland grasses
|
local GRACHA = 36 -- Grassland grasses
|
||||||
local JUTCHA = 16 -- Jungletree
|
local JUTCHA = 16 -- Jungletree
|
||||||
local JUGCHA = 16 -- Junglegrass
|
local JUGCHA = 16 -- Junglegrass
|
||||||
local CACCHA = 841 -- Cactus
|
local CACCHA = 2209 -- Cactus
|
||||||
local DRYCHA = 121 -- Dry shrub
|
local DRYCHA = 121 -- Dry shrub
|
||||||
local ACACHA = 841 -- Acacia tree
|
local ACACHA = 1369 -- Acacia tree
|
||||||
local GOGCHA = 16 -- Golden grass
|
local GOGCHA = 9 -- Golden grass
|
||||||
local PAPCHA = 4 -- Papyrus
|
local PAPCHA = 4 -- Papyrus
|
||||||
local DUGCHA = 16 -- Dune grass
|
local DUGCHA = 16 -- Dune grass
|
||||||
|
|
||||||
@ -239,7 +238,7 @@ minetest.register_on_generated(function(minp, maxp, seed)
|
|||||||
local c_wslava = minetest.get_content_id("watershed:lava")
|
local c_wslava = minetest.get_content_id("watershed:lava")
|
||||||
local c_wsfreshice = minetest.get_content_id("watershed:freshice")
|
local c_wsfreshice = minetest.get_content_id("watershed:freshice")
|
||||||
local c_wscloud = minetest.get_content_id("watershed:cloud")
|
local c_wscloud = minetest.get_content_id("watershed:cloud")
|
||||||
local c_wsluxore = minetest.get_content_id("watershed:luxore")
|
local c_wsluxore = minetest.get_content_id("watershed:luxoreoff")
|
||||||
local c_wsicydirt = minetest.get_content_id("watershed:icydirt")
|
local c_wsicydirt = minetest.get_content_id("watershed:icydirt")
|
||||||
-- perlinmap stuff
|
-- perlinmap stuff
|
||||||
local sidelen = x1 - x0 + 1 -- chunk sidelength
|
local sidelen = x1 - x0 + 1 -- chunk sidelength
|
||||||
|
187
nodes.lua
187
nodes.lua
@ -1,27 +1,41 @@
|
|||||||
minetest.register_node("watershed:appleleaf", {
|
minetest.register_node("watershed:appleleaf", {
|
||||||
description = "WS Appletree Leaves",
|
description = "Appletree leaves",
|
||||||
drawtype = "allfaces_optional",
|
drawtype = "allfaces_optional",
|
||||||
visual_scale = 1.3,
|
visual_scale = 1.3,
|
||||||
tiles = {"default_leaves.png"},
|
tiles = {"default_leaves.png"},
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
groups = {snappy=3, flammable=2, leaves=1},
|
groups = {snappy=3, flammable=2, leaves=1},
|
||||||
|
drop = {
|
||||||
|
max_items = 1,
|
||||||
|
items = {
|
||||||
|
{items = {"watershed:appling"},rarity = 20},
|
||||||
|
{items = {"watershed:appleleaf"}}
|
||||||
|
}
|
||||||
|
},
|
||||||
sounds = default.node_sound_leaves_defaults(),
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("watershed:acacialeaf", {
|
minetest.register_node("watershed:appling", {
|
||||||
description = "WS Acacia Leaves",
|
description = "Appletree sapling",
|
||||||
drawtype = "allfaces_optional",
|
drawtype = "plantlike",
|
||||||
visual_scale = 1.3,
|
visual_scale = 1.0,
|
||||||
tiles = {"watershed_acacialeaf.png"},
|
tiles = {"default_sapling.png"},
|
||||||
|
inventory_image = "default_sapling.png",
|
||||||
|
wield_image = "default_sapling.png",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
|
walkable = false,
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
groups = {snappy=3, flammable=2, leaves=1},
|
selection_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = {-0.3, -0.5, -0.3, 0.3, 0.35, 0.3}
|
||||||
|
},
|
||||||
|
groups = {snappy=2,dig_immediate=3,flammable=2,attached_node=1},
|
||||||
sounds = default.node_sound_leaves_defaults(),
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("watershed:acaciatree", {
|
minetest.register_node("watershed:acaciatree", {
|
||||||
description = "WS Acacia Tree",
|
description = "Acacia tree",
|
||||||
tiles = {"watershed_acaciatreetop.png", "watershed_acaciatreetop.png", "watershed_acaciatree.png"},
|
tiles = {"watershed_acaciatreetop.png", "watershed_acaciatreetop.png", "watershed_acaciatree.png"},
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
@ -30,19 +44,44 @@ minetest.register_node("watershed:acaciatree", {
|
|||||||
on_place = minetest.rotate_node
|
on_place = minetest.rotate_node
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("watershed:needles", {
|
minetest.register_node("watershed:acacialeaf", {
|
||||||
description = "WS Pine Needles",
|
description = "Acacia leaves",
|
||||||
drawtype = "allfaces_optional",
|
drawtype = "allfaces_optional",
|
||||||
visual_scale = 1.3,
|
visual_scale = 1.3,
|
||||||
tiles = {"watershed_needles.png"},
|
tiles = {"watershed_acacialeaf.png"},
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
groups = {snappy=3},
|
groups = {snappy=3, flammable=2, leaves=1},
|
||||||
|
drop = {
|
||||||
|
max_items = 1,
|
||||||
|
items = {
|
||||||
|
{items = {"watershed:acacialing"},rarity = 20},
|
||||||
|
{items = {"watershed:acacialeaf"}}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_node("watershed:acacialing", {
|
||||||
|
description = "Acacia tree sapling",
|
||||||
|
drawtype = "plantlike",
|
||||||
|
visual_scale = 1.0,
|
||||||
|
tiles = {"watershed_acacialing.png"},
|
||||||
|
inventory_image = "watershed_acacialing.png",
|
||||||
|
wield_image = "watershed_acacialing.png",
|
||||||
|
paramtype = "light",
|
||||||
|
walkable = false,
|
||||||
|
is_ground_content = false,
|
||||||
|
selection_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = {-0.3, -0.5, -0.3, 0.3, 0.35, 0.3}
|
||||||
|
},
|
||||||
|
groups = {snappy=2,dig_immediate=3,flammable=2,attached_node=1},
|
||||||
sounds = default.node_sound_leaves_defaults(),
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("watershed:pinetree", {
|
minetest.register_node("watershed:pinetree", {
|
||||||
description = "WS Pine Tree",
|
description = "Pine tree",
|
||||||
tiles = {"watershed_pinetreetop.png", "watershed_pinetreetop.png", "watershed_pinetree.png"},
|
tiles = {"watershed_pinetreetop.png", "watershed_pinetreetop.png", "watershed_pinetree.png"},
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
@ -51,19 +90,80 @@ minetest.register_node("watershed:pinetree", {
|
|||||||
on_place = minetest.rotate_node
|
on_place = minetest.rotate_node
|
||||||
})
|
})
|
||||||
|
|
||||||
|
minetest.register_node("watershed:needles", {
|
||||||
|
description = "Pine needles",
|
||||||
|
drawtype = "allfaces_optional",
|
||||||
|
visual_scale = 1.3,
|
||||||
|
tiles = {"watershed_needles.png"},
|
||||||
|
paramtype = "light",
|
||||||
|
is_ground_content = false,
|
||||||
|
groups = {snappy=3},
|
||||||
|
drop = {
|
||||||
|
max_items = 1,
|
||||||
|
items = {
|
||||||
|
{items = {"watershed:pineling"},rarity = 20},
|
||||||
|
{items = {"watershed:needles"}}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_node("watershed:pineling", {
|
||||||
|
description = "Pine sapling",
|
||||||
|
drawtype = "plantlike",
|
||||||
|
visual_scale = 1.0,
|
||||||
|
tiles = {"watershed_pineling.png"},
|
||||||
|
inventory_image = "watershed_pineling.png",
|
||||||
|
wield_image = "watershed_pineling.png",
|
||||||
|
paramtype = "light",
|
||||||
|
walkable = false,
|
||||||
|
is_ground_content = false,
|
||||||
|
selection_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = {-0.3, -0.5, -0.3, 0.3, 0.35, 0.3}
|
||||||
|
},
|
||||||
|
groups = {snappy=2,dig_immediate=3,flammable=2,attached_node=1},
|
||||||
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
|
})
|
||||||
|
|
||||||
minetest.register_node("watershed:jungleleaf", {
|
minetest.register_node("watershed:jungleleaf", {
|
||||||
description = "WS Jungletree Leaves",
|
description = "Jungletree leaves",
|
||||||
drawtype = "allfaces_optional",
|
drawtype = "allfaces_optional",
|
||||||
visual_scale = 1.3,
|
visual_scale = 1.3,
|
||||||
tiles = {"default_jungleleaves.png"},
|
tiles = {"default_jungleleaves.png"},
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
groups = {snappy=3, flammable=2, leaves=1},
|
groups = {snappy=3, flammable=2, leaves=1},
|
||||||
|
drop = {
|
||||||
|
max_items = 1,
|
||||||
|
items = {
|
||||||
|
{items = {"watershed:jungling"},rarity = 20},
|
||||||
|
{items = {"watershed:jungleleaf"}}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_node("watershed:jungling", {
|
||||||
|
description = "Jungletree sapling",
|
||||||
|
drawtype = "plantlike",
|
||||||
|
visual_scale = 1.0,
|
||||||
|
tiles = {"watershed_jungling.png"},
|
||||||
|
inventory_image = "watershed_jungling.png",
|
||||||
|
wield_image = "watershed_jungling.png",
|
||||||
|
paramtype = "light",
|
||||||
|
walkable = false,
|
||||||
|
is_ground_content = false,
|
||||||
|
selection_box = {
|
||||||
|
type = "fixed",
|
||||||
|
fixed = {-0.3, -0.5, -0.3, 0.3, 0.35, 0.3}
|
||||||
|
},
|
||||||
|
groups = {snappy=2,dig_immediate=3,flammable=2,attached_node=1},
|
||||||
sounds = default.node_sound_leaves_defaults(),
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("watershed:dirt", {
|
minetest.register_node("watershed:dirt", {
|
||||||
description = "WS Dirt",
|
description = "Dirt",
|
||||||
tiles = {"default_dirt.png"},
|
tiles = {"default_dirt.png"},
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
groups = {crumbly=3,soil=1},
|
groups = {crumbly=3,soil=1},
|
||||||
@ -72,7 +172,7 @@ minetest.register_node("watershed:dirt", {
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("watershed:icydirt", {
|
minetest.register_node("watershed:icydirt", {
|
||||||
description = "WS Icy Dirt",
|
description = "Icy dirt",
|
||||||
tiles = {"watershed_icydirt.png"},
|
tiles = {"watershed_icydirt.png"},
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
groups = {crumbly=1},
|
groups = {crumbly=1},
|
||||||
@ -84,7 +184,7 @@ minetest.register_node("watershed:icydirt", {
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("watershed:grass", {
|
minetest.register_node("watershed:grass", {
|
||||||
description = "WS Grass",
|
description = "Grass",
|
||||||
tiles = {"default_grass.png", "default_dirt.png", "default_grass.png"},
|
tiles = {"default_grass.png", "default_dirt.png", "default_grass.png"},
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
groups = {crumbly=3,soil=1},
|
groups = {crumbly=3,soil=1},
|
||||||
@ -95,7 +195,7 @@ minetest.register_node("watershed:grass", {
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("watershed:redstone", {
|
minetest.register_node("watershed:redstone", {
|
||||||
description = "WS Red Stone",
|
description = "Red stone",
|
||||||
tiles = {"default_desert_stone.png"},
|
tiles = {"default_desert_stone.png"},
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
groups = {cracky=3},
|
groups = {cracky=3},
|
||||||
@ -104,7 +204,7 @@ minetest.register_node("watershed:redstone", {
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("watershed:redcobble", {
|
minetest.register_node("watershed:redcobble", {
|
||||||
description = "WS Red Cobblestone",
|
description = "Red cobblestone",
|
||||||
tiles = {"watershed_redcobble.png"},
|
tiles = {"watershed_redcobble.png"},
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
groups = {cracky=3, stone=2},
|
groups = {cracky=3, stone=2},
|
||||||
@ -112,7 +212,7 @@ minetest.register_node("watershed:redcobble", {
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("watershed:stone", {
|
minetest.register_node("watershed:stone", {
|
||||||
description = "WS Stone",
|
description = "Stone",
|
||||||
tiles = {"default_stone.png"},
|
tiles = {"default_stone.png"},
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
groups = {cracky=3},
|
groups = {cracky=3},
|
||||||
@ -121,7 +221,7 @@ minetest.register_node("watershed:stone", {
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("watershed:cactus", {
|
minetest.register_node("watershed:cactus", {
|
||||||
description = "WS Cactus",
|
description = "Cactus",
|
||||||
tiles = {"default_cactus_top.png", "default_cactus_top.png", "default_cactus_side.png"},
|
tiles = {"default_cactus_top.png", "default_cactus_top.png", "default_cactus_side.png"},
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
@ -132,7 +232,7 @@ minetest.register_node("watershed:cactus", {
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("watershed:goldengrass", {
|
minetest.register_node("watershed:goldengrass", {
|
||||||
description = "Golden Grass",
|
description = "Golden grass",
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
tiles = {"watershed_goldengrass.png"},
|
tiles = {"watershed_goldengrass.png"},
|
||||||
inventory_image = "watershed_goldengrass.png",
|
inventory_image = "watershed_goldengrass.png",
|
||||||
@ -150,7 +250,7 @@ minetest.register_node("watershed:goldengrass", {
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("watershed:drygrass", {
|
minetest.register_node("watershed:drygrass", {
|
||||||
description = "WS Dry Grass",
|
description = "Dry grass",
|
||||||
tiles = {"watershed_drygrass.png"},
|
tiles = {"watershed_drygrass.png"},
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
groups = {crumbly=1,soil=1},
|
groups = {crumbly=1,soil=1},
|
||||||
@ -161,7 +261,7 @@ minetest.register_node("watershed:drygrass", {
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("watershed:permafrost", {
|
minetest.register_node("watershed:permafrost", {
|
||||||
description = "WS Permafrost",
|
description = "Permafrost",
|
||||||
tiles = {"watershed_permafrost.png"},
|
tiles = {"watershed_permafrost.png"},
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
groups = {crumbly=1},
|
groups = {crumbly=1},
|
||||||
@ -170,7 +270,7 @@ minetest.register_node("watershed:permafrost", {
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("watershed:vine", {
|
minetest.register_node("watershed:vine", {
|
||||||
description = "WS Jungletree Vine",
|
description = "Jungletree vine",
|
||||||
drawtype = "airlike",
|
drawtype = "airlike",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
walkable = false,
|
walkable = false,
|
||||||
@ -183,7 +283,7 @@ minetest.register_node("watershed:vine", {
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("watershed:freshice", {
|
minetest.register_node("watershed:freshice", {
|
||||||
description = "WS Fresh Ice",
|
description = "Fresh ice",
|
||||||
tiles = {"watershed_freshice.png"},
|
tiles = {"watershed_freshice.png"},
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
@ -192,7 +292,7 @@ minetest.register_node("watershed:freshice", {
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("watershed:cloud", {
|
minetest.register_node("watershed:cloud", {
|
||||||
description = "WS Cloud",
|
description = "Cloud",
|
||||||
drawtype = "glasslike",
|
drawtype = "glasslike",
|
||||||
tiles = {"watershed_cloud.png"},
|
tiles = {"watershed_cloud.png"},
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
@ -206,7 +306,16 @@ minetest.register_node("watershed:cloud", {
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("watershed:luxore", {
|
minetest.register_node("watershed:luxore", {
|
||||||
description = "WS Lux Ore",
|
description = "Lux ore",
|
||||||
|
tiles = {"watershed_luxore.png"},
|
||||||
|
light_source = 14,
|
||||||
|
groups = {cracky=3},
|
||||||
|
drop = "watershed:luxcrystal 8",
|
||||||
|
sounds = default.node_sound_glass_defaults(),
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_node("watershed:luxoreoff", {
|
||||||
|
description = "Dark lux ore",
|
||||||
tiles = {"watershed_luxore.png"},
|
tiles = {"watershed_luxore.png"},
|
||||||
light_source = 14,
|
light_source = 14,
|
||||||
groups = {cracky=3},
|
groups = {cracky=3},
|
||||||
@ -215,7 +324,7 @@ minetest.register_node("watershed:luxore", {
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("watershed:light", {
|
minetest.register_node("watershed:light", {
|
||||||
description = "WS Light",
|
description = "Light",
|
||||||
tiles = {"watershed_light.png"},
|
tiles = {"watershed_light.png"},
|
||||||
light_source = 14,
|
light_source = 14,
|
||||||
groups = {cracky=3},
|
groups = {cracky=3},
|
||||||
@ -223,21 +332,23 @@ minetest.register_node("watershed:light", {
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("watershed:acaciawood", {
|
minetest.register_node("watershed:acaciawood", {
|
||||||
description = "WS Acacia Wood Planks",
|
description = "Acacia wood planks",
|
||||||
tiles = {"watershed_acaciawood.png"},
|
tiles = {"watershed_acaciawood.png"},
|
||||||
groups = {choppy=2,oddly_breakable_by_hand=2,flammable=3,wood=1},
|
groups = {choppy=2,oddly_breakable_by_hand=2,flammable=3,wood=1},
|
||||||
sounds = default.node_sound_wood_defaults(),
|
sounds = default.node_sound_wood_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("watershed:pinewood", {
|
minetest.register_node("watershed:pinewood", {
|
||||||
description = "WS Pine Wood Planks",
|
description = "Pine wood planks",
|
||||||
tiles = {"watershed_pinewood.png"},
|
tiles = {"watershed_pinewood.png"},
|
||||||
groups = {choppy=2,oddly_breakable_by_hand=2,flammable=3,wood=1},
|
groups = {choppy=2,oddly_breakable_by_hand=2,flammable=3,wood=1},
|
||||||
sounds = default.node_sound_wood_defaults(),
|
sounds = default.node_sound_wood_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
minetest.register_node("watershed:freshwater", {
|
minetest.register_node("watershed:freshwater", {
|
||||||
description = "WS Fresh Water Source",
|
description = "Freshwater source",
|
||||||
inventory_image = minetest.inventorycube("watershed_freshwater.png"),
|
inventory_image = minetest.inventorycube("watershed_freshwater.png"),
|
||||||
drawtype = "liquid",
|
drawtype = "liquid",
|
||||||
tiles = {
|
tiles = {
|
||||||
@ -275,7 +386,7 @@ minetest.register_node("watershed:freshwater", {
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("watershed:freshwaterflow", {
|
minetest.register_node("watershed:freshwaterflow", {
|
||||||
description = "WS Fresh Flowing Water",
|
description = "Flowing freshwater",
|
||||||
inventory_image = minetest.inventorycube("watershed_freshwater.png"),
|
inventory_image = minetest.inventorycube("watershed_freshwater.png"),
|
||||||
drawtype = "flowingliquid",
|
drawtype = "flowingliquid",
|
||||||
tiles = {"watershed_freshwater.png"},
|
tiles = {"watershed_freshwater.png"},
|
||||||
@ -312,7 +423,7 @@ minetest.register_node("watershed:freshwaterflow", {
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("watershed:lava", {
|
minetest.register_node("watershed:lava", {
|
||||||
description = "WS Lava Source",
|
description = "Lava source",
|
||||||
inventory_image = minetest.inventorycube("default_lava.png"),
|
inventory_image = minetest.inventorycube("default_lava.png"),
|
||||||
drawtype = "liquid",
|
drawtype = "liquid",
|
||||||
tiles = {
|
tiles = {
|
||||||
@ -347,7 +458,7 @@ minetest.register_node("watershed:lava", {
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("watershed:lavaflow", {
|
minetest.register_node("watershed:lavaflow", {
|
||||||
description = "WS Flowing Lava",
|
description = "Flowing lava",
|
||||||
inventory_image = minetest.inventorycube("default_lava.png"),
|
inventory_image = minetest.inventorycube("default_lava.png"),
|
||||||
drawtype = "flowingliquid",
|
drawtype = "flowingliquid",
|
||||||
tiles = {"default_lava.png"},
|
tiles = {"default_lava.png"},
|
||||||
@ -387,7 +498,7 @@ minetest.register_node("watershed:lavaflow", {
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("watershed:mixwater", {
|
minetest.register_node("watershed:mixwater", {
|
||||||
description = "WS Mixed Water Source",
|
description = "Mixed water source",
|
||||||
inventory_image = minetest.inventorycube("watershed_mixwater.png"),
|
inventory_image = minetest.inventorycube("watershed_mixwater.png"),
|
||||||
drawtype = "liquid",
|
drawtype = "liquid",
|
||||||
tiles = {
|
tiles = {
|
||||||
@ -425,7 +536,7 @@ minetest.register_node("watershed:mixwater", {
|
|||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("watershed:mixwaterflow", {
|
minetest.register_node("watershed:mixwaterflow", {
|
||||||
description = "WS Flowing Mixed Water",
|
description = "Flowing mixed water",
|
||||||
inventory_image = minetest.inventorycube("watershed_mixwater.png"),
|
inventory_image = minetest.inventorycube("watershed_mixwater.png"),
|
||||||
drawtype = "flowingliquid",
|
drawtype = "flowingliquid",
|
||||||
tiles = {"watershed_mixwater.png"},
|
tiles = {"watershed_mixwater.png"},
|
||||||
@ -464,7 +575,7 @@ minetest.register_node("watershed:mixwaterflow", {
|
|||||||
-- Items
|
-- Items
|
||||||
|
|
||||||
minetest.register_craftitem("watershed:luxcrystal", {
|
minetest.register_craftitem("watershed:luxcrystal", {
|
||||||
description = "WS Lux Crystal",
|
description = "Lux crystal",
|
||||||
inventory_image = "watershed_luxcrystal.png",
|
inventory_image = "watershed_luxcrystal.png",
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user