2016-04-15 14:59:43 +01:00
|
|
|
|
2017-08-04 15:32:39 +01:00
|
|
|
-- Load support for intllib.
|
2020-09-21 09:48:45 +01:00
|
|
|
local path = minetest.get_modpath(minetest.get_current_modname()) .. "/"
|
|
|
|
|
2020-08-25 09:56:14 +01:00
|
|
|
local S = minetest.get_translator and minetest.get_translator("mobs_animal") or
|
2020-09-21 09:48:45 +01:00
|
|
|
dofile(path .. "intllib.lua")
|
|
|
|
|
2016-06-11 11:14:08 +01:00
|
|
|
mobs.intllib = S
|
|
|
|
|
2020-09-21 09:48:45 +01: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 14:59:43 +01:00
|
|
|
-- Animals
|
2020-09-21 09:48:45 +01: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
|
|
|
|
|
|
|
|
|
|
|
|
-- Load custom spawning
|
|
|
|
if mobs.custom_spawn_animal then
|
|
|
|
dofile(path .. "spawn.lua")
|
|
|
|
end
|
|
|
|
|
2016-04-15 14:59:43 +01:00
|
|
|
|
2020-08-25 09:56:14 +01:00
|
|
|
-- Lucky Blocks
|
2020-09-21 09:48:45 +01:00
|
|
|
dofile(path .. "lucky_block.lua")
|
|
|
|
|
2016-12-01 18:40:17 +00:00
|
|
|
|
2019-08-05 09:50:56 +01:00
|
|
|
print (S("[MOD] Mobs Redo Animals loaded"))
|