forked from VoxeLibre/VoxeLibre
32 lines
1.2 KiB
Lua
32 lines
1.2 KiB
Lua
--MCmobs v0.2
|
|
--maikerumine
|
|
--made for MC like Survival game
|
|
--License for code WTFPL and otherwise stated in readmes
|
|
|
|
local path = minetest.get_modpath("mobs_mc")
|
|
|
|
-- Animals
|
|
dofile(path .. "/chicken.lua") -- Mesh and animation by Pavel_S
|
|
dofile(path .. "/cow.lua") -- Mesh by Morn76 Animation by Pavel_S
|
|
dofile(path .. "/sheep.lua") -- Mesh and animation by Pavel_S
|
|
dofile(path .. "/pig.lua") -- Mesh and animation by Pavel_S
|
|
dofile(path .. "/horse.lua") -- KrupnoPavel
|
|
dofile(path .. "/wolf.lua") -- KrupnoPavel
|
|
dofile(path .. "/horse.lua") -- KrupnoPavel
|
|
|
|
|
|
-- NPC
|
|
dofile(path .. "/villager.lua") -- KrupnoPavel
|
|
|
|
--Monsters
|
|
dofile(path .. "/creeper.lua") -- Mesh by Morn76 Animation by Pavel_S
|
|
dofile(path .. "/skeleton.lua") -- Mesh by Morn76 Animation by Pavel_S
|
|
dofile(path .. "/zombie.lua") -- Mesh by Morn76 Animation by Pavel_S
|
|
dofile(path .. "/zombiepig.lua") -- Mesh by Morn76 Animation by Pavel_S
|
|
dofile(path .. "/slimes.lua") -- Tomas J. Luis
|
|
dofile(path .. "/spider.lua") -- Spider by AspireMint (fishyWET (CC-BY-SA 3.0 license for texture)
|
|
dofile(path .. "/enderman.lua") -- maikerumine
|
|
dofile(path .. "/ghast.lua") -- maikerumine
|
|
|
|
print ("[MOD] Mobs Redo 'MC' loaded")
|