VoxeLibre/mods/farming/soil.lua

45 lines
1.2 KiB
Lua
Raw Normal View History

2015-06-29 19:55:56 +02:00
minetest.register_node("farming:soil", {
tiles = {"farming_soil.png", "default_dirt.png", "default_dirt.png", "default_dirt.png", "default_dirt.png", "default_dirt.png"},
2017-01-08 03:05:41 +01:00
description = "Farmland",
2015-06-29 19:55:56 +02:00
drop = "default:dirt",
drawtype = "nodebox",
paramtype = "light",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, 0.4, 0.5},
2015-06-29 19:55:56 +02:00
}
},
groups = {crumbly=3, not_in_creative_inventory=1,soil=2},
2017-01-04 22:59:18 +01:00
sounds = default.node_sound_dirt_defaults(),
2015-06-29 19:55:56 +02:00
})
minetest.register_node("farming:soil_wet", {
tiles = {"farming_soil_wet.png", "default_dirt.png", "default_dirt.png", "default_dirt.png", "default_dirt.png", "default_dirt.png"},
2017-01-08 03:05:41 +01:00
description = "Hydrated Farmland",
2015-06-29 19:55:56 +02:00
drop = "default:dirt",
drawtype = "nodebox",
paramtype = "light",
node_box = {
type = "fixed",
fixed = {
{-0.5, -0.5, -0.5, 0.5, 0.4, 0.5},
2015-06-29 19:55:56 +02:00
}
},
groups = {crumbly=3, not_in_creative_inventory=1,soil=3},
2017-01-04 22:59:18 +01:00
sounds = default.node_sound_dirt_defaults(),
2015-06-29 19:55:56 +02:00
})
minetest.register_abm({
nodenames = {"farming:soil"},
interval = 15,
chance = 3,
action = function(pos, node)
if minetest.env:find_node_near(pos, 3, {"default:water_source", "default:water_flowing"}) then
node.name = "farming:soil_wet"
minetest.env:set_node(pos, node)
end
end,
})