Update mobs mod to remove shading on textures as well as make the Walker work better (animations look bad still)

This commit is contained in:
KaadmY 2017-07-25 13:28:40 -07:00
parent f264a61fe2
commit 43d9e0aa5f
23 changed files with 32 additions and 34 deletions

View File

@ -1,7 +1,7 @@
Mobs mod
========
By PilzAdam, KrupnovPavel, Zeg9, TenPlus1
Tweaked by Kaadmy, for Pixture
Tweaked by KaadmY, for Pixture
Asset license: CC BY-SA 4.0
Source License:
@ -11,4 +11,3 @@ Source License:
npc.lua: MIT
mineturtle.lua: LGPLv2.1
crafts.lua: LGPLv2.1

View File

@ -2,7 +2,7 @@
--
-- Mobs mod
-- By PilzAdam, KrupnovPavel, Zeg9, TenPlus1
-- Tweaked by Kaadmy, for Pixture
-- Tweaked by KaadmY, for Pixture
--
local path = minetest.get_modpath("mobs")
@ -11,18 +11,6 @@ local path = minetest.get_modpath("mobs")
dofile(path.."/api.lua")
-- Animals
dofile(path.."/sheep.lua") -- PilzAdam
dofile(path.."/boar.lua") -- KrupnoPavel
dofile(path.."/skunk.lua") -- Kaadmy
dofile(path.."/mineturtle.lua") -- Kaadmy
dofile(path.."/walker.lua") -- Kaadmy
-- NPC
dofile(path.."/npc.lua") -- TenPlus1
-- Mob items and crafts
dofile(path.."/crafts.lua")
@ -31,4 +19,16 @@ dofile(path.."/crafts.lua")
dofile(path.."/achievements.lua")
-- Animals
dofile(path.."/mob_sheep.lua") -- PilzAdam
dofile(path.."/mob_boar.lua") -- KrupnoPavel
dofile(path.."/mob_skunk.lua") -- KaadmY
dofile(path.."/mob_mineturtle.lua") -- KaadmY
dofile(path.."/mob_walker.lua") -- KaadmY
-- NPC
dofile(path.."/mob_npc.lua") -- TenPlus1
default.log("mod:mobs", "loaded")

View File

@ -1,6 +1,6 @@
-- Warthog(Boar) by KrupnoPavel
-- Changed to Boar and tweaked by Kaadmy
-- Changed to Boar and tweaked by KaadmY
mobs:register_mob(
"mobs:boar",

View File

@ -1,5 +1,5 @@
-- Mineturtle by Kaadmy
-- Mineturtle by KaadmY
mobs:register_mob(
"mobs:mineturtle",

View File

@ -1,6 +1,6 @@
-- Npc by TenPlus1
-- Modded by Kaadmy
-- Modded by KaadmY
local npc_types = {
"farmer",

View File

@ -1,5 +1,5 @@
-- Sheep by PilzAdam; tweaked for Pixture by Kaadmy
-- Sheep by PilzAdam; tweaked for Pixture by KaadmY
mobs:register_mob(
"mobs:sheep",

View File

@ -1,5 +1,5 @@
-- Boar by KrupnoPavel
-- Changed to Skunk and tweaked by Kaadmy
-- Changed to Skunk and tweaked by KaadmY
mobs:register_mob(
"mobs:skunk",

View File

@ -1,4 +1,4 @@
-- Walker by Kaadmy
-- Walker by KaadmY
mobs:register_mob(
"mobs:walker",
@ -6,7 +6,7 @@ mobs:register_mob(
type = "monster",
passive = false,
attack_type = "dogfight",
damage = 2,
damage = 3,
hp_min = 8,
hp_max = 16,
armor = 200,
@ -22,10 +22,10 @@ mobs:register_mob(
distance = 16,
},
walk_velocity = 1,
run_velocity = 5,
jump = false,
run_velocity = 3,
jump = true,
follow = "default:rope",
view_range = 8,
view_range = 14,
drops = {
{
name = "default:stick",
@ -40,20 +40,19 @@ mobs:register_mob(
chance = 15, min = 2, max = 3
},
},
water_damage = 6,
lava_damage = 10,
light_damage = 1,
water_damage = 2,
lava_damage = 30,
animation = {
speed_normal = 20,
speed_run = 30,
speed_run = 20,
stand_start = 0,
stand_end = 24,
run_start = 35,
run_end = 50,
walk_start = 35,
walk_end = 50,
punch_start = 25,
punch_end = 34,
walk_start = 35,
walk_end = 50,
run_start = 35,
run_end = 50,
},
})
@ -65,7 +64,7 @@ mobs:register_spawn(
},
20,
14,
200000,
12000,
1,
31000
)

Binary file not shown.

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 778 B

After

Width:  |  Height:  |  Size: 774 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.