mobs/sheep.lua

173 lines
4.3 KiB
Lua
Raw Normal View History

2014-11-09 19:13:11 +00:00
2015-07-11 20:07:04 +01:00
local all_colours = {
"grey", "black", "red", "yellow", "green", "cyan", "blue", "magenta",
2015-08-09 11:31:35 +01:00
"white", "orange", "violet", "brown", "pink", "dark_grey", "dark_green"
2015-07-11 20:07:04 +01:00
}
-- Sheep by PilzAdam
2014-11-09 19:13:11 +00:00
2015-08-09 11:31:35 +01:00
for _, col in ipairs(all_colours) do
2015-05-20 15:50:16 +01:00
2015-08-09 11:31:35 +01:00
mobs:register_mob("mobs:sheep_"..col, {
type = "animal",
passive = true,
hp_min = 8,
hp_max = 10,
armor = 200,
collisionbox = {-0.4, -1, -0.4, 0.4, 0.3, 0.4},
visual = "mesh",
mesh = "mobs_sheep.b3d",
textures = {
{"mobs_sheep_"..col..".png"},
},
gotten_texture = {"mobs_sheep_shaved.png"},
gotten_mesh = "mobs_sheep_shaved.b3d",
makes_footstep_sound = true,
sounds = {
random = "mobs_sheep",
},
walk_velocity = 1,
jump = true,
drops = {
{name = "mobs:meat_raw",
2015-11-13 10:18:36 +00:00
chance = 1, min = 1, max = 2},
2015-08-09 11:31:35 +01:00
{name = "wool:"..col,
chance = 1, min = 1, max = 1},
},
water_damage = 1,
lava_damage = 5,
light_damage = 0,
animation = {
speed_normal = 15,
speed_run = 15,
stand_start = 0,
stand_end = 80,
walk_start = 81,
walk_end = 100,
},
follow = {"farming:wheat", "default:grass_5"},
2015-10-27 14:30:42 +00:00
view_range = 8,
replace_rate = 10,
2015-08-09 11:31:35 +01:00
replace_what = {"default:grass_3", "default:grass_4", "default:grass_5", "farming:wheat_8"},
replace_with = "air",
replace_offset = -1,
on_rightclick = function(self, clicker)
local shpcolor = string.split(self.name,"_")[2]
if shpcolor =="dark" then
shpcolor = shpcolor.."_"..string.split(self.name,"_")[3]
2014-11-09 19:13:11 +00:00
end
2015-04-09 15:15:47 +01:00
2015-08-09 11:31:35 +01:00
--are we feeding?
2015-09-18 21:31:16 +01:00
if mobs:feed_tame(self, clicker, 8, true, true) then
2015-08-09 11:31:35 +01:00
--if full grow fuzz
if self.gotten == false then
self.object:set_properties({
textures = {"mobs_sheep_"..shpcolor..".png"},
mesh = "mobs_sheep.b3d",
2015-07-16 15:06:45 +01:00
})
end
2015-08-09 11:31:35 +01:00
return
2014-11-09 19:13:11 +00:00
end
2015-04-11 17:40:13 +01:00
2015-08-09 11:31:35 +01:00
local item = clicker:get_wielded_item()
local itemname = item:get_name()
--are we giving a haircut>
if itemname == "mobs:shears" then
if self.gotten == false and self.child == false then
self.gotten = true -- shaved
if minetest.get_modpath("wool") then
local pos = self.object:getpos()
pos.y = pos.y + 0.5
2015-11-13 10:18:36 +00:00
local obj = minetest.add_item(pos, ItemStack("wool:"..shpcolor.." "..math.random(1,3)))
2015-08-09 11:31:35 +01:00
if obj then
obj:setvelocity({
x = math.random(-1,1),
y = 5,
z = math.random(-1,1)
})
end
item:add_wear(650) -- 100 uses
clicker:set_wielded_item(item)
end
self.object:set_properties({
textures = {"mobs_sheep_shaved.png"},
mesh = "mobs_sheep_shaved.b3d",
})
2015-07-11 20:07:04 +01:00
end
return
end
2015-08-09 11:31:35 +01:00
local name = clicker:get_player_name()
--are we coloring?
if itemname:find("dye:") then
if self.gotten == false and self.child == false and self.tamed == true and name == self.owner then
local col = string.split(itemname,":")[2]
for _,c in pairs(all_colours) do
if c == col then
local pos = self.object:getpos()
self.object:remove()
local mob = minetest.add_entity(pos, "mobs:sheep_"..col)
local ent = mob:get_luaentity()
ent.owner = name
ent.tamed = true
-- take item
if not minetest.setting_getbool("creative_mode") then
item:take_item()
clicker:set_wielded_item(item)
end
break
end
end
2015-07-11 20:07:04 +01:00
end
2015-08-09 11:31:35 +01:00
return
2015-07-11 20:07:04 +01:00
end
2015-08-09 11:31:35 +01:00
--are we capturing?
mobs:capture_mob(self, clicker, 0, 5, 60, false, nil)
2015-07-11 20:07:04 +01:00
end
2015-08-09 11:31:35 +01:00
})
2015-07-11 20:07:04 +01:00
2015-08-09 11:31:35 +01:00
mobs:register_egg("mobs:sheep_"..col, "Sheep ("..col..")", "wool_"..col..".png", 1)
2015-07-12 20:43:57 +01:00
2015-08-09 11:31:35 +01:00
end
2015-07-11 20:07:04 +01:00
2015-11-23 17:03:39 +00:00
mobs:register_spawn("mobs:sheep_white", {"default:dirt_with_grass", "ethereal:green_dirt"}, 20, 10, 15000, 2, 31000)
2015-07-11 20:07:04 +01:00
-- compatibility (item and entity)
minetest.register_alias("mobs:sheep", "mobs:sheep_white")
minetest.register_entity("mobs:sheep", {
hp_max = 1,
physical = true,
collide_with_objects = true,
visual = "mesh",
mesh = "mobs_sheep.b3d",
visual_size = {x = 1, y = 1},
textures = {"mobs_sheep.png"},
velocity = {x = 0, y = 0, z = 0},
collisionbox = {-0.4, -1, -0.4, 0.4, 0.3, 0.4},
is_visible = true,
speed = 0,
timer = 0,
on_rightclick = function(self, clicker)
clicker:get_inventory():add_item("main", "mobs:sheep_white")
self.object:remove()
end,
on_step = function(self, dtime)
self.timer = self.timer + dtime
if self.timer >= 1 then
self.timer = 0
self.object:setacceleration({
x = 0,
y = -10,
z = 0
})
end
end,
})