Move mobs texture and model credits to mobs_mc/CREDITS.md
This commit is contained in:
parent
d130596532
commit
6a5d310de8
50
mods/ENTITIES/mobs_mc/CREDITS.md
Normal file
50
mods/ENTITIES/mobs_mc/CREDITS.md
Normal file
@ -0,0 +1,50 @@
|
||||
# Mobs_mc
|
||||
## Mobs Model, Texture and Animation Credits
|
||||
### Animals
|
||||
* Axolotl Mesh and animation by JoeEnderman, Textures by Nova Wustra, modified by JoeEnderman
|
||||
* Bat: Mesh and animation by toby109tt / https://github.com/22i
|
||||
* Rabbit: Mesh and animation byExeterDad
|
||||
* Chicken: Mesh and animation by Pavel_S
|
||||
* Cow + Mooshroom Mesh by Morn76 Animation by Pavel_S
|
||||
* Horse: KrupnoPavel; Mesh and animation by toby109tt / https://github.com/22i
|
||||
* Llama: Mesh and animation by toby109tt / https://github.com/22i
|
||||
* Ocelot: Mesh and animation by toby109tt / https://github.com/22i
|
||||
* Parrot: Mesh and animation by toby109tt / https://github.com/22i
|
||||
* Pig: Mesh and animation by Pavel_S
|
||||
* Polar Bear: Mesh and animation by toby109tt / https://github.com/22i
|
||||
* Sheep: Mesh and animation by Pavel_S
|
||||
* Wold: KrupnoPavel
|
||||
* Squid: Animation, sound and egg texture by daufinsyd
|
||||
|
||||
### NPCs
|
||||
* Villager: KrupnoPavel Mesh and animation by toby109tt / https://github.com/22i
|
||||
|
||||
### Illagers and witch
|
||||
* Pillager Mesh by KrupnoPavel and MrRar, animation by MrRar
|
||||
* Evoker: Mesh and animation by toby109tt / https://github.com/22i
|
||||
* Vindicator: Mesh and animation by toby109tt / https://github.com/22i
|
||||
* Zombie Villager: Mesh and animation by toby109tt / https://github.com/22i
|
||||
|
||||
* Witch: Mesh and animation by toby109tt / https://github.com/22i
|
||||
|
||||
### Monsters
|
||||
* Blaze: Animation by daufinsyd
|
||||
* Creeper: Mesh by Morn76 Animation by Pavel_S
|
||||
* Ender Dragon Mesh and animation by toby109tt / https://github.com/22i
|
||||
* Enderman: Mesh and animation by toby109tt / https://github.com/22i
|
||||
* Endermite: Mesh and animation by toby109tt / https://github.com/22i
|
||||
* Illusioner: Mesh and animation by toby109tt / https://github.com/22i
|
||||
* Ghast: maikerumine
|
||||
* Guardian maikerumine Mesh and animation by toby109tt / https://github.com/22i
|
||||
* Elder Guardian maikerumine Mesh and animation by toby109tt / https://github.com/22i
|
||||
* Iron Golem: maikerumine Mesh and animation by toby109tt / https://github.com/22i
|
||||
* Shulker: maikerumine Mesh and animation by toby109tt / https://github.com/22i
|
||||
* Silverfish: maikerumine Mesh and animation by toby109tt / https://github.com/22i
|
||||
* Skeleton and Stray Mesh by Morn76 Animation by Pavel_S
|
||||
* Wither Skeleton: Mesh by Morn76 Animation by Pavel_S
|
||||
* Zombie Mesh by Morn76 Animation by Pavel_S
|
||||
* Zombiepig: Mesh by Morn76 Animation by Pavel_S
|
||||
* Slime+MagmaCube -- Wuzzy
|
||||
* Spider: by AspireMint (fishyWET (CC-BY-SA 3.0 license for texture)
|
||||
* Vex: KrupnoPavel
|
||||
* Wither: Mesh and animation by toby109tt / https://github.com/22i
|
@ -72,75 +72,11 @@ end
|
||||
|
||||
mobs_mc.shears_wear = 276
|
||||
mobs_mc.water_level = tonumber(minetest.settings:get("water_level")) or 0
|
||||
|
||||
-- Auto load all lua files
|
||||
local path = minetest.get_modpath("mobs_mc")
|
||||
for _, file in pairs(minetest.get_dir_list(path, false)) do
|
||||
if file:sub(-4) == ".lua" and file ~= "init.lua" then
|
||||
dofile(path .. "/" ..file)
|
||||
end
|
||||
end
|
||||
|
||||
--[[
|
||||
-- Animals
|
||||
|
||||
dofile(path .. "/axolotl.lua") -- Mesh and animation by JoeEnderman, Textures by Nova Wustra, modified by JoeEnderman
|
||||
dofile(path .. "/bat.lua") -- Mesh and animation by toby109tt / https://github.com/22i
|
||||
dofile(path .. "/rabbit.lua") -- Mesh and animation byExeterDad
|
||||
dofile(path .. "/chicken.lua") -- Mesh and animation by Pavel_S
|
||||
dofile(path .. "/cow+mooshroom.lua") -- Mesh by Morn76 Animation by Pavel_S
|
||||
dofile(path .. "/horse.lua") -- KrupnoPavel; Mesh and animation by toby109tt / https://github.com/22i
|
||||
dofile(path .. "/llama.lua") -- Mesh and animation by toby109tt / https://github.com/22i
|
||||
dofile(path .. "/ocelot.lua") -- Mesh and animation by toby109tt / https://github.com/22i
|
||||
dofile(path .. "/parrot.lua") -- Mesh and animation by toby109tt / https://github.com/22i
|
||||
dofile(path .. "/pig.lua") -- Mesh and animation by Pavel_S
|
||||
dofile(path .. "/polar_bear.lua") -- Mesh and animation by toby109tt / https://github.com/22i
|
||||
dofile(path .. "/sheep.lua") -- Mesh and animation by Pavel_S
|
||||
dofile(path .. "/wolf.lua") -- KrupnoPavel
|
||||
dofile(path .. "/squid.lua") -- Animation, sound and egg texture by daufinsyd
|
||||
|
||||
-- NPCs
|
||||
dofile(path .. "/villager.lua") -- KrupnoPavel Mesh and animation by toby109tt / https://github.com/22i
|
||||
|
||||
-- Illagers and witch
|
||||
dofile(path .. "/pillager.lua") -- Mesh by KrupnoPavel and MrRar, animation by MrRar
|
||||
dofile(path .. "/villager_evoker.lua") -- Mesh and animation by toby109tt / https://github.com/22i
|
||||
dofile(path .. "/villager_vindicator.lua") -- Mesh and animation by toby109tt / https://github.com/22i
|
||||
dofile(path .. "/villager_zombie.lua") -- Mesh and animation by toby109tt / https://github.com/22i
|
||||
|
||||
dofile(path .. "/witch.lua") -- Mesh and animation by toby109tt / https://github.com/22i
|
||||
|
||||
--Monsters
|
||||
dofile(path .. "/blaze.lua") -- Animation by daufinsyd
|
||||
dofile(path .. "/creeper.lua") -- Mesh by Morn76 Animation by Pavel_S
|
||||
dofile(path .. "/ender_dragon.lua") -- Mesh and animation by toby109tt / https://github.com/22i
|
||||
dofile(path .. "/enderman.lua") -- Mesh and animation by toby109tt / https://github.com/22i
|
||||
dofile(path .. "/endermite.lua") -- Mesh and animation by toby109tt / https://github.com/22i
|
||||
dofile(path .. "/villager_illusioner.lua") -- Mesh and animation by toby109tt / https://github.com/22i
|
||||
dofile(path .. "/ghast.lua") -- maikerumine
|
||||
dofile(path .. "/guardian.lua") -- maikerumine Mesh and animation by toby109tt / https://github.com/22i
|
||||
dofile(path .. "/guardian_elder.lua") -- maikerumine Mesh and animation by toby109tt / https://github.com/22i
|
||||
dofile(path .. "/snowman.lua")
|
||||
dofile(path .. "/iron_golem.lua") -- maikerumine Mesh and animation by toby109tt / https://github.com/22i
|
||||
dofile(path .. "/shulker.lua") -- maikerumine Mesh and animation by toby109tt / https://github.com/22i
|
||||
dofile(path .. "/silverfish.lua") -- maikerumine Mesh and animation by toby109tt / https://github.com/22i
|
||||
dofile(path .. "/skeleton+stray.lua") -- Mesh by Morn76 Animation by Pavel_S
|
||||
dofile(path .. "/skeleton_wither.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 .. "/slime+magma_cube.lua") -- Wuzzy
|
||||
dofile(path .. "/spider.lua") -- Spider by AspireMint (fishyWET (CC-BY-SA 3.0 license for texture)
|
||||
dofile(path .. "/vex.lua") -- KrupnoPavel
|
||||
dofile(path .. "/wither.lua") -- Mesh and animation by toby109tt / https://github.com/22i
|
||||
|
||||
dofile(path .. "/cod.lua")
|
||||
dofile(path .. "/salmon.lua")
|
||||
dofile(path .. "/tropical_fish.lua")
|
||||
dofile(path .. "/dolphin.lua")
|
||||
|
||||
|
||||
dofile(path .. "/glow_squid.lua")
|
||||
|
||||
dofile(path .. "/piglin.lua")
|
||||
dofile(path .. "/hoglin+zoglin.lua")
|
||||
|
||||
dofile(path .. "/strider.lua")
|
||||
--]]
|
||||
|
Loading…
x
Reference in New Issue
Block a user