2016-04-15 15:59:43 +02:00
|
|
|
|
2022-01-20 09:55:41 +01:00
|
|
|
local S = mobs.intllib_animal
|
2016-06-11 12:14:08 +02:00
|
|
|
|
2022-10-11 12:09:19 +02:00
|
|
|
local random = math.random
|
|
|
|
|
2016-04-15 15:59:43 +02:00
|
|
|
local all_colours = {
|
2016-06-11 12:14:08 +02:00
|
|
|
{"black", S("Black"), "#000000b0"},
|
|
|
|
{"blue", S("Blue"), "#015dbb70"},
|
|
|
|
{"brown", S("Brown"), "#663300a0"},
|
|
|
|
{"cyan", S("Cyan"), "#01ffd870"},
|
|
|
|
{"dark_green", S("Dark Green"), "#005b0770"},
|
|
|
|
{"dark_grey", S("Dark Grey"), "#303030b0"},
|
|
|
|
{"green", S("Green"), "#61ff0170"},
|
|
|
|
{"grey", S("Grey"), "#5b5b5bb0"},
|
|
|
|
{"magenta", S("Magenta"), "#ff05bb70"},
|
|
|
|
{"orange", S("Orange"), "#ff840170"},
|
|
|
|
{"pink", S("Pink"), "#ff65b570"},
|
|
|
|
{"red", S("Red"), "#ff0000a0"},
|
|
|
|
{"violet", S("Violet"), "#2000c970"},
|
|
|
|
{"white", S("White"), "#abababc0"},
|
2022-01-20 09:55:41 +01:00
|
|
|
{"yellow", S("Yellow"), "#e3ff0070"}
|
2016-04-15 15:59:43 +02:00
|
|
|
}
|
|
|
|
|
2017-02-21 16:23:03 +01:00
|
|
|
|
2016-04-15 15:59:43 +02:00
|
|
|
-- Sheep by PilzAdam, texture converted to minetest by AMMOnym from Summerfield pack
|
|
|
|
|
2017-02-21 16:23:03 +01:00
|
|
|
for _, col in ipairs(all_colours) do
|
2016-04-15 15:59:43 +02:00
|
|
|
|
2022-09-17 09:25:38 +02:00
|
|
|
local drops_normal = {
|
|
|
|
{name = "mobs:mutton_raw", chance = 1, min = 1, max = 2},
|
|
|
|
{name = "wool:" .. col[1], chance = 1, min = 1, max = 1}
|
|
|
|
}
|
|
|
|
|
|
|
|
local drops_gotten = {
|
|
|
|
{name = "mobs:mutton_raw", chance = 1, min = 1, max = 2}
|
|
|
|
}
|
|
|
|
|
2016-04-15 15:59:43 +02:00
|
|
|
mobs:register_mob("mobs_animal:sheep_"..col[1], {
|
2019-01-24 12:11:25 +01:00
|
|
|
stay_near = {"farming:straw", 10},
|
|
|
|
stepheight = 0.6,
|
2016-04-15 15:59:43 +02:00
|
|
|
type = "animal",
|
|
|
|
passive = true,
|
|
|
|
hp_min = 8,
|
|
|
|
hp_max = 10,
|
|
|
|
armor = 200,
|
|
|
|
collisionbox = {-0.5, -1, -0.5, 0.5, 0.3, 0.5},
|
|
|
|
visual = "mesh",
|
|
|
|
mesh = "mobs_sheep.b3d",
|
|
|
|
textures = {
|
2022-01-20 09:55:41 +01:00
|
|
|
{"mobs_sheep_base.png^(mobs_sheep_wool.png^[colorize:" .. col[3] .. ")"}
|
2016-04-15 15:59:43 +02:00
|
|
|
},
|
|
|
|
gotten_texture = {"mobs_sheep_shaved.png"},
|
|
|
|
gotten_mesh = "mobs_sheep_shaved.b3d",
|
|
|
|
makes_footstep_sound = true,
|
|
|
|
sounds = {
|
2022-01-20 09:55:41 +01:00
|
|
|
random = "mobs_sheep"
|
2016-04-15 15:59:43 +02:00
|
|
|
},
|
|
|
|
walk_velocity = 1,
|
|
|
|
run_velocity = 2,
|
|
|
|
runaway = true,
|
|
|
|
jump = true,
|
2018-01-26 15:29:15 +01:00
|
|
|
jump_height = 6,
|
2018-09-14 18:12:22 +02:00
|
|
|
pushable = true,
|
2022-09-17 09:25:38 +02:00
|
|
|
drops = drops_normal,
|
2019-02-11 10:10:51 +01:00
|
|
|
water_damage = 0,
|
2016-04-15 15:59:43 +02:00
|
|
|
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,
|
2020-12-06 09:57:16 +01:00
|
|
|
|
|
|
|
die_start = 1, -- we dont have a specific death animation so we will
|
|
|
|
die_end = 2, -- re-use 2 standing frames at a speed of 1 fps and
|
|
|
|
die_speed = 1, -- have mob rotate when dying.
|
|
|
|
die_loop = false,
|
2022-01-20 09:55:41 +01:00
|
|
|
die_rotate = true
|
2016-04-15 15:59:43 +02:00
|
|
|
},
|
2020-09-06 21:29:47 +02:00
|
|
|
follow = {
|
|
|
|
"farming:wheat", "default:grass_1", "farming:barley",
|
|
|
|
"farming:oat", "farming:rye"
|
|
|
|
},
|
2016-04-15 15:59:43 +02:00
|
|
|
view_range = 8,
|
|
|
|
replace_rate = 10,
|
2018-11-26 18:47:15 +01:00
|
|
|
replace_what = {
|
|
|
|
{"group:grass", "air", -1},
|
|
|
|
{"default:dirt_with_grass", "default:dirt", -2}
|
|
|
|
},
|
2016-04-15 15:59:43 +02:00
|
|
|
fear_height = 3,
|
2022-09-27 10:15:59 +02:00
|
|
|
|
2017-07-09 15:09:34 +02:00
|
|
|
on_replace = function(self, pos, oldnode, newnode)
|
2018-11-26 18:47:15 +01:00
|
|
|
|
|
|
|
self.food = (self.food or 0) + 1
|
|
|
|
|
|
|
|
-- if sheep replaces 8x grass then it regrows wool
|
|
|
|
if self.food >= 8 then
|
|
|
|
|
|
|
|
self.food = 0
|
|
|
|
self.gotten = false
|
2022-09-17 09:25:38 +02:00
|
|
|
self.drops = drops_normal
|
2018-11-26 18:47:15 +01:00
|
|
|
|
|
|
|
self.object:set_properties({
|
2022-09-27 10:15:59 +02:00
|
|
|
textures = {
|
|
|
|
"mobs_sheep_base.png^(mobs_sheep_wool.png^[colorize:"
|
|
|
|
.. col[3] .. ")"
|
|
|
|
},
|
2018-11-26 18:47:15 +01:00
|
|
|
mesh = "mobs_sheep.b3d",
|
|
|
|
})
|
|
|
|
end
|
2017-07-09 15:09:34 +02:00
|
|
|
end,
|
2022-09-27 10:15:59 +02:00
|
|
|
|
2016-04-15 15:59:43 +02:00
|
|
|
on_rightclick = function(self, clicker)
|
|
|
|
|
|
|
|
--are we feeding?
|
|
|
|
if mobs:feed_tame(self, clicker, 8, true, true) then
|
|
|
|
|
2020-12-06 09:57:16 +01:00
|
|
|
--if fed 7 times then sheep regrows wool
|
2018-12-16 21:27:41 +01:00
|
|
|
if self.food and self.food > 6 then
|
2018-11-26 18:47:15 +01:00
|
|
|
|
|
|
|
self.gotten = false
|
2022-09-17 09:25:38 +02:00
|
|
|
self.drops = drops_normal
|
2016-04-15 15:59:43 +02:00
|
|
|
|
|
|
|
self.object:set_properties({
|
2022-09-27 10:15:59 +02:00
|
|
|
textures = {
|
|
|
|
"mobs_sheep_base.png^(mobs_sheep_wool.png^[colorize:"
|
|
|
|
.. col[3] .. ")"
|
|
|
|
},
|
2022-01-20 09:55:41 +01:00
|
|
|
mesh = "mobs_sheep.b3d"
|
2016-04-15 15:59:43 +02:00
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local item = clicker:get_wielded_item()
|
|
|
|
local itemname = item:get_name()
|
2018-01-22 17:09:22 +01:00
|
|
|
local name = clicker:get_player_name()
|
2016-04-15 15:59:43 +02:00
|
|
|
|
|
|
|
--are we giving a haircut>
|
|
|
|
if itemname == "mobs:shears" then
|
|
|
|
|
|
|
|
if self.gotten ~= false
|
2016-05-26 22:35:09 +02:00
|
|
|
or self.child ~= false
|
2018-01-22 17:09:22 +01:00
|
|
|
or name ~= self.owner
|
2016-05-26 22:35:09 +02:00
|
|
|
or not minetest.get_modpath("wool") then
|
2016-04-15 15:59:43 +02:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
self.gotten = true -- shaved
|
2022-09-17 09:25:38 +02:00
|
|
|
self.drops = drops_gotten
|
2016-04-15 15:59:43 +02:00
|
|
|
|
|
|
|
local obj = minetest.add_item(
|
2017-10-09 16:16:05 +02:00
|
|
|
self.object:get_pos(),
|
2022-10-11 12:09:19 +02:00
|
|
|
ItemStack("wool:" .. col[1] .. " " .. random(3))
|
2016-04-15 15:59:43 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
if obj then
|
|
|
|
|
2022-10-11 12:09:19 +02:00
|
|
|
obj:set_velocity({
|
|
|
|
x = random(-1, 1),
|
2016-04-15 15:59:43 +02:00
|
|
|
y = 5,
|
2022-10-11 12:09:19 +02:00
|
|
|
z = random(-1, 1)
|
2016-04-15 15:59:43 +02:00
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
item:add_wear(650) -- 100 uses
|
|
|
|
|
|
|
|
clicker:set_wielded_item(item)
|
|
|
|
|
|
|
|
self.object:set_properties({
|
|
|
|
textures = {"mobs_sheep_shaved.png"},
|
2022-09-27 10:15:59 +02:00
|
|
|
mesh = "mobs_sheep_shaved.b3d"
|
2016-04-15 15:59:43 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
--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 colr = string.split(itemname, ":")[2]
|
|
|
|
|
|
|
|
for _,c in pairs(all_colours) do
|
|
|
|
|
|
|
|
if c[1] == colr then
|
|
|
|
|
2017-10-09 16:16:05 +02:00
|
|
|
local pos = self.object:get_pos()
|
2016-04-15 15:59:43 +02:00
|
|
|
|
|
|
|
self.object:remove()
|
|
|
|
|
|
|
|
local mob = minetest.add_entity(pos, "mobs_animal:sheep_" .. colr)
|
|
|
|
local ent = mob:get_luaentity()
|
|
|
|
|
|
|
|
ent.owner = name
|
|
|
|
ent.tamed = true
|
2022-11-16 10:50:57 +01:00
|
|
|
ent.protected = self.protected
|
|
|
|
ent.fire_damage = self.fire_damage
|
2016-04-15 15:59:43 +02:00
|
|
|
|
|
|
|
-- take item
|
2017-10-09 12:57:20 +02:00
|
|
|
if not mobs.is_creative(clicker:get_player_name()) then
|
2016-04-15 15:59:43 +02:00
|
|
|
item:take_item()
|
|
|
|
clicker:set_wielded_item(item)
|
|
|
|
end
|
|
|
|
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2016-11-08 17:11:49 +01:00
|
|
|
-- protect mod with mobs:protector item
|
2017-04-27 15:00:57 +02:00
|
|
|
if mobs:protect(self, clicker) then return end
|
2016-11-08 17:11:49 +01:00
|
|
|
|
2016-04-15 15:59:43 +02:00
|
|
|
--are we capturing?
|
2017-04-27 15:00:57 +02:00
|
|
|
if mobs:capture_mob(self, clicker, 0, 5, 60, false, nil) then return end
|
2016-04-15 15:59:43 +02:00
|
|
|
end
|
|
|
|
})
|
|
|
|
|
2022-09-27 10:15:59 +02:00
|
|
|
-- spawn egg
|
|
|
|
mobs:register_egg("mobs_animal:sheep_"..col[1], S("@1 Sheep", col[2]),
|
|
|
|
"wool_"..col[1]..".png^mobs_sheep_inv.png")
|
2016-04-15 15:59:43 +02:00
|
|
|
|
2016-04-15 16:23:37 +02:00
|
|
|
-- compatibility
|
|
|
|
mobs:alias_mob("mobs:sheep_" .. col[1], "mobs_animal:sheep_" .. col[1])
|
2016-04-15 15:59:43 +02:00
|
|
|
|
|
|
|
end
|
|
|
|
|
2017-02-21 16:23:03 +01:00
|
|
|
|
2020-09-21 10:48:45 +02:00
|
|
|
if not mobs.custom_spawn_animal then
|
2022-09-27 10:15:59 +02:00
|
|
|
|
|
|
|
mobs:spawn({
|
|
|
|
name = "mobs_animal:sheep_white",
|
|
|
|
nodes = {"default:dirt_with_grass", "ethereal:green_dirt"},
|
|
|
|
neighbors = {"group:grass"},
|
|
|
|
min_light = 14,
|
|
|
|
interval = 60,
|
|
|
|
chance = 8000,
|
|
|
|
min_height = 0,
|
|
|
|
max_height = 200,
|
2022-10-11 12:09:19 +02:00
|
|
|
day_toggle = true,
|
|
|
|
active_object_count = 3,
|
|
|
|
|
|
|
|
-- custom function to spawn sheep herds around main mob
|
|
|
|
on_spawn = function(self, pos)
|
|
|
|
|
|
|
|
local nods = minetest.find_nodes_in_area_under_air(
|
|
|
|
{x = pos.x - 4, y = pos.y - 3, z = pos.z - 4},
|
|
|
|
{x = pos.x + 4, y = pos.y + 3, z = pos.z + 4},
|
|
|
|
{"default:dirt_with_grass", "ethereal:green_dirt"})
|
|
|
|
|
|
|
|
if nods and #nods > 0 then
|
|
|
|
|
|
|
|
-- min herd of 3
|
|
|
|
local iter = math.min(#nods, 3)
|
|
|
|
|
|
|
|
-- print("--- sheep at", minetest.pos_to_string(pos), iter)
|
|
|
|
|
|
|
|
for n = 1, iter do
|
|
|
|
|
|
|
|
-- 1/8 chance of black sheep, 1/4 chance of baby sheep
|
2022-10-11 13:05:56 +02:00
|
|
|
local pos2 = nods[random(#nods)]
|
2022-10-11 12:09:19 +02:00
|
|
|
local type = random(8) == 1 and "_black" or "_white"
|
|
|
|
local kid = random(4) == 1 and true or nil
|
|
|
|
|
2022-10-11 13:05:56 +02:00
|
|
|
pos2.y = pos2.y + 2
|
|
|
|
|
|
|
|
if minetest.get_node(pos2).name == "air" then
|
|
|
|
|
|
|
|
mobs:add_mob(pos2, {
|
|
|
|
name = "mobs_animal:sheep" .. type, child = kid})
|
|
|
|
end
|
2022-10-11 12:09:19 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2022-09-27 10:15:59 +02:00
|
|
|
})
|
2020-09-21 10:48:45 +02:00
|
|
|
end
|
2016-04-15 15:59:43 +02:00
|
|
|
|
2017-02-21 16:23:03 +01:00
|
|
|
|
|
|
|
mobs:alias_mob("mobs:sheep", "mobs_animal:sheep_white") -- compatibility
|
2018-01-26 15:29:15 +01:00
|
|
|
|
2022-09-27 10:15:59 +02:00
|
|
|
|
2018-01-26 15:29:15 +01:00
|
|
|
-- raw mutton
|
|
|
|
minetest.register_craftitem(":mobs:mutton_raw", {
|
|
|
|
description = S("Raw Mutton"),
|
|
|
|
inventory_image = "mobs_mutton_raw.png",
|
|
|
|
on_use = minetest.item_eat(2),
|
2022-01-20 09:55:41 +01:00
|
|
|
groups = {food_meat_raw = 1, food_mutton_raw = 1, flammable = 2}
|
2018-01-26 15:29:15 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
-- cooked mutton
|
|
|
|
minetest.register_craftitem(":mobs:mutton_cooked", {
|
|
|
|
description = S("Cooked Mutton"),
|
|
|
|
inventory_image = "mobs_mutton_cooked.png",
|
|
|
|
on_use = minetest.item_eat(6),
|
2022-01-20 09:55:41 +01:00
|
|
|
groups = {food_meat = 1, food_mutton = 1, flammable = 2}
|
2018-01-26 15:29:15 +01:00
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
|
|
|
output = "mobs:mutton_cooked",
|
|
|
|
recipe = "mobs:mutton_raw",
|
2022-01-20 09:55:41 +01:00
|
|
|
cooktime = 5
|
2018-01-26 15:29:15 +01:00
|
|
|
})
|