mirror of
https://github.com/FaceDeer/dfcaverns.git
synced 2024-11-04 17:40:37 +01:00
dbc5dd38a3
commit0a61781b99
Author: FaceDeer <derksenmobile@gmail.com> Date: Mon Aug 1 14:50:07 2022 -0600 add an additional check to ensure old timers don't cause inappropriate growth commit1d7b6010c3
Author: FaceDeer <derksenmobile@gmail.com> Date: Mon Aug 1 13:21:29 2022 -0600 stop timers when seeds are picked up commitc8fa25ccd7
Author: FaceDeer <derksenmobile@gmail.com> Date: Mon Aug 1 13:05:24 2022 -0600 fix replacements for dwarven syrup taffy recipe commit4de45bb6d7
Author: FaceDeer <derksenmobile@gmail.com> Date: Mon Aug 1 11:09:48 2022 -0600 account for some additional mod dependencies commit83ea06bbaa
Author: FaceDeer <derksenmobile@gmail.com> Date: Mon Aug 1 11:09:14 2022 -0600 update cooking recipes to be more specific. commit302da3ec51
Author: FaceDeer <derksenmobile@gmail.com> Date: Fri Jul 29 17:12:59 2022 -0600 add location logging for debugging purposes commit11667e184e
Author: FaceDeer <derksenmobile@gmail.com> Date: Sun Jul 24 16:54:21 2022 -0600 add checks for submods being present the df_trees and df_farming checks are likely redundant, but if primordial layers are disabled someone might not have df_primordial_items installed. commit5906308d87
Author: FaceDeer <derksenmobile@gmail.com> Date: Sun Jul 24 16:49:23 2022 -0600 add config settings for biome restrictions, vastly reduce copy and paste in code commite52820c282
Author: FaceDeer <derksenmobile@gmail.com> Date: Sat Jul 23 20:45:26 2022 -0600 add initial stab at growing conditions - biome restrictions for trees commit7b99556df9
Author: FaceDeer <derksenmobile@gmail.com> Date: Sat Jul 23 12:08:41 2022 -0600 adding biome API. Not yet tested. commitbf82b3b3fe
Author: FaceDeer <derksenmobile@gmail.com> Date: Fri Jul 22 21:22:37 2022 -0600 added stubs for growth permission for farming plants commit46765df3ef
Author: FaceDeer <derksenmobile@gmail.com> Date: Fri Jul 22 18:36:45 2022 -0600 initial work for restricted plant growth. split out growth conditions for trees, and reworked torchspine to not use ABMs while I was at it.
101 lines
2.9 KiB
Lua
101 lines
2.9 KiB
Lua
local S = minetest.get_translator(minetest.get_current_modname())
|
|
|
|
local quarry_grow_time = df_farming.config.plant_growth_time * df_farming.config.quarry_bush_delay_multiplier / 5
|
|
|
|
local register_quarry_bush = function(number)
|
|
local name = "df_farming:quarry_bush_"..tostring(number)
|
|
local def = {
|
|
description = S("Quarry Bush"),
|
|
_doc_items_longdesc = df_farming.doc.quarry_bush_desc,
|
|
_doc_items_usagehelp = df_farming.doc.quarry_bush_usage,
|
|
drawtype = "plantlike",
|
|
paramtype2 = "meshoptions",
|
|
place_param2 = 4,
|
|
tiles = {"dfcaverns_quarry_bush_"..tostring(number)..".png"},
|
|
inventory_image = "dfcaverns_quarry_bush_"..tostring(number)..".png",
|
|
paramtype = "light",
|
|
walkable = false,
|
|
buildable_to = true,
|
|
is_ground_content = false,
|
|
floodable = true,
|
|
groups = {snappy = 3, flammable = 2, plant = 1, not_in_creative_inventory = 1, attached_node = 1, light_sensitive_fungus = 11, flora = 1},
|
|
sounds = df_farming.sounds.leaves,
|
|
selection_box = {
|
|
type = "fixed",
|
|
fixed = {
|
|
{-8/16, -8/16, -8/16, 8/16, -8/16 + (16/5)*number/16, 8/16},
|
|
},
|
|
},
|
|
|
|
on_timer = function(pos, elapsed)
|
|
df_farming.grow_underground_plant(pos, name, elapsed)
|
|
end,
|
|
|
|
drop = {
|
|
max_items = 2,
|
|
items = {
|
|
{
|
|
items = {'df_farming:quarry_bush_seed 2', 'df_farming:quarry_bush_leaves 2'},
|
|
rarity = 6-number,
|
|
},
|
|
{
|
|
items = {'df_farming:quarry_bush_seed 1', 'df_farming:quarry_bush_leaves'},
|
|
rarity = 6-number,
|
|
},
|
|
{
|
|
items = {'df_farming:quarry_bush_seed'},
|
|
rarity = 6-number,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
if number < 5 then
|
|
def._dfcaverns_next_stage_time = quarry_grow_time
|
|
def._dfcaverns_next_stage = "df_farming:quarry_bush_"..tostring(number+1)
|
|
end
|
|
|
|
minetest.register_node(name, def)
|
|
end
|
|
|
|
for i = 1,5 do
|
|
register_quarry_bush(i)
|
|
end
|
|
|
|
local place_list = {
|
|
minetest.get_content_id("df_farming:quarry_bush_1"),
|
|
minetest.get_content_id("df_farming:quarry_bush_2"),
|
|
minetest.get_content_id("df_farming:quarry_bush_3"),
|
|
minetest.get_content_id("df_farming:quarry_bush_4"),
|
|
minetest.get_content_id("df_farming:quarry_bush_5"),
|
|
}
|
|
-- doesn't set the timer running, so plants placed by this method won't grow
|
|
df_farming.spawn_quarry_bush_vm = function(vi, area, data, param2_data)
|
|
data[vi] = place_list[math.random(1,5)]
|
|
param2_data[vi] = 4
|
|
end
|
|
|
|
df_farming.register_seed(
|
|
"quarry_bush_seed",
|
|
S("Rock Nuts"),
|
|
"dfcaverns_rock_nuts.png",
|
|
"df_farming:quarry_bush_1",
|
|
quarry_grow_time,
|
|
df_farming.doc.quarry_bush_desc,
|
|
df_farming.doc.quarry_bush_usage
|
|
)
|
|
|
|
minetest.register_craftitem("df_farming:quarry_bush_leaves", {
|
|
description = S("Quarry Bush Leaves"),
|
|
_doc_items_longdesc = df_farming.doc.quarry_bush_leaves_desc,
|
|
_doc_items_usagehelp = df_farming.doc.quarry_bush_leaves_usage,
|
|
inventory_image = "dfcaverns_quarry_bush_leaves.png",
|
|
groups = {dfcaverns_cookable = 1},
|
|
stack_max = 99,
|
|
})
|
|
minetest.register_craft({
|
|
type = "fuel",
|
|
recipe = "df_farming:quarry_bush_leaves",
|
|
burntime = 4
|
|
})
|