mirror of
https://codeberg.org/tenplus1/mobs_monster.git
synced 2024-11-13 22:30:20 +01:00
56 lines
1.0 KiB
Lua
56 lines
1.0 KiB
Lua
|
|
-- Load support for intllib.
|
|
local path = minetest.get_modpath(minetest.get_current_modname()) .. "/"
|
|
|
|
-- Translation support
|
|
local S = minetest.get_translator("mobs_monster")
|
|
|
|
-- Check for custom mob spawn file
|
|
local input = io.open(path .. "spawn.lua", "r")
|
|
|
|
if input then
|
|
mobs.custom_spawn_monster = true
|
|
input:close()
|
|
input = nil
|
|
end
|
|
|
|
|
|
-- helper function
|
|
local function ddoo(mob)
|
|
|
|
if minetest.settings:get_bool("mobs_monster." .. mob) == false then
|
|
print("[Mobs_Monster] " .. mob .. " disabled!")
|
|
return
|
|
end
|
|
|
|
dofile(path .. mob .. ".lua")
|
|
end
|
|
|
|
-- Monsters
|
|
ddoo("dirt_monster") -- PilzAdam
|
|
ddoo("dungeon_master")
|
|
ddoo("oerkki")
|
|
ddoo("sand_monster")
|
|
ddoo("stone_monster")
|
|
ddoo("tree_monster")
|
|
ddoo("lava_flan") -- Zeg9
|
|
ddoo("mese_monster")
|
|
ddoo("spider") -- AspireMint
|
|
ddoo("land_guard")
|
|
ddoo("fire_spirit")
|
|
|
|
|
|
-- Load custom spawning
|
|
if mobs.custom_spawn_monster then
|
|
dofile(path .. "spawn.lua")
|
|
end
|
|
|
|
|
|
-- Lucky Blocks
|
|
if minetest.get_modpath("lucky_block") then
|
|
dofile(path .. "lucky_block.lua")
|
|
end
|
|
|
|
|
|
print ("[MOD] Mobs Monster loaded")
|