1
0
mirror of https://codeberg.org/tenplus1/mobs_monster.git synced 2024-12-22 17:00:26 +01:00
mobs_monster/init.lua

55 lines
1.0 KiB
Lua
Raw Normal View History

2016-04-15 16:00:45 +02:00
2024-08-10 15:39:51 +02:00
-- transpation and get mod path
2023-08-13 12:02:47 +02:00
local S = minetest.get_translator("mobs_monster")
2024-08-10 15:39:51 +02:00
local path = minetest.get_modpath(minetest.get_current_modname()) .. "/"
-- Check for custom mob spawn file
2024-08-10 15:39:51 +02:00
local input = io.open(path .. "spawn.lua", "r")
if input then
mobs.custom_spawn_monster = true
input:close()
input = nil
end
-- helper function
2024-08-10 15:39:51 +02:00
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
2016-04-15 16:00:45 +02:00
-- Monsters
2024-08-10 15:39:51 +02:00
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")
2024-08-10 15:39:51 +02:00
-- Load custom spawning if found
if mobs.custom_spawn_monster then
dofile(path .. "spawn.lua")
end
2020-08-25 10:56:43 +02:00
-- Lucky Blocks
2024-08-10 15:39:51 +02:00
2022-09-27 12:27:47 +02:00
if minetest.get_modpath("lucky_block") then
dofile(path .. "lucky_block.lua")
end
2023-08-13 12:02:47 +02:00
print ("[MOD] Mobs Monster loaded")