Mineclonia/mods/ITEMS/mcl_farming/soil.lua

52 lines
1.9 KiB
Lua
Raw Normal View History

2017-01-31 11:35:59 +00:00
minetest.register_node("mcl_farming:soil", {
2015-06-29 17:55:56 +00:00
tiles = {"farming_soil.png", "default_dirt.png", "default_dirt.png", "default_dirt.png", "default_dirt.png", "default_dirt.png"},
2017-01-08 02:05:41 +00:00
description = "Farmland",
_doc_items_longdesc = "Farmland is used for farming, a necessary surface to plant crops. It is created when a hoe is used on dirt or a similar block. Plants are able to grow on farmland, but slowly. Farmland will become hydrated farmland (on which plants grow faster) when it rains or a water source is nearby.",
2017-01-31 22:32:56 +00:00
drop = "mcl_core:dirt",
2015-06-29 17:55:56 +00:00
drawtype = "nodebox",
paramtype = "light",
node_box = {
type = "fixed",
fixed = {
2017-01-08 02:12:36 +00:00
-- 15/16 of the normal height
{-0.5, -0.5, -0.5, 0.5, 0.4375, 0.5},
2015-06-29 17:55:56 +00:00
}
},
2017-02-27 00:26:07 +00:00
groups = {handy=1,shovely=1, not_in_creative_inventory=1, soil=2, soil_sapling=1 },
sounds = mcl_sounds.node_sound_dirt_defaults(),
_mcl_blast_resistance = 3,
2017-03-20 18:53:14 +00:00
_mcl_hardness = 0.6,
2015-06-29 17:55:56 +00:00
})
2017-01-31 11:35:59 +00:00
minetest.register_node("mcl_farming:soil_wet", {
2015-06-29 17:55:56 +00:00
tiles = {"farming_soil_wet.png", "default_dirt.png", "default_dirt.png", "default_dirt.png", "default_dirt.png", "default_dirt.png"},
2017-01-08 02:05:41 +00:00
description = "Hydrated Farmland",
_doc_items_longdesc = "Hydrated farmland is used in farming, this is where you can plant and grow some plants. It is created when farmlands is under rain or near water.",
2017-01-31 22:32:56 +00:00
drop = "mcl_core:dirt",
2015-06-29 17:55:56 +00:00
drawtype = "nodebox",
paramtype = "light",
node_box = {
type = "fixed",
fixed = {
2017-01-08 02:12:36 +00:00
{-0.5, -0.5, -0.5, 0.5, 0.4375, 0.5},
2015-06-29 17:55:56 +00:00
}
},
2017-02-27 00:26:07 +00:00
groups = {handy=1,shovely=1, not_in_creative_inventory=1, soil=3, soil_sapling=1 },
sounds = mcl_sounds.node_sound_dirt_defaults(),
_mcl_blast_resistance = 3,
2017-03-20 18:53:14 +00:00
_mcl_hardness = 0.6,
2015-06-29 17:55:56 +00:00
})
minetest.register_abm({
2017-01-31 11:35:59 +00:00
nodenames = {"mcl_farming:soil"},
2015-06-29 17:55:56 +00:00
interval = 15,
chance = 3,
action = function(pos, node)
if minetest.find_node_near(pos, 4, {"mcl_core:water_source", "mcl_core:water_flowing"}) then
2017-01-31 11:35:59 +00:00
node.name = "mcl_farming:soil_wet"
minetest.set_node(pos, node)
2015-06-29 17:55:56 +00:00
end
end,
})