1
0
mirror of https://github.com/minetest/minetest_game.git synced 2025-07-16 04:30:22 +02:00

Add farming mod

This commit is contained in:
PilzAdam
2012-09-03 15:26:49 +02:00
parent 4efba586ad
commit faa676fd0c
97 changed files with 1839 additions and 0 deletions

25
mods/farming/papyrus.lua Normal file
View File

@ -0,0 +1,25 @@
minetest.register_abm({
nodenames = {"default:papyrus"},
interval = 50,
chance = 20,
action = function(pos, node)
pos.y = pos.y-1
local name = minetest.env:get_node(pos).name
if name == "default:dirt" or name == "default:dirt_with_grass" then
if minetest.env:find_node_near(pos, 3, {"default:water_source", "default:water_flowing"}) == nil then
return
end
pos.y = pos.y+1
local height = 0
while minetest.env:get_node(pos).name == "default:papyrus" do
height = height+1
pos.y = pos.y+1
end
if height < 4 then
if minetest.env:get_node(pos).name == "air" then
minetest.env:set_node(pos, node)
end
end
end
end
})