Mantis and Icelizard

This commit is contained in:
NPXcoot 2016-12-02 00:10:58 +01:00
parent 08500ae82a
commit 5bc07a8ebf
6 changed files with 3814 additions and 3809 deletions

View File

@ -24,6 +24,7 @@ dofile(path.."/mobs/flying_duck.lua")
dofile(path.."/mobs/felucco.lua")
dofile(path.."/mobs/giant_sandworm.lua")
dofile(path.."/mobs/icelamander.lua")
dofile(path.."/mobs/icelizard.lua")
dofile(path.."/mobs/icesnake.lua")
dofile(path.."/mobs/kraken.lua")
dofile(path.."/mobs/larva.lua")

View File

@ -1,12 +1,12 @@
mobs:register_mob("nssm:icelizard", {
type = "monster",
hp_max = 24,
hp_min = 15,
hp_min = 18,
collisionbox = {-0.5, 0, -0.5, 0.5, 0.60, 0.5},
visual = "mesh",
mesh = "icelizard.x",
textures = {{"snow_biter.png"}},
visual_size = {x=6, y=6},
visual_size = {x=9, y=9},
makes_footstep_sound = true,
view_range = 30,
rotate = 270,
@ -51,6 +51,7 @@ mobs:register_mob("nssm:icelizard", {
stepheight=1.1,
on_rightclick = nil,
attack_type = "dogfight",
die_anim = true,
animation = {
speed_normal = 20,
speed_run = 40,
@ -60,6 +61,8 @@ mobs:register_mob("nssm:icelizard", {
walk_end = 150,
run_start = 110,
run_end = 150,
die_start = 80,
die_end = 100,
punch_start = 160,
punch_end = 170,
},

View File

@ -12,7 +12,7 @@ mobs:register_mob("nssm:mantis", {
view_range = 20,
fear_height = 4,
walk_velocity = 0,
run_velocity = 3,
run_velocity = 3.5,
sounds = {
random = "manti",
},
@ -51,17 +51,17 @@ mobs:register_mob("nssm:mantis", {
attack_type = "dogfight",
die_anim = true,
animation = {
speed_normal = 15,
speed_normal = 20,
speed_run = 25,
stand_start = 130,
stand_end = 130,
stand_start = 135,
stand_end = 135,
walk_start = 130,
walk_end = 130,
run_start = 10,
run_end = 30,
punch_start = 40,
punch_end = 70,
die_start = 115,
die_start = 110,
die_end = 130,
punch2_start = 80,
punch2_end = 110,

File diff suppressed because it is too large Load Diff

View File

@ -1855,6 +1855,7 @@ nssm_register_egg ('white_werewolf', 'White Werewolf')
nssm_register_egg ('snow_biter', 'Snow Biter')
nssm_register_egg2 ('icelamander', 'Icelamander')
nssm_register_egg ('icesnake', 'Icesnake')
nssm_register_egg ('icelizard', 'Icelizard')
nssm_register_egg2 ('lava_titan', 'Lava Titan')
nssm_register_egg ('masticone', 'Masticone')
nssm_register_egg ('mantis_beast', 'Mantis Beast')

BIN
textures/icelizard_egg.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 813 B