2016-04-15 15:59:43 +02:00
|
|
|
|
2017-08-04 16:32:39 +02:00
|
|
|
-- Load support for intllib.
|
2020-09-21 10:48:45 +02:00
|
|
|
local path = minetest.get_modpath(minetest.get_current_modname()) .. "/"
|
|
|
|
|
2020-08-25 10:56:14 +02:00
|
|
|
local S = minetest.get_translator and minetest.get_translator("mobs_animal") or
|
2020-09-21 10:48:45 +02:00
|
|
|
dofile(path .. "intllib.lua")
|
|
|
|
|
2016-06-11 12:14:08 +02:00
|
|
|
mobs.intllib = S
|
|
|
|
|
2020-09-21 10:48:45 +02:00
|
|
|
|
|
|
|
-- Check for custom mob spawn file
|
|
|
|
local input = io.open(path .. "spawn.lua", "r")
|
|
|
|
|
|
|
|
if input then
|
|
|
|
mobs.custom_spawn_animal = true
|
|
|
|
input:close()
|
|
|
|
input = nil
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2016-04-15 15:59:43 +02:00
|
|
|
-- Animals
|
2020-09-21 10:48:45 +02:00
|
|
|
dofile(path .. "chicken.lua") -- JKmurray
|
|
|
|
dofile(path .. "cow.lua") -- KrupnoPavel
|
|
|
|
dofile(path .. "rat.lua") -- PilzAdam
|
|
|
|
dofile(path .. "sheep.lua") -- PilzAdam
|
|
|
|
dofile(path .. "warthog.lua") -- KrupnoPavel
|
|
|
|
dofile(path .. "bee.lua") -- KrupnoPavel
|
|
|
|
dofile(path .. "bunny.lua") -- ExeterDad
|
|
|
|
dofile(path .. "kitten.lua") -- Jordach/BFD
|
|
|
|
dofile(path .. "penguin.lua") -- D00Med
|
|
|
|
dofile(path .. "panda.lua") -- AspireMint
|
2020-09-21 18:02:56 +02:00
|
|
|
dofile(path .. "goat.lua") -- NALC(sys4 fork MFF)
|
2020-09-21 10:48:45 +02:00
|
|
|
|
|
|
|
|
|
|
|
-- Load custom spawning
|
|
|
|
if mobs.custom_spawn_animal then
|
|
|
|
dofile(path .. "spawn.lua")
|
|
|
|
end
|
2016-04-15 15:59:43 +02:00
|
|
|
|
2020-08-25 10:56:14 +02:00
|
|
|
-- Lucky Blocks
|
2020-09-21 10:48:45 +02:00
|
|
|
dofile(path .. "lucky_block.lua")
|
|
|
|
|
2016-12-01 19:40:17 +01:00
|
|
|
|
2019-08-05 10:50:56 +02:00
|
|
|
print (S("[MOD] Mobs Redo Animals loaded"))
|