forked from VoxeLibre/VoxeLibre
animate blaze + fix b3d file + remove light damages
This commit is contained in:
parent
7d88bbb74c
commit
8c7ebcbf45
|
@ -39,24 +39,20 @@ mobs:register_mob("mobs_mc:blaze", {
|
||||||
max = 1,},
|
max = 1,},
|
||||||
},
|
},
|
||||||
animation = {
|
animation = {
|
||||||
speed_normal = 24,
|
stand_start = 1,
|
||||||
speed_run = 48,
|
stand_end = 40,
|
||||||
stand_start = 0,
|
walk_start = 1,
|
||||||
stand_end = 23,
|
walk_end = 40,
|
||||||
walk_start = 24,
|
run_start = 1,
|
||||||
walk_end = 47,
|
run_end = 40,
|
||||||
run_start = 48,
|
shoot_start = 1,
|
||||||
run_end = 62,
|
shoot_end = 40,
|
||||||
hurt_start = 64,
|
|
||||||
hurt_end = 86,
|
|
||||||
death_start = 88,
|
|
||||||
death_end = 118,
|
|
||||||
},
|
},
|
||||||
drawtype = "front",
|
drawtype = "front",
|
||||||
water_damage = 10,
|
water_damage = 10,
|
||||||
lava_damage = 0,
|
lava_damage = 0,
|
||||||
fall_damage = 0,
|
fall_damage = 0,
|
||||||
light_damage = 1,
|
light_damage = 0,
|
||||||
view_range = 16,
|
view_range = 16,
|
||||||
attack_type = "shoot",
|
attack_type = "shoot",
|
||||||
arrow = "mobs_monster:fireball",
|
arrow = "mobs_monster:fireball",
|
||||||
|
@ -70,7 +66,7 @@ mobs:register_mob("mobs_mc:blaze", {
|
||||||
fear_height = 120,
|
fear_height = 120,
|
||||||
})
|
})
|
||||||
|
|
||||||
mobs:register_spawn("mobs_mc:blaze", {"mcl_core:flowing_lava", "nether:rack","air"}, 17, -1, 5000, 1, -2000)
|
mobs:register_spawn("mobs_mc:blaze", {"mcl_core:flowing_lava", "nether:rack","air"}, 30, -1, 5000, 1, -2000)
|
||||||
|
|
||||||
-- compatibility
|
-- compatibility
|
||||||
mobs:alias_mob("mobs:blaze", "mobs_mc:blaze")
|
mobs:alias_mob("mobs:blaze", "mobs_mc:blaze")
|
||||||
|
|
|
@ -28,4 +28,6 @@ dofile(path .. "/spider.lua") -- Spider by AspireMint (fishyWET (CC-BY-SA 3.0 li
|
||||||
dofile(path .. "/enderman.lua") -- maikerumine
|
dofile(path .. "/enderman.lua") -- maikerumine
|
||||||
dofile(path .. "/ghast.lua") -- maikerumine
|
dofile(path .. "/ghast.lua") -- maikerumine
|
||||||
|
|
||||||
|
dofile(path .. "/blaze.lua") -- Animation by daufinsyd
|
||||||
|
|
||||||
print ("[MOD] Mobs Redo 'MC' loaded")
|
print ("[MOD] Mobs Redo 'MC' loaded")
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue