smart_mobs/chicken.lua

150 lines
3.8 KiB
Lua
Raw Normal View History

2014-11-09 11:13:11 -08:00
-- Chicken by JK Murray
2014-11-09 11:13:11 -08:00
mobs:register_mob("mobs:chicken", {
type = "animal",
passive = true,
2015-04-09 07:15:47 -07:00
hp_min = 5,
hp_max = 10,
armor = 200,
2014-11-09 11:13:11 -08:00
collisionbox = {-0.3, -0.75, -0.3, 0.3, 0.1, 0.3},
visual = "mesh",
mesh = "mobs_chicken.x",
textures = {
{"mobs_chicken.png", "mobs_chicken.png", "mobs_chicken.png", "mobs_chicken.png",
"mobs_chicken.png", "mobs_chicken.png", "mobs_chicken.png", "mobs_chicken.png", "mobs_chicken.png"},
{"mobs_chicken_black.png", "mobs_chicken_black.png", "mobs_chicken_black.png", "mobs_chicken_black.png",
"mobs_chicken_black.png", "mobs_chicken_black.png", "mobs_chicken_black.png", "mobs_chicken_black.png", "mobs_chicken_black.png"},
},
child_texture = {
{"mobs_chick.png", "mobs_chick.png", "mobs_chick.png", "mobs_chick.png",
"mobs_chick.png", "mobs_chick.png", "mobs_chick.png", "mobs_chick.png", "mobs_chick.png"},
2014-12-03 11:45:18 -08:00
},
2014-11-09 11:13:11 -08:00
makes_footstep_sound = true,
sounds = {
random = "mobs_chicken",
},
2014-11-09 11:13:11 -08:00
walk_velocity = 1,
jump = true,
2014-11-09 11:13:11 -08:00
drops = {
{name = "mobs:chicken_raw",
chance = 1, min = 2, max = 2},
2014-11-09 11:13:11 -08:00
},
water_damage = 1,
lava_damage = 5,
light_damage = 0,
2015-03-08 08:49:37 -07:00
fall_damage = 0,
fall_speed = -8,
2014-11-09 11:13:11 -08:00
animation = {
speed_normal = 15,
stand_start = 0,
stand_end = 1, -- 20
walk_start = 20,
walk_end = 40,
},
2015-04-09 07:15:47 -07:00
follow = "farming:seed_wheat",
view_range = 5,
2015-05-20 07:50:16 -07:00
replace_rate = 4000,
replace_what = {"air"},
replace_with = "mobs:egg",
on_rightclick = function(self, clicker)
local tool = clicker:get_wielded_item()
2015-05-20 07:50:16 -07:00
local name = clicker:get_player_name()
2015-04-09 07:15:47 -07:00
if tool:get_name() == "farming:seed_wheat" then
2015-05-20 07:50:16 -07:00
-- take item
if not minetest.setting_getbool("creative_mode") then
tool:take_item(1)
clicker:set_wielded_item(tool)
end
2015-05-20 07:50:16 -07:00
-- make child grow quicker
if self.child == true then
self.hornytimer = self.hornytimer + 10
2015-04-09 08:09:10 -07:00
return
end
2015-05-20 07:50:16 -07:00
-- feed and tame
2015-04-09 07:15:47 -07:00
self.food = (self.food or 0) + 1
2015-05-20 07:50:16 -07:00
if self.food > 7 then
self.food = 0
2015-04-09 07:15:47 -07:00
if self.hornytimer == 0 then
self.horny = true
end
self.tamed = true
2015-05-20 07:50:16 -07:00
-- make owner
if self.owner == "" then
2015-05-20 07:50:16 -07:00
self.owner = name
end
minetest.sound_play("mobs_chicken", {
object = self.object,gain = 1.0,
max_hear_distance = 15,
loop = false,
})
end
2015-04-09 08:09:10 -07:00
return
end
mobs:capture_mob(self, clicker, 30, 50, 80, false, nil)
2014-11-09 11:13:11 -08:00
end,
})
2015-04-09 07:15:47 -07:00
mobs:register_spawn("mobs:chicken", {"default:dirt_with_grass", "ethereal:bamboo_dirt"}, 20, 10, 15000, 1, 31000)
2015-04-09 07:15:47 -07:00
2015-02-20 08:37:36 -08:00
mobs:register_egg("mobs:chicken", "Chicken", "mobs_chicken_inv.png", 0)
2014-11-09 11:13:11 -08:00
2015-04-09 07:15:47 -07:00
-- egg
minetest.register_node("mobs:egg", {
description = "Chicken Egg",
tiles = {"mobs_chicken_egg.png"},
inventory_image = "mobs_chicken_egg.png",
visual_scale = 0.7,
drawtype = "plantlike",
wield_image = "mobs_chicken_egg.png",
paramtype = "light",
walkable = false,
is_ground_content = true,
sunlight_propagates = true,
selection_box = {
type = "fixed",
fixed = {-0.2, -0.5, -0.2, 0.2, 0, 0.2}
},
groups = {snappy=2, dig_immediate=3},
after_place_node = function(pos, placer, itemstack)
if placer:is_player() then
minetest.set_node(pos, {name="mobs:egg", param2=1})
2014-11-09 11:13:11 -08:00
end
end
2014-11-09 11:13:11 -08:00
})
2015-04-09 07:15:47 -07:00
-- fried egg
2014-11-09 11:13:11 -08:00
minetest.register_craftitem("mobs:chicken_egg_fried", {
description = "Fried Egg",
inventory_image = "mobs_chicken_egg_fried.png",
on_use = minetest.item_eat(2),
})
minetest.register_craft({
type = "cooking",
recipe = "mobs:egg",
output = "mobs:chicken_egg_fried",
})
2015-05-20 07:50:16 -07:00
-- raw chicken
2014-11-09 11:13:11 -08:00
minetest.register_craftitem("mobs:chicken_raw", {
description = "Raw Chicken",
inventory_image = "mobs_chicken_raw.png",
on_use = minetest.item_eat(2),
})
2015-05-20 07:50:16 -07:00
-- cooked chicken
2014-11-09 11:13:11 -08:00
minetest.register_craftitem("mobs:chicken_cooked", {
description = "Cooked Chicken",
inventory_image = "mobs_chicken_cooked.png",
on_use = minetest.item_eat(6),
})
minetest.register_craft({
type = "cooking",
recipe = "mobs:chicken_raw",
output = "mobs:chicken_cooked",
})