version 0.21
This commit is contained in:
parent
bd1233aaf1
commit
c8d70b992c
1717 changed files with 68882 additions and 0 deletions
37
mods/mobs/herobrine.lua
Normal file
37
mods/mobs/herobrine.lua
Normal file
|
@ -0,0 +1,37 @@
|
|||
mobs:register_mob("mobs:herobrine", {
|
||||
type = "monster",
|
||||
hp_max = 120,
|
||||
collisionbox = {-0.4, -1.3, -0.4, 0.4, 1, 0.4},
|
||||
visual = "mesh",
|
||||
mesh = "creatures_herobrine.x",
|
||||
textures = {"mobs_herobrine.png"},
|
||||
makes_footstep_sound = true,
|
||||
view_range = 10,
|
||||
walk_velocity = 4.8,
|
||||
run_velocity = 5.1,
|
||||
on_rightclick = nil,
|
||||
drops = {
|
||||
{name = "mobs:rotten_flesh",
|
||||
chance = 1,
|
||||
min = 1,
|
||||
max = 3,},
|
||||
},
|
||||
jump = 0,
|
||||
damage = 9999,
|
||||
armor = 100,
|
||||
drawtype = "front",
|
||||
lava_damage = 0,
|
||||
light_damage = 0,
|
||||
attack_type = "dogfight",
|
||||
animation = {
|
||||
speed_normal = 10,
|
||||
speed_run = 30,
|
||||
stand_start = 0,
|
||||
stand_end = 79,
|
||||
walk_start = 168,
|
||||
walk_end = 187,
|
||||
die_start = 162,
|
||||
die_end = 166,
|
||||
},
|
||||
})
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue