2017-03-08 07:50:58 +01:00
|
|
|
-- internationalization boilerplate
|
|
|
|
local MP = minetest.get_modpath(minetest.get_current_modname())
|
|
|
|
local S, NS = dofile(MP.."/intllib.lua")
|
|
|
|
|
|
|
|
--stem
|
2018-12-31 19:46:27 +01:00
|
|
|
minetest.register_node("df_trees:goblin_cap_stem", {
|
2017-03-08 07:50:58 +01:00
|
|
|
description = S("Goblin Cap Stem"),
|
2018-12-31 19:46:27 +01:00
|
|
|
_doc_items_longdesc = df_trees.doc.goblin_cap_desc,
|
|
|
|
_doc_items_usagehelp = df_trees.doc.goblin_cap_usage,
|
2017-03-08 07:50:58 +01:00
|
|
|
tiles = {"dfcaverns_goblin_cap_stem.png"},
|
|
|
|
is_ground_content = true,
|
Small stuff (#8)
* cave pearls and spindleshrooms (name subject to change) now are things. Not in mapgen yet.
* add the wandering "gas wisp" to light up some of the gas-filled caverns
* make wisps rarely spawned by gas explosions
* revamp spindlestems into a sort of mineral detector, add glowing extract bottles
* optimize pngs
* add gas wisps to mapgen
* add spindlestems to cavern level 1, most level 1 warrens are now lit up
* update internal names, adjust mineral detection range
* add cave pearls to some level 2 warrens and tunnels
* switch experimental simplecrafting_lib support to crafting mod
* Pearls don't grow on falling nodes
* put spindlestems with goblin caps, make them always grow red when near those
* bunch of documentation
* add castle coral to replace cave coral, which has been repurposed into column decoration
* documentation for cave coral, update some locale text
* add a recipe for cooking oil into paraffin
* add old bones to the underworld
* MIT license for bones_loot
* also cook black cap gills into paraffin, they're oily
* add salt crystals to the bloodthorn caverns, illuminating the floor
* documentation for salt crystals
* auto-generate minetestmapper colors.
need to update the spindlestem colours manually
* add spindlestem to fungiwood caverns too, and increase warren coverage
* in anticipation of eventually adding stuff below the Slade, making glowing pit erosion self-limiting.
* add a bit of displacement to the underside of the slade layer
* Unique images and names for cooking recipes.
* revamp bones loot
* add softer footsteps for some fungus types
* update mapgen_helper
* update cave coral screenshot
* mention glowing salts in bloodthorn caverns
2019-08-19 05:20:07 +02:00
|
|
|
groups = {tree = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2, goblin_cap = 1},
|
|
|
|
sounds = df_trees.node_sound_tree_soft_fungus_defaults(),
|
2017-03-08 07:50:58 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
--cap
|
2018-12-31 19:46:27 +01:00
|
|
|
minetest.register_node("df_trees:goblin_cap", {
|
2017-03-08 07:50:58 +01:00
|
|
|
description = S("Goblin Cap"),
|
2018-12-31 19:46:27 +01:00
|
|
|
_doc_items_longdesc = df_trees.doc.goblin_cap_desc,
|
|
|
|
_doc_items_usagehelp = df_trees.doc.goblin_cap_usage,
|
2017-03-08 07:50:58 +01:00
|
|
|
tiles = {"dfcaverns_goblin_cap.png"},
|
|
|
|
is_ground_content = true,
|
Small stuff (#8)
* cave pearls and spindleshrooms (name subject to change) now are things. Not in mapgen yet.
* add the wandering "gas wisp" to light up some of the gas-filled caverns
* make wisps rarely spawned by gas explosions
* revamp spindlestems into a sort of mineral detector, add glowing extract bottles
* optimize pngs
* add gas wisps to mapgen
* add spindlestems to cavern level 1, most level 1 warrens are now lit up
* update internal names, adjust mineral detection range
* add cave pearls to some level 2 warrens and tunnels
* switch experimental simplecrafting_lib support to crafting mod
* Pearls don't grow on falling nodes
* put spindlestems with goblin caps, make them always grow red when near those
* bunch of documentation
* add castle coral to replace cave coral, which has been repurposed into column decoration
* documentation for cave coral, update some locale text
* add a recipe for cooking oil into paraffin
* add old bones to the underworld
* MIT license for bones_loot
* also cook black cap gills into paraffin, they're oily
* add salt crystals to the bloodthorn caverns, illuminating the floor
* documentation for salt crystals
* auto-generate minetestmapper colors.
need to update the spindlestem colours manually
* add spindlestem to fungiwood caverns too, and increase warren coverage
* in anticipation of eventually adding stuff below the Slade, making glowing pit erosion self-limiting.
* add a bit of displacement to the underside of the slade layer
* Unique images and names for cooking recipes.
* revamp bones loot
* add softer footsteps for some fungus types
* update mapgen_helper
* update cave coral screenshot
* mention glowing salts in bloodthorn caverns
2019-08-19 05:20:07 +02:00
|
|
|
groups = {tree = 1, choppy = 2, oddly_breakable_by_hand = 1, flammable = 2, goblin_cap = 1},
|
|
|
|
sounds = df_trees.node_sound_tree_soft_fungus_defaults(),
|
2017-03-08 07:50:58 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
--gills
|
2018-12-31 19:46:27 +01:00
|
|
|
minetest.register_node("df_trees:goblin_cap_gills", {
|
2017-03-08 07:50:58 +01:00
|
|
|
description = S("Goblin Cap Gills"),
|
2018-12-31 19:46:27 +01:00
|
|
|
_doc_items_longdesc = df_trees.doc.goblin_cap_desc,
|
|
|
|
_doc_items_usagehelp = df_trees.doc.goblin_cap_usage,
|
2017-03-08 07:50:58 +01:00
|
|
|
tiles = {"dfcaverns_goblin_cap_gills.png"},
|
|
|
|
is_ground_content = true,
|
Small stuff (#8)
* cave pearls and spindleshrooms (name subject to change) now are things. Not in mapgen yet.
* add the wandering "gas wisp" to light up some of the gas-filled caverns
* make wisps rarely spawned by gas explosions
* revamp spindlestems into a sort of mineral detector, add glowing extract bottles
* optimize pngs
* add gas wisps to mapgen
* add spindlestems to cavern level 1, most level 1 warrens are now lit up
* update internal names, adjust mineral detection range
* add cave pearls to some level 2 warrens and tunnels
* switch experimental simplecrafting_lib support to crafting mod
* Pearls don't grow on falling nodes
* put spindlestems with goblin caps, make them always grow red when near those
* bunch of documentation
* add castle coral to replace cave coral, which has been repurposed into column decoration
* documentation for cave coral, update some locale text
* add a recipe for cooking oil into paraffin
* add old bones to the underworld
* MIT license for bones_loot
* also cook black cap gills into paraffin, they're oily
* add salt crystals to the bloodthorn caverns, illuminating the floor
* documentation for salt crystals
* auto-generate minetestmapper colors.
need to update the spindlestem colours manually
* add spindlestem to fungiwood caverns too, and increase warren coverage
* in anticipation of eventually adding stuff below the Slade, making glowing pit erosion self-limiting.
* add a bit of displacement to the underside of the slade layer
* Unique images and names for cooking recipes.
* revamp bones loot
* add softer footsteps for some fungus types
* update mapgen_helper
* update cave coral screenshot
* mention glowing salts in bloodthorn caverns
2019-08-19 05:20:07 +02:00
|
|
|
groups = {snappy = 3, leafdecay = 3, flammable = 2, leaves = 1, goblin_cap = 1},
|
2017-03-08 07:50:58 +01:00
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
|
|
|
drawtype = "plantlike",
|
|
|
|
paramtype = "light",
|
|
|
|
drop = {
|
|
|
|
max_items = 1,
|
|
|
|
items = {
|
|
|
|
{
|
2018-12-31 19:46:27 +01:00
|
|
|
items = {'df_trees:goblin_cap_sapling'},
|
2017-03-08 07:50:58 +01:00
|
|
|
rarity = 15,
|
|
|
|
},
|
|
|
|
{
|
2018-12-31 19:46:27 +01:00
|
|
|
items = {'df_trees:goblin_cap_gills'},
|
2017-03-08 07:50:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2017-03-23 06:41:34 +01:00
|
|
|
after_place_node = default.after_place_leaves,
|
2017-03-08 07:50:58 +01:00
|
|
|
})
|
|
|
|
|
2017-03-23 06:41:34 +01:00
|
|
|
if default.register_leafdecay then -- default.register_leafdecay is very new, remove this check some time after 0.4.16 is released
|
|
|
|
default.register_leafdecay({
|
2018-12-31 19:46:27 +01:00
|
|
|
trunks = {"df_trees:goblin_cap"}, -- don't need stem nodes here
|
|
|
|
leaves = {"df_trees:goblin_cap_gills"},
|
2017-03-23 06:41:34 +01:00
|
|
|
radius = 1,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2017-03-21 08:53:04 +01:00
|
|
|
--Wood
|
|
|
|
minetest.register_craft({
|
2018-12-31 19:46:27 +01:00
|
|
|
output = 'df_trees:goblin_cap_wood 4',
|
2017-03-21 08:53:04 +01:00
|
|
|
recipe = {
|
2018-12-31 19:46:27 +01:00
|
|
|
{'df_trees:goblin_cap'},
|
2017-03-21 08:53:04 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
2018-12-31 19:46:27 +01:00
|
|
|
output = 'df_trees:goblin_cap_stem_wood 4',
|
2017-03-21 08:53:04 +01:00
|
|
|
recipe = {
|
2018-12-31 19:46:27 +01:00
|
|
|
{'df_trees:goblin_cap_stem'},
|
2017-03-21 08:53:04 +01:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2018-12-31 19:46:27 +01:00
|
|
|
minetest.register_node("df_trees:goblin_cap_wood", {
|
2017-03-21 08:53:04 +01:00
|
|
|
description = S("Goblin Cap Planks"),
|
2018-12-31 19:46:27 +01:00
|
|
|
_doc_items_longdesc = df_trees.doc.goblin_cap_desc,
|
|
|
|
_doc_items_usagehelp = df_trees.doc.goblin_cap_usage,
|
2017-03-21 08:53:04 +01:00
|
|
|
paramtype2 = "facedir",
|
|
|
|
place_param2 = 0,
|
2017-03-22 05:16:52 +01:00
|
|
|
tiles = {"dfcaverns_goblin_cap_wood.png"},
|
2017-03-21 08:53:04 +01:00
|
|
|
is_ground_content = false,
|
|
|
|
groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 2, wood = 1},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
})
|
|
|
|
|
2018-12-31 19:46:27 +01:00
|
|
|
minetest.register_node("df_trees:goblin_cap_stem_wood", {
|
2017-03-22 05:16:52 +01:00
|
|
|
description = S("Goblin Cap Stem Planks"),
|
2018-12-31 19:46:27 +01:00
|
|
|
_doc_items_longdesc = df_trees.doc.goblin_cap_desc,
|
|
|
|
_doc_items_usagehelp = df_trees.doc.goblin_cap_usage,
|
2017-03-22 05:16:52 +01:00
|
|
|
paramtype2 = "facedir",
|
|
|
|
place_param2 = 0,
|
|
|
|
tiles = {"dfcaverns_goblin_cap_stem_wood.png"},
|
|
|
|
is_ground_content = false,
|
|
|
|
groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 2, wood = 1},
|
|
|
|
sounds = default.node_sound_wood_defaults(),
|
|
|
|
})
|
2017-03-21 08:53:04 +01:00
|
|
|
|
2018-12-31 19:46:27 +01:00
|
|
|
df_trees.register_all_stairs("goblin_cap_wood")
|
|
|
|
df_trees.register_all_stairs("goblin_cap_stem_wood")
|
|
|
|
|
2017-03-21 08:53:04 +01:00
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
2018-12-31 19:46:27 +01:00
|
|
|
recipe = "df_trees:goblin_cap_wood",
|
2017-03-22 05:16:52 +01:00
|
|
|
burntime = 12,
|
|
|
|
})
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
2018-12-31 19:46:27 +01:00
|
|
|
recipe = "df_trees:goblin_cap_stem_wood",
|
2017-03-22 05:16:52 +01:00
|
|
|
burntime = 7,
|
2017-03-21 08:53:04 +01:00
|
|
|
})
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
2018-12-31 19:46:27 +01:00
|
|
|
recipe = "df_trees:goblin_cap",
|
2017-03-21 08:53:04 +01:00
|
|
|
burntime = 40,
|
|
|
|
})
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
2018-12-31 19:46:27 +01:00
|
|
|
recipe = "df_trees:goblin_cap_stem",
|
2017-03-22 05:16:52 +01:00
|
|
|
burntime = 30,
|
2017-03-21 08:53:04 +01:00
|
|
|
})
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
2018-12-31 19:46:27 +01:00
|
|
|
recipe = "df_trees:goblin_cap_gills",
|
2017-03-21 08:53:04 +01:00
|
|
|
burntime = 2,
|
|
|
|
})
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "fuel",
|
2018-12-31 19:46:27 +01:00
|
|
|
recipe = "df_trees:goblin_cap_sapling",
|
2017-03-21 08:53:04 +01:00
|
|
|
burntime = 2,
|
|
|
|
})
|
|
|
|
|
2017-03-08 07:50:58 +01:00
|
|
|
-- sapling
|
2018-12-31 19:46:27 +01:00
|
|
|
minetest.register_node("df_trees:goblin_cap_sapling", {
|
2017-03-08 07:50:58 +01:00
|
|
|
description = S("Goblin Cap Spawn"),
|
2018-12-31 19:46:27 +01:00
|
|
|
_doc_items_longdesc = df_trees.doc.goblin_cap_desc,
|
|
|
|
_doc_items_usagehelp = df_trees.doc.goblin_cap_usage,
|
2017-03-08 07:50:58 +01:00
|
|
|
drawtype = "plantlike",
|
|
|
|
visual_scale = 1.0,
|
2017-03-11 23:00:00 +01:00
|
|
|
tiles = {"dfcaverns_goblin_cap_sapling.png"},
|
|
|
|
inventory_image = "dfcaverns_goblin_cap_sapling.png",
|
|
|
|
wield_image = "dfcaverns_goblin_cap_sapling.png",
|
2017-03-08 07:50:58 +01:00
|
|
|
paramtype = "light",
|
|
|
|
sunlight_propagates = true,
|
|
|
|
walkable = false,
|
2018-12-31 19:46:27 +01:00
|
|
|
floodable = true,
|
2017-03-08 07:50:58 +01:00
|
|
|
selection_box = {
|
|
|
|
type = "fixed",
|
|
|
|
fixed = {-4 / 16, -0.5, -4 / 16, 4 / 16, 7 / 16, 4 / 16}
|
|
|
|
},
|
|
|
|
groups = {snappy = 2, dig_immediate = 3, flammable = 2,
|
2017-03-15 04:35:08 +01:00
|
|
|
attached_node = 1, sapling = 1, light_sensitive_fungus = 11},
|
2017-03-08 07:50:58 +01:00
|
|
|
sounds = default.node_sound_leaves_defaults(),
|
|
|
|
|
|
|
|
on_construct = function(pos)
|
Small stuff (#8)
* cave pearls and spindleshrooms (name subject to change) now are things. Not in mapgen yet.
* add the wandering "gas wisp" to light up some of the gas-filled caverns
* make wisps rarely spawned by gas explosions
* revamp spindlestems into a sort of mineral detector, add glowing extract bottles
* optimize pngs
* add gas wisps to mapgen
* add spindlestems to cavern level 1, most level 1 warrens are now lit up
* update internal names, adjust mineral detection range
* add cave pearls to some level 2 warrens and tunnels
* switch experimental simplecrafting_lib support to crafting mod
* Pearls don't grow on falling nodes
* put spindlestems with goblin caps, make them always grow red when near those
* bunch of documentation
* add castle coral to replace cave coral, which has been repurposed into column decoration
* documentation for cave coral, update some locale text
* add a recipe for cooking oil into paraffin
* add old bones to the underworld
* MIT license for bones_loot
* also cook black cap gills into paraffin, they're oily
* add salt crystals to the bloodthorn caverns, illuminating the floor
* documentation for salt crystals
* auto-generate minetestmapper colors.
need to update the spindlestem colours manually
* add spindlestem to fungiwood caverns too, and increase warren coverage
* in anticipation of eventually adding stuff below the Slade, making glowing pit erosion self-limiting.
* add a bit of displacement to the underside of the slade layer
* Unique images and names for cooking recipes.
* revamp bones loot
* add softer footsteps for some fungus types
* update mapgen_helper
* update cave coral screenshot
* mention glowing salts in bloodthorn caverns
2019-08-19 05:20:07 +02:00
|
|
|
local below_node = minetest.get_node(vector.add(pos, {x=0,y=-1,z=0}))
|
|
|
|
if minetest.get_item_group(below_node.name, "soil") > 0 then
|
|
|
|
minetest.get_node_timer(pos):start(math.random(
|
|
|
|
df_trees.config.goblin_cap_delay_multiplier*df_trees.config.tree_min_growth_delay,
|
|
|
|
df_trees.config.goblin_cap_delay_multiplier*df_trees.config.tree_max_growth_delay))
|
|
|
|
end
|
2017-03-08 07:50:58 +01:00
|
|
|
end,
|
|
|
|
|
|
|
|
on_timer = function(pos)
|
|
|
|
minetest.set_node(pos, {name="air"})
|
2018-12-31 19:46:27 +01:00
|
|
|
df_trees.spawn_goblin_cap(pos)
|
2017-03-08 07:50:58 +01:00
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
2018-12-31 19:46:27 +01:00
|
|
|
local c_stem = minetest.get_content_id("df_trees:goblin_cap_stem")
|
|
|
|
local c_cap = minetest.get_content_id("df_trees:goblin_cap")
|
|
|
|
local c_gills = minetest.get_content_id("df_trees:goblin_cap_gills")
|
2017-03-14 06:40:37 +01:00
|
|
|
|
2018-12-31 19:46:27 +01:00
|
|
|
df_trees.spawn_goblin_cap = function(pos)
|
2017-03-08 07:50:58 +01:00
|
|
|
local x, y, z = pos.x, pos.y, pos.z
|
|
|
|
local stem_height = math.random(1,3)
|
|
|
|
local cap_radius = math.random(3,6)
|
|
|
|
local maxy = y + stem_height + 3
|
|
|
|
|
|
|
|
local vm = minetest.get_voxel_manip()
|
|
|
|
local minp, maxp = vm:read_from_map(
|
|
|
|
{x = x - cap_radius, y = y, z = z - cap_radius},
|
|
|
|
{x = x + cap_radius, y = maxy + 3, z = z + cap_radius}
|
|
|
|
)
|
|
|
|
local area = VoxelArea:new({MinEdge = minp, MaxEdge = maxp})
|
|
|
|
local data = vm:get_data()
|
|
|
|
|
2018-12-31 19:46:27 +01:00
|
|
|
subterrane.giant_mushroom(area:indexp(pos), area, data, c_stem, c_cap, c_gills, stem_height, cap_radius)
|
2017-03-08 07:50:58 +01:00
|
|
|
|
|
|
|
vm:set_data(data)
|
|
|
|
vm:write_to_map()
|
|
|
|
vm:update_map()
|
2017-03-14 06:40:37 +01:00
|
|
|
end
|
|
|
|
|
2018-12-31 19:46:27 +01:00
|
|
|
df_trees.spawn_goblin_cap_vm = function(vi, area, data)
|
2017-03-14 06:40:37 +01:00
|
|
|
local stem_height = math.random(1,3)
|
|
|
|
local cap_radius = math.random(3,6)
|
2018-12-31 19:46:27 +01:00
|
|
|
subterrane.giant_mushroom(vi, area, data, c_stem, c_cap, c_gills, stem_height, cap_radius)
|
2017-03-08 07:50:58 +01:00
|
|
|
end
|