2016-04-15 15:59:43 +02:00
|
|
|
|
2016-06-11 12:14:08 +02:00
|
|
|
local S = mobs.intllib
|
|
|
|
|
2017-02-21 16:23:03 +01:00
|
|
|
|
2016-04-15 15:59:43 +02:00
|
|
|
-- Cow by Krupnovpavel (additional texture by JurajVajda)
|
|
|
|
|
|
|
|
mobs:register_mob("mobs_animal:cow", {
|
|
|
|
type = "animal",
|
|
|
|
passive = false,
|
|
|
|
attack_type = "dogfight",
|
2018-06-27 10:42:26 +02:00
|
|
|
attack_npcs = false,
|
2016-04-15 15:59:43 +02:00
|
|
|
reach = 2,
|
|
|
|
damage = 4,
|
|
|
|
hp_min = 5,
|
|
|
|
hp_max = 20,
|
|
|
|
armor = 200,
|
2017-12-30 15:58:13 +01:00
|
|
|
collisionbox = {-0.4, -0.01, -0.4, 0.4, 1.2, 0.4},
|
2016-04-15 15:59:43 +02:00
|
|
|
visual = "mesh",
|
|
|
|
mesh = "mobs_cow.x",
|
|
|
|
textures = {
|
|
|
|
{"mobs_cow.png"},
|
|
|
|
{"mobs_cow2.png"},
|
|
|
|
},
|
|
|
|
makes_footstep_sound = true,
|
|
|
|
sounds = {
|
|
|
|
random = "mobs_cow",
|
|
|
|
},
|
|
|
|
walk_velocity = 1,
|
|
|
|
run_velocity = 2,
|
|
|
|
jump = true,
|
2018-01-26 15:29:15 +01:00
|
|
|
jump_height = 6,
|
2016-04-15 15:59:43 +02:00
|
|
|
drops = {
|
|
|
|
{name = "mobs:meat_raw", chance = 1, min = 1, max = 3},
|
|
|
|
{name = "mobs:leather", chance = 1, min = 1, max = 2},
|
|
|
|
},
|
|
|
|
water_damage = 1,
|
|
|
|
lava_damage = 5,
|
|
|
|
light_damage = 0,
|
|
|
|
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,
|
|
|
|
},
|
|
|
|
follow = "farming:wheat",
|
2017-05-12 11:01:43 +02:00
|
|
|
view_range = 8,
|
2016-04-15 15:59:43 +02:00
|
|
|
replace_rate = 10,
|
2017-03-07 12:50:52 +01:00
|
|
|
-- replace_what = {"default:grass_3", "default:grass_4", "default:grass_5", "farming:wheat_8"},
|
|
|
|
replace_what = {
|
|
|
|
{"group:grass", "air", 0},
|
|
|
|
{"default:dirt_with_grass", "default:dirt", -1}
|
|
|
|
},
|
2016-04-15 15:59:43 +02:00
|
|
|
replace_with = "air",
|
|
|
|
fear_height = 2,
|
|
|
|
on_rightclick = function(self, clicker)
|
|
|
|
|
|
|
|
-- feed or tame
|
2017-04-27 15:00:57 +02:00
|
|
|
if mobs:feed_tame(self, clicker, 8, true, true) then return end
|
|
|
|
if mobs:protect(self, clicker) then return end
|
|
|
|
if mobs:capture_mob(self, clicker, 0, 5, 60, false, nil) then return end
|
2016-04-15 15:59:43 +02:00
|
|
|
|
|
|
|
local tool = clicker:get_wielded_item()
|
2016-11-08 17:11:49 +01:00
|
|
|
local name = clicker:get_player_name()
|
2016-04-15 15:59:43 +02:00
|
|
|
|
|
|
|
-- milk cow with empty bucket
|
|
|
|
if tool:get_name() == "bucket:bucket_empty" then
|
|
|
|
|
|
|
|
--if self.gotten == true
|
|
|
|
if self.child == true then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
if self.gotten == true then
|
2016-11-08 17:11:49 +01:00
|
|
|
minetest.chat_send_player(name,
|
|
|
|
S("Cow already milked!"))
|
2016-04-15 15:59:43 +02:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
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
|
2017-10-09 16:16:05 +02:00
|
|
|
local pos = self.object:get_pos()
|
2016-04-15 15:59:43 +02:00
|
|
|
pos.y = pos.y + 0.5
|
|
|
|
minetest.add_item(pos, {name = "mobs:bucket_milk"})
|
|
|
|
end
|
|
|
|
|
|
|
|
self.gotten = true -- milked
|
|
|
|
|
|
|
|
return
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
})
|
|
|
|
|
2017-02-21 16:23:03 +01:00
|
|
|
|
2016-10-29 17:45:47 +02:00
|
|
|
mobs:spawn({
|
|
|
|
name = "mobs_animal:cow",
|
2018-03-04 16:45:09 +01:00
|
|
|
nodes = {"default:dirt_with_grass", "ethereal:green_dirt"},
|
|
|
|
neighbors = {"group:grass"},
|
2018-05-23 09:56:10 +02:00
|
|
|
min_light = 14,
|
2018-05-16 14:02:23 +02:00
|
|
|
interval = 60,
|
2018-05-23 09:56:10 +02:00
|
|
|
chance = 8000, -- 15000
|
2018-03-04 16:45:09 +01:00
|
|
|
min_height = 5,
|
2018-03-04 15:40:24 +01:00
|
|
|
max_height = 200,
|
2016-10-29 17:45:47 +02:00
|
|
|
day_toggle = true,
|
|
|
|
})
|
2016-04-15 15:59:43 +02:00
|
|
|
|
2017-02-21 16:23:03 +01:00
|
|
|
|
2016-06-11 12:14:08 +02:00
|
|
|
mobs:register_egg("mobs_animal:cow", S("Cow"), "default_grass.png", 1)
|
2016-04-15 15:59:43 +02:00
|
|
|
|
2017-02-21 16:23:03 +01:00
|
|
|
|
|
|
|
mobs:alias_mob("mobs:cow", "mobs_animal:cow") -- compatibility
|
|
|
|
|
2016-04-15 15:59:43 +02:00
|
|
|
|
|
|
|
-- bucket of milk
|
|
|
|
minetest.register_craftitem(":mobs:bucket_milk", {
|
2016-06-11 12:14:08 +02:00
|
|
|
description = S("Bucket of Milk"),
|
2016-04-15 15:59:43 +02:00
|
|
|
inventory_image = "mobs_bucket_milk.png",
|
|
|
|
stack_max = 1,
|
|
|
|
on_use = minetest.item_eat(8, 'bucket:bucket_empty'),
|
2018-03-12 18:17:49 +01:00
|
|
|
groups = {food_milk = 1, flammable = 3},
|
2016-04-15 15:59:43 +02:00
|
|
|
})
|
|
|
|
|
2018-05-06 16:03:59 +02:00
|
|
|
-- butter
|
|
|
|
minetest.register_craftitem(":mobs:butter", {
|
|
|
|
description = S("Butter"),
|
|
|
|
inventory_image = "mobs_butter.png",
|
|
|
|
on_use = minetest.item_eat(1),
|
|
|
|
groups = {food_butter = 1, flammable = 2},
|
|
|
|
})
|
|
|
|
|
|
|
|
if minetest.get_modpath("farming") and farming and farming.mod then
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "shapeless",
|
|
|
|
output = "mobs:butter",
|
|
|
|
recipe = {"mobs:bucket_milk", "farming:salt"},
|
|
|
|
replacements = {{ "mobs:bucket_milk", "bucket:bucket_empty"}}
|
|
|
|
})
|
|
|
|
else -- some saplings are high in sodium so makes a good replacement item
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "shapeless",
|
|
|
|
output = "mobs:butter",
|
|
|
|
recipe = {"mobs:bucket_milk", "default:sapling"},
|
|
|
|
replacements = {{ "mobs:bucket_milk", "bucket:bucket_empty"}}
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
2016-04-15 15:59:43 +02:00
|
|
|
-- cheese wedge
|
|
|
|
minetest.register_craftitem(":mobs:cheese", {
|
2016-06-11 12:14:08 +02:00
|
|
|
description = S("Cheese"),
|
2016-04-15 15:59:43 +02:00
|
|
|
inventory_image = "mobs_cheese.png",
|
|
|
|
on_use = minetest.item_eat(4),
|
2018-03-12 18:17:49 +01:00
|
|
|
groups = {food_cheese = 1, flammable = 2},
|
2016-04-15 15:59:43 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
|
|
|
output = "mobs:cheese",
|
|
|
|
recipe = "mobs:bucket_milk",
|
|
|
|
cooktime = 5,
|
|
|
|
replacements = {{ "mobs:bucket_milk", "bucket:bucket_empty"}}
|
|
|
|
})
|
|
|
|
|
|
|
|
-- cheese block
|
|
|
|
minetest.register_node(":mobs:cheeseblock", {
|
2016-06-11 12:14:08 +02:00
|
|
|
description = S("Cheese Block"),
|
2016-04-15 15:59:43 +02:00
|
|
|
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'},
|
|
|
|
}
|
|
|
|
})
|