mobs_monster/init.lua

67 lines
1.5 KiB
Lua
Raw Normal View History

2016-04-15 16:00:45 +02:00
2020-08-25 10:56:43 +02:00
-- Load support for intllib.
local path = minetest.get_modpath(minetest.get_current_modname()) .. "/"
2022-01-20 09:56:28 +01:00
-- Check for translation method
local S
if minetest.get_translator ~= nil then
S = minetest.get_translator("mobs_monster") -- 5.x translation function
else
if minetest.get_modpath("intllib") then
dofile(minetest.get_modpath("intllib") .. "/init.lua")
if intllib.make_gettext_pair then
2022-09-27 12:27:47 +02:00
S = intllib.make_gettext_pair() -- new gettext method
2022-01-20 09:56:28 +01:00
else
2022-09-27 12:27:47 +02:00
S = intllib.Getter() -- old text file method
2022-01-20 09:56:28 +01:00
end
else -- boilerplate function
S = function(str, ...)
local args = {...}
return str:gsub("@%d+", function(match)
return args[tonumber(match:sub(2))]
end)
end
end
end
mobs.intllib_monster = S
2016-06-11 12:03:00 +02:00
-- 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
2016-04-15 16:00:45 +02:00
-- Monsters
dofile(path .. "dirt_monster.lua") -- PilzAdam
dofile(path .. "dungeon_master.lua")
dofile(path .. "oerkki.lua")
dofile(path .. "sand_monster.lua")
dofile(path .. "stone_monster.lua")
dofile(path .. "tree_monster.lua")
dofile(path .. "lava_flan.lua") -- Zeg9
dofile(path .. "mese_monster.lua")
dofile(path .. "spider.lua") -- AspireMint
2021-03-02 14:35:17 +01:00
dofile(path .. "land_guard.lua")
2021-05-12 11:11:34 +02:00
dofile(path .. "fire_spirit.lua")
-- Load custom spawning
if mobs.custom_spawn_monster then
dofile(path .. "spawn.lua")
end
2016-04-15 16:00:45 +02:00
2020-08-25 10:56:43 +02:00
-- Lucky Blocks
2022-09-27 12:27:47 +02:00
if minetest.get_modpath("lucky_block") then
dofile(path .. "lucky_block.lua")
end
2016-12-01 19:39:16 +01:00
2021-11-14 15:21:53 +01:00
print ("[MOD] Mobs Redo Monsters loaded")