forked from epCode/extra_mobs
Update 'fox.lua'
This commit is contained in:
parent
f89c50300d
commit
a23ff082a8
10
fox.lua
10
fox.lua
|
@ -18,6 +18,13 @@ local S = minetest.get_translator("extra_mobs")
|
||||||
--################### fox
|
--################### fox
|
||||||
--###################
|
--###################
|
||||||
|
|
||||||
|
local followitem = ""
|
||||||
|
if minetest.get_modpath("mc_sweet_berry") then
|
||||||
|
followitem = "mc_sweet_berry:sweet_berry"
|
||||||
|
else
|
||||||
|
followitem = nil
|
||||||
|
end
|
||||||
|
|
||||||
local fox = {
|
local fox = {
|
||||||
type = "monster",
|
type = "monster",
|
||||||
passive = false,
|
passive = false,
|
||||||
|
@ -108,9 +115,10 @@ local fox = {
|
||||||
do_punch = function(self)
|
do_punch = function(self)
|
||||||
self.state = "runaway"
|
self.state = "runaway"
|
||||||
end,
|
end,
|
||||||
|
follow = followitem,
|
||||||
fear_height = 4,
|
fear_height = 4,
|
||||||
view_range = 16,
|
view_range = 16,
|
||||||
specific_attack = { "mobs_mc:cow", "mobs_mc:sheep", "mobs_mc:chicken" },
|
specific_attack = { "mobs_mc:chicken", "extra_mobs:cod", "extra_mobs:salmon" },
|
||||||
}
|
}
|
||||||
|
|
||||||
mobs:register_mob("extra_mobs:fox", fox)
|
mobs:register_mob("extra_mobs:fox", fox)
|
||||||
|
|
Loading…
Reference in New Issue