2018-05-31 19:32:26 +03:00
|
|
|
|
|
|
|
local path = minetest.get_modpath(minetest.get_current_modname())
|
|
|
|
|
|
|
|
-- Mob API
|
|
|
|
dofile(path .. "/api.lua")
|
|
|
|
|
2021-04-08 09:07:15 +03:00
|
|
|
-- Spawning Algorithm
|
|
|
|
dofile(path .. "/spawning.lua")
|
|
|
|
|
2018-05-31 19:32:26 +03:00
|
|
|
-- Rideable Mobs
|
|
|
|
dofile(path .. "/mount.lua")
|
|
|
|
|
|
|
|
-- Mob Items
|
2021-04-08 09:07:15 +03:00
|
|
|
dofile(path .. "/crafts.lua")
|