Kele and Felucco!
This commit is contained in:
parent
5bc07a8ebf
commit
f4efc4071d
1
init.lua
1
init.lua
@ -27,6 +27,7 @@ dofile(path.."/mobs/icelamander.lua")
|
|||||||
dofile(path.."/mobs/icelizard.lua")
|
dofile(path.."/mobs/icelizard.lua")
|
||||||
dofile(path.."/mobs/icesnake.lua")
|
dofile(path.."/mobs/icesnake.lua")
|
||||||
dofile(path.."/mobs/kraken.lua")
|
dofile(path.."/mobs/kraken.lua")
|
||||||
|
dofile(path.."/mobs/kele.lua")
|
||||||
dofile(path.."/mobs/larva.lua")
|
dofile(path.."/mobs/larva.lua")
|
||||||
dofile(path.."/mobs/lava_titan.lua")
|
dofile(path.."/mobs/lava_titan.lua")
|
||||||
dofile(path.."/mobs/manticore.lua")
|
dofile(path.."/mobs/manticore.lua")
|
||||||
|
@ -12,6 +12,7 @@ mobs:register_mob("nssm:felucco", {
|
|||||||
walk_velocity = 1,
|
walk_velocity = 1,
|
||||||
fear_height = 4,
|
fear_height = 4,
|
||||||
run_velocity = 5,
|
run_velocity = 5,
|
||||||
|
attack_specific = {"player", "nssm:kele"},
|
||||||
sounds = {
|
sounds = {
|
||||||
random = "felucco",
|
random = "felucco",
|
||||||
},
|
},
|
||||||
@ -40,8 +41,8 @@ mobs:register_mob("nssm:felucco", {
|
|||||||
water_damage = 2,
|
water_damage = 2,
|
||||||
lava_damage = 5,
|
lava_damage = 5,
|
||||||
light_damage = 0,
|
light_damage = 0,
|
||||||
group_attack=true,
|
-- group_attack=true,
|
||||||
attack_animals=true,
|
-- attack_animals=true,
|
||||||
knock_back=2,
|
knock_back=2,
|
||||||
blood_texture="nssm_blood.png",
|
blood_texture="nssm_blood.png",
|
||||||
stepheight=1.1,
|
stepheight=1.1,
|
||||||
|
56
mobs/kele.lua
Normal file
56
mobs/kele.lua
Normal file
@ -0,0 +1,56 @@
|
|||||||
|
mobs:register_mob("nssm:kele", {
|
||||||
|
type = "monster",
|
||||||
|
hp_max = 36,
|
||||||
|
hp_min = 27,
|
||||||
|
collisionbox = {-0.4, 0, -0.4, 0.4, 2, 0.4},
|
||||||
|
visual = "mesh",
|
||||||
|
mesh = "kele.x",
|
||||||
|
textures = {{"kele.png"}},
|
||||||
|
visual_size = {x=5, y=5},
|
||||||
|
makes_footstep_sound = true,
|
||||||
|
view_range = 30,
|
||||||
|
walk_velocity = 1,
|
||||||
|
rotate = 270,
|
||||||
|
fear_height = 4,
|
||||||
|
run_velocity = 5,
|
||||||
|
--[[sounds = {
|
||||||
|
random = "kele",
|
||||||
|
},]]
|
||||||
|
damage = 5,
|
||||||
|
jump = true,
|
||||||
|
drops = {
|
||||||
|
{name = "nssm:life_energy",
|
||||||
|
chance = 1,
|
||||||
|
min = 3,
|
||||||
|
max = 4},
|
||||||
|
},
|
||||||
|
armor = 70,
|
||||||
|
drawtype = "front",
|
||||||
|
water_damage = 2,
|
||||||
|
lava_damage = 5,
|
||||||
|
light_damage = 0,
|
||||||
|
--group_attack=true,
|
||||||
|
--attack_animals=true,
|
||||||
|
knock_back=2,
|
||||||
|
blood_texture="nssm_blood.png",
|
||||||
|
stepheight=2.1,
|
||||||
|
on_rightclick = nil,
|
||||||
|
attack_type = "dogfight",
|
||||||
|
attack_specific = {"player", "nssm:felucco"},
|
||||||
|
animation = {
|
||||||
|
speed_normal = 20,
|
||||||
|
speed_run = 25,
|
||||||
|
stand_start = 200,
|
||||||
|
stand_end = 250,
|
||||||
|
walk_start = 40,
|
||||||
|
walk_end = 80,
|
||||||
|
run_start = 10,
|
||||||
|
run_end = 30,
|
||||||
|
punch_start = 130,
|
||||||
|
punch_end = 160,
|
||||||
|
-- punchalt_start = 90,
|
||||||
|
-- punchalt_end = 120,
|
||||||
|
die_start = 170,
|
||||||
|
die_end = 190,
|
||||||
|
}
|
||||||
|
})
|
@ -1857,6 +1857,7 @@ nssm_register_egg2 ('icelamander', 'Icelamander')
|
|||||||
nssm_register_egg ('icesnake', 'Icesnake')
|
nssm_register_egg ('icesnake', 'Icesnake')
|
||||||
nssm_register_egg ('icelizard', 'Icelizard')
|
nssm_register_egg ('icelizard', 'Icelizard')
|
||||||
nssm_register_egg2 ('lava_titan', 'Lava Titan')
|
nssm_register_egg2 ('lava_titan', 'Lava Titan')
|
||||||
|
nssm_register_egg2 ('kele', 'Kele')
|
||||||
nssm_register_egg ('masticone', 'Masticone')
|
nssm_register_egg ('masticone', 'Masticone')
|
||||||
nssm_register_egg ('mantis_beast', 'Mantis Beast')
|
nssm_register_egg ('mantis_beast', 'Mantis Beast')
|
||||||
nssm_register_egg ('mantis', 'Mantis')
|
nssm_register_egg ('mantis', 'Mantis')
|
||||||
|
BIN
textures/kele.png
Normal file
BIN
textures/kele.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 24 KiB |
34476
textures/kele.x
Normal file
34476
textures/kele.x
Normal file
File diff suppressed because it is too large
Load Diff
BIN
textures/kele_egg.png
Normal file
BIN
textures/kele_egg.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 721 B |
Loading…
x
Reference in New Issue
Block a user