mirror of
https://codeberg.org/tenplus1/mobs_monster.git
synced 2024-11-13 22:30:20 +01:00
23 lines
684 B
Lua
23 lines
684 B
Lua
|
|
-- 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")
|
|
mobs.intllib = S
|
|
|
|
-- 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
|
|
|
|
-- Lucky Blocks
|
|
dofile(path .. "/lucky_block.lua")
|
|
|
|
print (S("[MOD] Mobs Redo Monsters loaded"))
|