MineClone2/mods/ITEMS/mcl_farming/init.lua

33 lines
1.0 KiB
Lua
Raw Normal View History

2017-01-31 13:35:59 +02:00
mcl_farming = {}
2015-06-29 20:55:56 +03:00
-- IMPORTANT API AND HELPER FUNCTIONS --
-- Contain functions for planting seed, addind plant growth and gourds (melon/pumpkin-like)
dofile(minetest.get_modpath("mcl_farming").."/shared_functions.lua")
2015-06-29 20:55:56 +03:00
-- ========= SOIL =========
2017-01-31 13:35:59 +02:00
dofile(minetest.get_modpath("mcl_farming").."/soil.lua")
2015-06-29 20:55:56 +03:00
-- ========= HOES =========
2017-01-31 13:35:59 +02:00
dofile(minetest.get_modpath("mcl_farming").."/hoes.lua")
2015-06-29 20:55:56 +03:00
-- ========= WHEAT =========
2017-01-31 13:35:59 +02:00
dofile(minetest.get_modpath("mcl_farming").."/wheat.lua")
2015-06-29 20:55:56 +03:00
-- ======= PUMPKIN =========
2017-01-31 13:35:59 +02:00
dofile(minetest.get_modpath("mcl_farming").."/pumpkin.lua")
2015-06-29 20:55:56 +03:00
-- ========= MELON =========
2017-01-31 13:35:59 +02:00
dofile(minetest.get_modpath("mcl_farming").."/melon.lua")
2015-06-29 20:55:56 +03:00
-- ========= CARROT =========
2017-01-31 13:35:59 +02:00
dofile(minetest.get_modpath("mcl_farming").."/carrots.lua")
2015-06-29 20:55:56 +03:00
-- ========= POTATOES =========
2017-01-31 13:35:59 +02:00
dofile(minetest.get_modpath("mcl_farming").."/potatoes.lua")
2015-06-29 20:55:56 +03:00
2017-02-01 14:27:49 +02:00
-- ========= BEETROOT =========
2017-02-06 19:29:13 +02:00
dofile(minetest.get_modpath("mcl_farming").."/beetroot.lua")
-- ========= SWEET BERRY =========
dofile(minetest.get_modpath("mcl_farming").."/sweet_berry.lua")