mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-09 20:10:18 +01:00
4fe3fc8f25
- Need to check NPC - Need to check sheeps - Need to merge the api.lua file (be carful to keep our modifs or merge it with the Tenplus1 modif for code unification BUT keep our specific config)
62 lines
1.8 KiB
Lua
Executable File
62 lines
1.8 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.."/warthog.lua") -- KrupnoPavel
|
|
dofile(path.."/bee.lua") -- KrupnoPavel
|
|
dofile(path.."/bunny.lua") -- ExeterDad
|
|
dofile(path.."/kitten.lua") -- Jordach/BFD
|
|
dofile(path.."/goat.lua") -- ???
|
|
|
|
-- 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
|
|
|
|
-- 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 = "jeija_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")
|
|
|
|
if minetest.setting_get("log_mods") then
|
|
minetest.log("action", "mobs loaded")
|
|
end |