smart_mobs/cow.lua

129 lines
3.4 KiB
Lua
Raw Normal View History

2014-11-09 11:13:11 -08:00
-- Cow by Krupnovpavel
mobs:register_mob("mobs:cow", {
-- animal, monster, npc, barbarian
2014-11-09 11:13:11 -08:00
type = "animal",
-- aggressive, does 4 damage to player when threatened
passive = false,
attack_type = "dogfight",
damage = 4,
-- health & armor
hp_min = 5, hp_max = 20, armor = 200,
-- textures and model
2014-11-09 11:13:11 -08:00
collisionbox = {-0.4, -0.01, -0.4, 0.4, 1, 0.4},
visual = "mesh",
mesh = "mobs_cow.x",
drawtype = "front",
2014-12-03 11:45:18 -08:00
available_textures = {
total = 1,
texture_1 = {"mobs_cow.png"},
},
blood_texture = "mobs_blood.png",
-- sounds
2014-11-09 11:13:11 -08:00
makes_footstep_sound = true,
sounds = {
random = "mobs_cow",
},
-- speed and jump
2014-11-09 11:13:11 -08:00
walk_velocity = 1,
run_velocity = 2,
jump = true,
-- drops raw meat when dead
2014-11-09 11:13:11 -08:00
drops = {
{name = "mobs:meat_raw",
chance = 1, min = 5, max = 10},
2014-11-09 11:13:11 -08:00
},
-- damaged by
2014-11-09 11:13:11 -08:00
water_damage = 1,
lava_damage = 5,
light_damage = 0,
-- model animation
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 11:13:11 -08:00
},
-- follows wheat
follow = "farming:wheat", view_range = 7,
2014-11-09 11:13:11 -08:00
-- right-click cow with empty bucket to get milk, then feed 8 wheat to replenish milk
on_rightclick = function(self, clicker)
local tool = clicker:get_wielded_item()
2014-11-09 11:13:11 -08:00
if tool:get_name() == "bucket:bucket_empty" then
if self.gotten then return end
2014-11-09 11:13:11 -08:00
clicker:get_inventory():remove_item("main", "bucket:bucket_empty")
clicker:get_inventory():add_item("main", "mobs:bucket_milk")
self.gotten = true -- milked
2014-11-09 11:13:11 -08:00
end
if tool:get_name() == "farming:wheat" and self.gotten then
if not minetest.setting_getbool("creative_mode") then
tool:take_item(1)
clicker:set_wielded_item(tool)
end
self.food = (self.food or 0) + 1
if self.food >= 8 then
self.food = 0
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 11:13:11 -08:00
end
return tool
end
end,
})
-- spawn on default;green;prairie grass between 0 and 20 light, 1 in 11000 chance, 1 cow in area up to 31000 in height
2014-11-09 11:13:11 -08:00
mobs:register_spawn("mobs:cow", {"default:dirt_with_grass", "ethereal:green_dirt_top", "ethereal:prairie_dirt"}, 20, 0, 11000, 1, 31000)
-- register spawn egg
2015-02-20 08:37:36 -08:00
mobs:register_egg("mobs:cow", "Cow", "default_grass.png", 1)
2014-11-09 11:13:11 -08:00
-- Bucket of Milk
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'),
})
-- Cheese Wedge
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"}}
})
-- Cheese Block
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'},
}
})