More Minecraft-like mob health
This commit is contained in:
parent
709079f407
commit
27d7775e98
13 changed files with 18 additions and 2 deletions
|
@ -10,6 +10,7 @@ mobs:register_mob("mobs_mc:greensmall", {
|
|||
type = "monster",
|
||||
pathfinding = true,
|
||||
group_attack = true,
|
||||
hp_min = 1,
|
||||
hp_max = 1,
|
||||
collisionbox = {-0.2, -0.4, -0.2, 0.2, 0.2, 0.2},
|
||||
visual_size = {x=0.5, y=0.5},
|
||||
|
@ -68,6 +69,7 @@ mobs:register_mob("mobs_mc:greenmedium", {
|
|||
type = "monster",
|
||||
pathfinding = true,
|
||||
group_attack = true,
|
||||
hp_min = 4,
|
||||
hp_max = 4,
|
||||
collisionbox = {-0.55, -0.55, -0.55, 0.55, 0.55, 0.55},
|
||||
visual_size = {x=1.0, y=1.0},
|
||||
|
@ -128,6 +130,7 @@ mobs:register_mob("mobs_mc:greenbig", {
|
|||
type = "monster",
|
||||
pathfinding = true,
|
||||
group_attack = true,
|
||||
hp_min = 16,
|
||||
hp_max = 16,
|
||||
collisionbox = {-0.75, -0.75, -0.75, 0.75, 0.75, 0.75},
|
||||
visual_size = {x=1.5, y=1.5},
|
||||
|
@ -192,6 +195,7 @@ mobs:register_mob("mobs_mc:lavasmall", {
|
|||
type = "monster",
|
||||
pathfinding = true,
|
||||
group_attack = true,
|
||||
hp_min = 4,
|
||||
hp_max = 4,
|
||||
collisionbox = {-0.2, -0.4, -0.2, 0.2, 0.2, 0.2},
|
||||
visual_size = {x=0.5, y=0.5},
|
||||
|
@ -245,6 +249,7 @@ mobs:register_mob("mobs_mc:lavabig", {
|
|||
type = "monster",
|
||||
pathfinding = true,
|
||||
group_attack = true,
|
||||
hp_min = 16,
|
||||
hp_max = 16,
|
||||
collisionbox = {-0.75, -0.75, -0.75, 0.75, 0.75, 0.75},
|
||||
visual_size = {x=1.5, y=1.5},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue