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())
|
|
|
|
local S = minetest.get_translator and minetest.get_translator("mobs_monster") or
|
|
|
|
dofile(path .. "/intllib.lua")
|
2016-06-11 12:03:00 +02:00
|
|
|
mobs.intllib = S
|
|
|
|
|
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
|
|
|
|
|
2020-08-25 10:56:43 +02:00
|
|
|
-- Lucky Blocks
|
2016-12-01 19:39:16 +01:00
|
|
|
dofile(path .. "/lucky_block.lua")
|
|
|
|
|
2020-08-25 10:56:43 +02:00
|
|
|
print (S("[MOD] Mobs Redo Monsters loaded"))
|