forked from VoxeLibre/VoxeLibre
33 lines
1.0 KiB
Lua
33 lines
1.0 KiB
Lua
mcl_farming = {}
|
|
|
|
-- 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")
|
|
|
|
-- ========= SOIL =========
|
|
dofile(minetest.get_modpath("mcl_farming").."/soil.lua")
|
|
|
|
-- ========= HOES =========
|
|
dofile(minetest.get_modpath("mcl_farming").."/hoes.lua")
|
|
|
|
-- ========= WHEAT =========
|
|
dofile(minetest.get_modpath("mcl_farming").."/wheat.lua")
|
|
|
|
-- ======= PUMPKIN =========
|
|
dofile(minetest.get_modpath("mcl_farming").."/pumpkin.lua")
|
|
|
|
-- ========= MELON =========
|
|
dofile(minetest.get_modpath("mcl_farming").."/melon.lua")
|
|
|
|
-- ========= CARROT =========
|
|
dofile(minetest.get_modpath("mcl_farming").."/carrots.lua")
|
|
|
|
-- ========= POTATOES =========
|
|
dofile(minetest.get_modpath("mcl_farming").."/potatoes.lua")
|
|
|
|
-- ========= BEETROOT =========
|
|
dofile(minetest.get_modpath("mcl_farming").."/beetroot.lua")
|
|
|
|
-- ========= SWEET BERRY =========
|
|
dofile(minetest.get_modpath("mcl_farming").."/sweet_berry.lua")
|