Added Black Scorpion

This commit is contained in:
NPXcoot 2017-01-31 23:47:11 +01:00
parent 97229c5b00
commit 222a00d6b4
7 changed files with 71684 additions and 1 deletions

View File

@ -11,6 +11,7 @@ dofile(path.."/mobs/ant_queen.lua")
dofile(path.."/mobs/ant_soldier.lua")
dofile(path.."/mobs/ant_worker.lua")
dofile(path.."/mobs/berinhog.lua")
dofile(path.."/mobs/black_scorpion.lua")
dofile(path.."/mobs/black_widow.lua")
dofile(path.."/mobs/bloco.lua")
dofile(path.."/mobs/chog.lua")

55
mobs/black_scorpion.lua Normal file
View File

@ -0,0 +1,55 @@
mobs:register_mob("nssm:black_scorpion", {
type = "monster",
hp_max = 28,
hp_min = 17,
collisionbox = {-0.5, 0.00, -0.5, 0.5, 0.8, 0.5},
visual = "mesh",
mesh = "scorpion.x",
textures = {{"scorpion.png"}},
visual_size = {x=12, y=12},
makes_footstep_sound = true,
view_range = 22,
walk_velocity = 1,
fear_height = 4,
run_velocity = 2.5,
--[[ sounds = {
random = "black_scorpion",
},]]
damage = 1,
reach = 4,
jump = true,
drops = {
{name = "nssm:life_energy",
chance = 1,
min = 1,
max = 4,},
},
armor = 80,
drawtype = "front",
water_damage = 1,
lava_damage = 7,
light_damage = 0,
group_attack=true,
attack_animals=true,
blood_texture="nssm_blood_blue.png",
stepheight=1.1,
on_rightclick = nil,
double_melee_attack = true,
attack_type = "dogfight",
animation = {
speed_normal = 20,
speed_run = 30,
stand_start = 10,
stand_end = 60,
walk_start = 70,
walk_end = 110,
run_start = 70,
run_end = 110,
punch_start = 160,
punch_end = 180,
punch2_start = 120,
punch2_end = 150,
die_start = 190,
die_end = 210,
},
})

View File

@ -49,7 +49,6 @@ mobs:register_mob("nssm:mantis", {
stepheight=1.1,
double_melee_attack = true,
attack_type = "dogfight",
die_anim = true,
animation = {
speed_normal = 20,
speed_run = 25,

71627
models/scorpion.x Normal file

File diff suppressed because it is too large Load Diff

View File

@ -1921,6 +1921,7 @@ nssm_register_egg2 ('night_master', 'Night Master')
nssm_register_egg ('scrausics', 'Scrausics')
nssm_register_egg ('moonheron', 'Moonheron')
nssm_register_egg ('sandworm', 'Sandworm')
nssm_register_egg ('black_scorpion', 'Black Scorpion')
nssm_register_egg2 ('giant_sandworm', 'Giant Sandworm')
nssm_register_egg2 ('ant_queen', 'Ant Queen')
nssm_register_egg ('ant_soldier', 'Ant Soldier')

Binary file not shown.

After

Width:  |  Height:  |  Size: 855 B

BIN
textures/scorpion.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB