forked from VoxeLibre/VoxeLibre
Fix and overhaul wolves
This commit is contained in:
parent
aac1e19336
commit
408296140a
|
@ -129,7 +129,14 @@ end
|
|||
mobs.group_attack_initialization = function(self)
|
||||
|
||||
--get basic data
|
||||
local friends_list = table_copy(self.group_attack)
|
||||
local friends_list
|
||||
|
||||
if self.group_attack == true then
|
||||
friends_list = {self.name}
|
||||
else
|
||||
friends_list = table_copy(self.group_attack)
|
||||
end
|
||||
|
||||
local objects_in_area = minetest_get_objects_inside_radius(self.object:get_pos(), self.view_range)
|
||||
|
||||
--get the player's name
|
||||
|
|
|
@ -22,13 +22,15 @@ local wolf = {
|
|||
type = "animal",
|
||||
spawn_class = "passive",
|
||||
can_despawn = true,
|
||||
neutral = true,
|
||||
hp_min = 8,
|
||||
hp_max = 8,
|
||||
xp_min = 1,
|
||||
xp_max = 3,
|
||||
rotate = 270,
|
||||
passive = false,
|
||||
group_attack = true,
|
||||
collisionbox = {-0.3, -0.01, -0.3, 0.3, 0.84, 0.3},
|
||||
collisionbox = {-0.3, -0.00, -0.3, 0.3, 0.85, 0.3},
|
||||
visual = "mesh",
|
||||
mesh = "mobs_mc_wolf.b3d",
|
||||
textures = {
|
||||
|
@ -52,7 +54,7 @@ local wolf = {
|
|||
run_velocity = 3,
|
||||
damage = 4,
|
||||
reach = 2,
|
||||
attack_type = "dogfight",
|
||||
attack_type = "punch",
|
||||
fear_height = 4,
|
||||
follow = mobs_mc.follow.wolf,
|
||||
on_rightclick = function(self, clicker)
|
||||
|
|
Loading…
Reference in New Issue