Morde added

master
NPXcoot 2016-05-12 11:04:27 +02:00
parent 152b161497
commit 49a273430e
3 changed files with 20190 additions and 0 deletions

View File

@ -30,6 +30,7 @@ dofile(path.."/masticone.lua")
dofile(path.."/moonheron.lua")
dofile(path.."/mordain.lua")
dofile(path.."/morgre.lua")
dofile(path.."/morde.lua")
dofile(path.."/night_master.lua")
dofile(path.."/octopus.lua")
dofile(path.."/phoenix.lua")

20141
models/morde.x Normal file

File diff suppressed because it is too large Load Diff

48
morde.lua Normal file
View File

@ -0,0 +1,48 @@
nssm:register_mob("nssm:morde", {
type = "monster",
hp_max = 20,
hp_min = 17,
collisionbox = {-0.4, 0.00, -0.4, 0.4, 1.6, 0.4},
visual = "mesh",
rotate= 270,
mesh = "morde.x",
textures = {{"morde.png"}},
visual_size = {x=10, y=10},
makes_footstep_sound = true,
view_range = 20,
walk_velocity = 0.5,
reach =3,
run_velocity = 3.5,
damage = 4,
jump = true,
--[[sounds = {
random = "",
},]]
drops = {
{name = "nssm:life_energy",
chance = 1,
min = 1,
max = 1,},
},
armor = 70,
drawtype = "front",
water_damage = 0,
fear_height = 4,
floats = 1,
lava_damage = 0,
light_damage = 0,
on_rightclick = nil,
attack_type = "dogfight",
animation = {
speed_normal = 15,
speed_run = 25,
stand_start = 10,
stand_end = 40,
walk_start = 50,
walk_end = 90,
run_start = 100,
run_end = 120,
punch_start = 130,
punch_end = 160,
}
})