Camas/mods/mobs/init.lua

35 lines
576 B
Lua
Raw Normal View History

2015-09-01 17:15:24 +02:00
--
-- Mobs mod
-- By PilzAdam, KrupnovPavel, Zeg9, TenPlus1
-- Tweaked by Kaadmy, for Pixture
--
local path = minetest.get_modpath("mobs")
2015-09-01 17:15:24 +02:00
-- Mob API
2015-09-01 17:15:24 +02:00
dofile(path.."/api.lua")
-- Animals
2015-09-01 17:15:24 +02:00
dofile(path.."/sheep.lua") -- PilzAdam
dofile(path.."/boar.lua") -- KrupnoPavel
2015-10-05 01:29:26 +02:00
dofile(path.."/skunk.lua") -- Kaadmy
2015-09-01 17:15:24 +02:00
dofile(path.."/mineturtle.lua") -- Kaadmy
dofile(path.."/walker.lua") -- Kaadmy
2015-09-01 17:15:24 +02:00
-- NPC
2015-09-01 17:15:24 +02:00
dofile(path.."/npc.lua") -- TenPlus1
-- Mob items and crafts
2015-09-01 17:15:24 +02:00
dofile(path.."/crafts.lua")
-- Achievements
dofile(path.."/achievements.lua")
2015-09-01 17:15:24 +02:00
default.log("mod:mobs", "loaded")