2014-11-09 19:13:11 +00:00
|
|
|
|
|
|
|
-- Cow by Krupnovpavel
|
|
|
|
|
|
|
|
mobs:register_mob("mobs:cow", {
|
|
|
|
type = "animal",
|
2015-03-05 19:20:51 +00:00
|
|
|
passive = false,
|
|
|
|
attack_type = "dogfight",
|
2015-03-06 09:59:56 +00:00
|
|
|
damage = 4,
|
2015-04-09 15:15:47 +01:00
|
|
|
hp_min = 5,
|
|
|
|
hp_max = 20,
|
|
|
|
armor = 200,
|
2014-11-09 19:13:11 +00:00
|
|
|
collisionbox = {-0.4, -0.01, -0.4, 0.4, 1, 0.4},
|
2015-03-05 19:20:51 +00:00
|
|
|
visual = "mesh",
|
|
|
|
mesh = "mobs_cow.x",
|
2015-03-18 20:55:50 +00:00
|
|
|
textures = {
|
|
|
|
{"mobs_cow.png"},
|
2014-12-03 19:45:18 +00:00
|
|
|
},
|
2015-03-13 16:57:39 +00:00
|
|
|
visual_size = {x=1,y=1},
|
2014-11-09 19:13:11 +00:00
|
|
|
makes_footstep_sound = true,
|
2015-03-05 19:20:51 +00:00
|
|
|
sounds = {
|
|
|
|
random = "mobs_cow",
|
|
|
|
},
|
2014-11-09 19:13:11 +00:00
|
|
|
walk_velocity = 1,
|
|
|
|
run_velocity = 2,
|
2015-03-05 19:20:51 +00:00
|
|
|
jump = true,
|
2014-11-09 19:13:11 +00:00
|
|
|
drops = {
|
|
|
|
{name = "mobs:meat_raw",
|
2015-03-05 19:20:51 +00:00
|
|
|
chance = 1, min = 5, max = 10},
|
2015-03-21 19:13:18 +00:00
|
|
|
{name = "mobs:leather",
|
|
|
|
chance = 1, min = 0, max = 3},
|
2014-11-09 19:13:11 +00:00
|
|
|
},
|
|
|
|
water_damage = 1,
|
|
|
|
lava_damage = 5,
|
|
|
|
light_damage = 0,
|
2015-03-05 19:20:51 +00:00
|
|
|
animation = {
|
|
|
|
speed_normal = 15, speed_run = 15,
|
|
|
|
stand_start = 0, stand_end = 30,
|
|
|
|
walk_start = 35, walk_end = 65,
|
|
|
|
run_start = 105, run_end = 135,
|
|
|
|
punch_start = 70, punch_end = 100,
|
2014-11-09 19:13:11 +00:00
|
|
|
},
|
2015-04-09 15:15:47 +01:00
|
|
|
follow = "farming:wheat",
|
|
|
|
view_range = 7,
|
2015-03-10 11:52:00 +00:00
|
|
|
replace_rate = 50,
|
|
|
|
replace_what = {"default:grass_3", "default:grass_4", "default:grass_5", "farming:wheat_8"},
|
|
|
|
replace_with = "air",
|
2014-11-09 19:13:11 +00:00
|
|
|
on_rightclick = function(self, clicker)
|
2014-12-10 10:08:07 +00:00
|
|
|
local tool = clicker:get_wielded_item()
|
2015-04-09 15:15:47 +01:00
|
|
|
if tool:get_name() == "bucket:bucket_empty" then
|
|
|
|
if self.gotten == true
|
|
|
|
or self.child == true then
|
|
|
|
return
|
|
|
|
end
|
2015-03-22 21:36:09 +00:00
|
|
|
local inv = clicker:get_inventory()
|
|
|
|
inv:remove_item("main", "bucket:bucket_empty")
|
|
|
|
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
|
2015-02-20 20:27:32 +00:00
|
|
|
self.gotten = true -- milked
|
2014-11-09 19:13:11 +00:00
|
|
|
end
|
2015-04-09 15:15:47 +01:00
|
|
|
|
|
|
|
if tool:get_name() == "farming:wheat" then
|
2015-02-20 20:27:32 +00:00
|
|
|
if not minetest.setting_getbool("creative_mode") then
|
|
|
|
tool:take_item(1)
|
|
|
|
clicker:set_wielded_item(tool)
|
|
|
|
end
|
2015-03-24 12:12:53 +00:00
|
|
|
if self.child == true then
|
|
|
|
self.hornytimer = self.hornytimer + 10
|
2015-04-09 16:09:10 +01:00
|
|
|
return
|
2015-03-24 12:12:53 +00:00
|
|
|
end
|
2015-04-09 15:15:47 +01:00
|
|
|
self.food = (self.food or 0) + 1
|
2015-02-20 20:27:32 +00:00
|
|
|
if self.food >= 8 then
|
2015-03-13 17:10:46 +00:00
|
|
|
self.food = 0
|
2015-04-09 15:15:47 +01:00
|
|
|
if self.hornytimer == 0 then
|
|
|
|
self.horny = true
|
|
|
|
end
|
2015-02-20 20:27:32 +00:00
|
|
|
self.gotten = false -- ready to be milked again
|
|
|
|
self.tamed = true
|
|
|
|
minetest.sound_play("mobs_cow", {object = self.object,gain = 1.0,max_hear_distance = 32,loop = false,})
|
2014-11-09 19:13:11 +00:00
|
|
|
end
|
2015-04-09 16:09:10 +01:00
|
|
|
return
|
2014-11-09 19:13:11 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
end,
|
|
|
|
})
|
2015-04-09 15:15:47 +01:00
|
|
|
|
2015-03-19 10:39:52 +00:00
|
|
|
mobs:register_spawn("mobs:cow", {"default:dirt_with_grass", "ethereal:green_dirt_top"}, 20, 0, 11000, 1, 31000)
|
2015-04-09 15:15:47 +01:00
|
|
|
|
2015-02-20 16:37:36 +00:00
|
|
|
mobs:register_egg("mobs:cow", "Cow", "default_grass.png", 1)
|
2014-11-09 19:13:11 +00:00
|
|
|
|
2015-04-09 15:15:47 +01:00
|
|
|
-- leather
|
2015-03-21 19:13:18 +00:00
|
|
|
minetest.register_craftitem("mobs:leather", {
|
|
|
|
description = "Leather",
|
|
|
|
inventory_image = "mobs_leather.png",
|
|
|
|
})
|
|
|
|
|
2015-04-09 15:15:47 +01:00
|
|
|
-- bucket of milk
|
2014-11-09 19:13:11 +00:00
|
|
|
minetest.register_craftitem("mobs:bucket_milk", {
|
|
|
|
description = "Bucket of Milk",
|
|
|
|
inventory_image = "mobs_bucket_milk.png",
|
|
|
|
stack_max = 1,
|
|
|
|
on_use = minetest.item_eat(8, 'bucket:bucket_empty'),
|
|
|
|
})
|
|
|
|
|
2015-04-09 15:15:47 +01:00
|
|
|
-- cheese wedge
|
2014-11-09 19:13:11 +00:00
|
|
|
minetest.register_craftitem("mobs:cheese", {
|
|
|
|
description = "Cheese",
|
|
|
|
inventory_image = "mobs_cheese.png",
|
|
|
|
on_use = minetest.item_eat(4),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
|
|
|
output = "mobs:cheese",
|
|
|
|
recipe = "mobs:bucket_milk",
|
|
|
|
cooktime = 5,
|
|
|
|
replacements = {{ "mobs:bucket_milk", "bucket:bucket_empty"}}
|
|
|
|
})
|
|
|
|
|
2015-04-09 15:15:47 +01:00
|
|
|
-- cheese block
|
2014-11-09 19:13:11 +00:00
|
|
|
minetest.register_node("mobs:cheeseblock", {
|
|
|
|
description = "Cheese Block",
|
|
|
|
tiles = {"mobs_cheeseblock.png"},
|
|
|
|
is_ground_content = false,
|
|
|
|
groups = {crumbly=3},
|
|
|
|
sounds = default.node_sound_dirt_defaults()
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "mobs:cheeseblock",
|
|
|
|
recipe = {
|
|
|
|
{'mobs:cheese', 'mobs:cheese', 'mobs:cheese'},
|
|
|
|
{'mobs:cheese', 'mobs:cheese', 'mobs:cheese'},
|
|
|
|
{'mobs:cheese', 'mobs:cheese', 'mobs:cheese'},
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
output = "mobs:cheese 9",
|
|
|
|
recipe = {
|
|
|
|
{'mobs:cheeseblock'},
|
|
|
|
}
|
|
|
|
})
|