mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-05 10:00:26 +01:00
72 lines
2.0 KiB
Lua
Executable File
72 lines
2.0 KiB
Lua
Executable File
local path = minetest.get_modpath("mobs")
|
|
|
|
-- Mob Api
|
|
|
|
dofile(path.."/api.lua")
|
|
|
|
-- Animals
|
|
|
|
dofile(path.."/chicken.lua") -- JKmurray
|
|
dofile(path.."/cow.lua") -- KrupnoPavel
|
|
dofile(path.."/rat.lua") -- PilzAdam
|
|
dofile(path.."/sheep.lua") -- PilzAdam
|
|
dofile(path.."/pig.lua") -- farfadet46
|
|
dofile(path.."/bee.lua") -- KrupnoPavel
|
|
dofile(path.."/bunny.lua") -- ExeterDad
|
|
dofile(path.."/kitten.lua") -- Jordach/BFD
|
|
dofile(path.."/goat.lua") -- ???
|
|
dofile(path.."/shark.lua") -- blert2112 (animal_modpack)
|
|
|
|
-- Monsters
|
|
|
|
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
|
|
|
|
-- The bosses
|
|
dofile(path.."/pumpkins.lua")
|
|
dofile(path.."/ent.lua")
|
|
|
|
-- begin slimes mobs compatibility changes
|
|
-- cannot find mesecons?, craft glue instead
|
|
if not minetest.get_modpath("mesecons_materials") then
|
|
minetest.register_craftitem(":mesecons_materials:glue", {
|
|
image = "mesecons_glue.png",
|
|
description = "Glue",
|
|
})
|
|
end
|
|
|
|
if minetest.setting_get("log_mods") then minetest.log("action", "Slimes loaded") end
|
|
-- end slimes mobs compatibility changes
|
|
|
|
-- NPC
|
|
dofile(path.."/npc.lua") -- TenPlus1
|
|
dofile(path.."/npc_female.lua") -- nuttmeg20
|
|
|
|
-- Creeper (fast impl by davedevils)
|
|
dofile(path.."/creeper.lua")
|
|
|
|
-- Mob Items
|
|
dofile(path.."/crafts.lua")
|
|
|
|
-- Spawner
|
|
dofile(path.."/spawner.lua")
|
|
|
|
-- Mob menu spawner special MFF
|
|
dofile(path.."/mff_menu.lua")
|
|
|
|
minetest.log("action", "[MOD] Mobs Redo loaded")
|