30 lines
573 B
Lua
30 lines
573 B
Lua
rp_mobs = {}
|
|
|
|
local path = minetest.get_modpath("rp_mobs")
|
|
|
|
-- Helper data structure for tasks
|
|
dofile(path.."/doubly_linked_list.lua")
|
|
|
|
-- Other internal helper stuff
|
|
dofile(path.."/internal.lua")
|
|
|
|
-- Mob API
|
|
|
|
dofile(path.."/api.lua")
|
|
dofile(path.."/task_templates.lua")
|
|
dofile(path.."/feed_tame.lua")
|
|
dofile(path.."/child.lua")
|
|
dofile(path.."/capture.lua")
|
|
dofile(path.."/environment.lua")
|
|
|
|
-- Mob items and crafts
|
|
|
|
dofile(path.."/crafts.lua")
|
|
|
|
-- Achievements
|
|
|
|
dofile(path.."/achievements.lua")
|
|
|
|
-- 'Gonna Feed 'em All' achievement
|
|
dofile(path.."/achievements_feed.lua")
|