2015-07-15 23:31:54 +02:00
|
|
|
local path = minetest.get_modpath("mobs")
|
|
|
|
|
2015-03-02 22:29:17 +01:00
|
|
|
-- Mob Api
|
2014-10-28 18:01:32 +01:00
|
|
|
|
2015-07-15 23:31:54 +02:00
|
|
|
dofile(path.."/api.lua")
|
2014-10-28 18:01:32 +01:00
|
|
|
|
2015-03-25 17:25:54 +01:00
|
|
|
-- Animals
|
2014-10-28 18:01:32 +01:00
|
|
|
|
2015-07-15 23:31:54 +02:00
|
|
|
dofile(path.."/chicken.lua") -- JKmurray
|
|
|
|
dofile(path.."/cow.lua") -- KrupnoPavel
|
|
|
|
dofile(path.."/rat.lua") -- PilzAdam
|
|
|
|
dofile(path.."/sheep.lua") -- PilzAdam
|
|
|
|
dofile(path.."/warthog.lua") -- KrupnoPavel
|
|
|
|
dofile(path.."/bee.lua") -- KrupnoPavel
|
|
|
|
dofile(path.."/bunny.lua") -- ExeterDad
|
|
|
|
dofile(path.."/kitten.lua") -- Jordach/BFD
|
|
|
|
dofile(path.."/goat.lua") -- ???
|
2014-12-25 23:20:28 +01:00
|
|
|
|
2014-10-28 18:01:32 +01:00
|
|
|
-- Monsters
|
|
|
|
|
2015-07-15 23:31:54 +02:00
|
|
|
dofile(path.."/dirtmonster.lua") -- PilzAdam
|
|
|
|
dofile(path.."/dungeonmaster.lua") -- PilzAdam
|
|
|
|
dofile(path.."/oerkki.lua") -- PilzAdam
|
|
|
|
dofile(path.."/sandmonster.lua") -- PilzAdam
|
|
|
|
dofile(path.."/stonemonster.lua") -- PilzAdam
|
|
|
|
dofile(path.."/treemonster.lua") -- PilzAdam
|
|
|
|
dofile(path.."/wolf.lua") -- PilzAdam
|
|
|
|
dofile(path.."/dog.lua") -- CProgrammerRU
|
|
|
|
--dofile(path.."/lava_flan.lua") -- Zeg9 --Remplaced by Lava Slimes
|
|
|
|
dofile(path.."/mese_monster.lua") -- Zeg9
|
|
|
|
dofile(path.."/spider.lua") -- AspireMint
|
|
|
|
dofile(path.."/greenslimes.lua") -- davedevils/TomasJLuis/TenPlus1
|
|
|
|
dofile(path.."/lavaslimes.lua") -- davedevils/TomasJLuis/TenPlus1
|
|
|
|
dofile(path.."/zombie.lua") -- ???
|
|
|
|
dofile(path.."/yeti.lua") -- ???
|
|
|
|
dofile(path.."/minotaur.lua") -- Kalabasa
|
2015-04-12 02:10:11 +02:00
|
|
|
|
2015-04-12 12:30:55 +02:00
|
|
|
-- begin slimes mobs compatibility changes
|
2015-04-12 02:10:11 +02:00
|
|
|
-- cannot find mesecons?, craft glue instead
|
|
|
|
if not minetest.get_modpath("mesecons_materials") then
|
|
|
|
minetest.register_craftitem(":mesecons_materials:glue", {
|
|
|
|
image = "jeija_glue.png",
|
|
|
|
description = "Glue",
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
if minetest.setting_get("log_mods") then minetest.log("action", "Slimes loaded") end
|
2015-04-12 12:30:55 +02:00
|
|
|
-- end slimes mobs compatibility changes
|
2015-04-12 02:10:11 +02:00
|
|
|
|
2015-03-18 21:28:40 +01:00
|
|
|
-- NPC
|
2015-07-15 23:31:54 +02:00
|
|
|
dofile(path.."/npc.lua") -- TenPlus1
|
2015-08-18 17:09:53 +02:00
|
|
|
dofile(path.."/npc_female.lua") -- nuttmeg20
|
2015-03-18 21:28:40 +01:00
|
|
|
|
2015-03-12 04:34:03 +01:00
|
|
|
-- Creeper (fast impl by davedevils)
|
2015-07-15 23:31:54 +02:00
|
|
|
dofile(path.."/creeper.lua")
|
2015-04-11 21:45:03 +02:00
|
|
|
|
2015-07-15 23:31:54 +02:00
|
|
|
-- Mob Items
|
|
|
|
dofile(path.."/crafts.lua")
|
2015-04-11 21:45:03 +02:00
|
|
|
|
2014-10-28 18:01:32 +01:00
|
|
|
if minetest.setting_get("log_mods") then
|
|
|
|
minetest.log("action", "mobs loaded")
|
2015-08-18 17:09:53 +02:00
|
|
|
end
|