forked from VoxeLibre/VoxeLibre
Increase cow viewing range, disable grass eating
This commit is contained in:
parent
decfd91473
commit
337e9ca17d
|
@ -3,9 +3,6 @@
|
||||||
--made for MC like Survival game
|
--made for MC like Survival game
|
||||||
--License for code WTFPL and otherwise stated in readmes
|
--License for code WTFPL and otherwise stated in readmes
|
||||||
|
|
||||||
|
|
||||||
--dofile(minetest.get_modpath("mobs").."/api.lua")
|
|
||||||
|
|
||||||
mobs:register_mob("mobs_mc:cow", {
|
mobs:register_mob("mobs_mc:cow", {
|
||||||
type = "animal",
|
type = "animal",
|
||||||
hp_min = 10,
|
hp_min = 10,
|
||||||
|
@ -55,31 +52,9 @@ mobs:register_mob("mobs_mc:cow", {
|
||||||
look_start = 78,
|
look_start = 78,
|
||||||
look_end = 108,
|
look_end = 108,
|
||||||
},
|
},
|
||||||
--[[
|
|
||||||
follow = "farming:wheat",
|
|
||||||
view_range = 5,
|
|
||||||
on_rightclick = function(self, clicker)
|
|
||||||
local item = clicker:get_wielded_item()
|
|
||||||
if item:get_name() == "bucket:bucket_empty" and clicker:get_inventory() then
|
|
||||||
local inv = clicker:get_inventory()
|
|
||||||
inv:remove_item("main", "bucket:bucket_empty")
|
|
||||||
-- if room add bucket of milk to inventory, otherwise drop as item
|
|
||||||
if inv:room_for_item("main", {name="mobs:bucket_milk"}) then
|
|
||||||
clicker:get_inventory():add_item("main", "mobs:bucket_milk")
|
|
||||||
else
|
|
||||||
local pos = self.object:getpos()
|
|
||||||
pos.y = pos.y + 0.5
|
|
||||||
minetest.add_item(pos, {name = "mobs:bucket_milk"})
|
|
||||||
end
|
|
||||||
end
|
|
||||||
end,
|
|
||||||
]]
|
|
||||||
--from mobs_animals
|
--from mobs_animals
|
||||||
follow = "mcl_farming:wheat_item",
|
follow = "mcl_farming:wheat_item",
|
||||||
view_range = 7,
|
view_range = 10,
|
||||||
replace_rate = 10,
|
|
||||||
replace_what = {"mcl_core:tallgrass",},
|
|
||||||
replace_with = "air",
|
|
||||||
fear_height = 2,
|
fear_height = 2,
|
||||||
on_rightclick = function(self, clicker)
|
on_rightclick = function(self, clicker)
|
||||||
|
|
||||||
|
@ -93,17 +68,10 @@ mobs:register_mob("mobs_mc:cow", {
|
||||||
-- milk cow with empty bucket
|
-- milk cow with empty bucket
|
||||||
if tool:get_name() == "bucket:bucket_empty" then
|
if tool:get_name() == "bucket:bucket_empty" then
|
||||||
|
|
||||||
--if self.gotten == true
|
|
||||||
if self.child == true then
|
if self.child == true then
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
if self.gotten == true then
|
|
||||||
minetest.chat_send_player(clicker:get_player_name(),
|
|
||||||
"Cow already milked!")
|
|
||||||
return
|
|
||||||
end
|
|
||||||
|
|
||||||
local inv = clicker:get_inventory()
|
local inv = clicker:get_inventory()
|
||||||
|
|
||||||
inv:remove_item("main", "bucket:bucket_empty")
|
inv:remove_item("main", "bucket:bucket_empty")
|
||||||
|
@ -116,8 +84,6 @@ mobs:register_mob("mobs_mc:cow", {
|
||||||
minetest.add_item(pos, {name = "mcl_mobitems:milk_bucket"})
|
minetest.add_item(pos, {name = "mcl_mobitems:milk_bucket"})
|
||||||
end
|
end
|
||||||
|
|
||||||
self.gotten = true -- milked
|
|
||||||
|
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
end,
|
end,
|
||||||
|
|
Loading…
Reference in New Issue