2017-05-25 20:39:12 -04:00
|
|
|
--MCmobs v0.4
|
2016-05-19 19:24:06 -04:00
|
|
|
--maikerumine
|
|
|
|
--made for MC like Survival game
|
|
|
|
--License for code WTFPL and otherwise stated in readmes
|
|
|
|
|
|
|
|
|
|
|
|
--dofile(minetest.get_modpath("mobs").."/api.lua")
|
2017-05-25 20:39:12 -04:00
|
|
|
|
2017-05-22 22:27:00 -04:00
|
|
|
--###################
|
|
|
|
--################### CHICKEN
|
|
|
|
--###################
|
2017-05-23 19:03:37 -04:00
|
|
|
--[[
|
2017-05-22 22:27:00 -04:00
|
|
|
mobs:register_mob("mobs_mc:6chicken", {
|
|
|
|
type = "animal",
|
|
|
|
passive = true,
|
|
|
|
runaway = true,
|
|
|
|
stepheight = 1.2,
|
|
|
|
hp_min = 30,
|
|
|
|
hp_max = 60,
|
|
|
|
armor = 150,
|
|
|
|
collisionbox = {-0.35, -0.01, -0.35, 0.35, 2, 0.35},
|
|
|
|
rotate = -180,
|
|
|
|
visual = "mesh",
|
|
|
|
mesh = "chicken.b3d",
|
|
|
|
textures = {
|
|
|
|
{"chicken.png"},
|
|
|
|
},
|
|
|
|
visual_size = {x=3, y=3},
|
|
|
|
walk_velocity = 0.6,
|
|
|
|
run_velocity = 2,
|
|
|
|
jump = true,
|
|
|
|
animation = {
|
|
|
|
speed_normal = 25, speed_run = 50,
|
|
|
|
stand_start = 0, stand_end = 0,
|
|
|
|
walk_start = 0, walk_end = 40,
|
|
|
|
run_start = 0, run_end = 40,
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
mobs:register_egg("mobs_mc:6chicken", "Chicken", "chicken_inv.png", 0)
|
2017-05-23 19:03:37 -04:00
|
|
|
]]
|
2016-05-19 19:24:06 -04:00
|
|
|
|
2017-05-24 19:42:03 -04:00
|
|
|
mobs:register_mob("mobs_mc:chicken", {
|
|
|
|
type = "animal",
|
2017-06-14 19:47:33 -04:00
|
|
|
|
|
|
|
hp_max = 4,
|
|
|
|
collisionbox = {-0.2, -0.01, -0.2, 0.2, 0.7, 0.2},
|
|
|
|
|
2017-05-24 19:42:03 -04:00
|
|
|
rotate = -180,
|
|
|
|
visual = "mesh",
|
|
|
|
mesh = "chicken.b3d",
|
|
|
|
textures = {
|
|
|
|
{"chicken.png"},
|
2017-06-14 19:47:33 -04:00
|
|
|
},
|
|
|
|
visual_size = {x=2.2, y=2.2},
|
|
|
|
|
2017-05-24 19:42:03 -04:00
|
|
|
makes_footstep_sound = true,
|
|
|
|
walk_velocity = 1,
|
|
|
|
drops = {
|
|
|
|
{name = "mobs:chicken_raw",
|
|
|
|
chance = 1,
|
|
|
|
min = 1,
|
|
|
|
max = 1,},
|
|
|
|
{name = "mobs:feather",
|
|
|
|
chance = 1,
|
|
|
|
min = 0,
|
|
|
|
max = 2,},
|
|
|
|
},
|
|
|
|
drawtype = "front",
|
|
|
|
water_damage = 1,
|
|
|
|
lava_damage = 5,
|
|
|
|
light_damage = 0,
|
|
|
|
sounds = {
|
|
|
|
random = "Chicken1",
|
|
|
|
death = "Chickenhurt1",
|
|
|
|
hurt = "Chickenhurt1",
|
|
|
|
},
|
|
|
|
animation = {
|
|
|
|
speed_normal = 25, speed_run = 50,
|
|
|
|
stand_start = 0, stand_end = 0,
|
|
|
|
walk_start = 0, walk_end = 40,
|
|
|
|
run_start = 0, run_end = 40,
|
|
|
|
},
|
|
|
|
|
|
|
|
follow = {"farming:seed_wheat", "farming:seed_cotton"},
|
|
|
|
view_range = 5,
|
|
|
|
|
|
|
|
on_rightclick = function(self, clicker)
|
|
|
|
|
2017-06-13 19:05:07 -04: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, 30, 50, 80, false, nil) then return end
|
2017-05-24 19:42:03 -04:00
|
|
|
end,
|
|
|
|
|
2017-06-13 19:05:07 -04:00
|
|
|
do_custom = function(self, dtime)
|
|
|
|
|
|
|
|
self.egg_timer = (self.egg_timer or 0) + dtime
|
|
|
|
if self.egg_timer < 10 then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
self.egg_timer = 0
|
2017-05-24 19:42:03 -04:00
|
|
|
|
|
|
|
if self.child
|
2017-06-13 19:05:07 -04:00
|
|
|
or math.random(1, 100) > 1 then
|
2017-05-24 19:42:03 -04:00
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
local pos = self.object:getpos()
|
|
|
|
|
|
|
|
minetest.add_item(pos, "mobs:egg")
|
|
|
|
|
|
|
|
minetest.sound_play("default_place_node_hard", {
|
|
|
|
pos = pos,
|
|
|
|
gain = 1.0,
|
|
|
|
max_hear_distance = 5,
|
|
|
|
})
|
|
|
|
end,
|
|
|
|
|
|
|
|
})
|
|
|
|
|
2017-05-28 23:16:44 -04:00
|
|
|
-- egg entity
|
|
|
|
|
|
|
|
mobs:register_arrow("mobs_mc:egg_entity", {
|
|
|
|
visual = "sprite",
|
|
|
|
visual_size = {x=.5, y=.5},
|
|
|
|
textures = {"mobs_chicken_egg.png"},
|
|
|
|
velocity = 6,
|
|
|
|
|
|
|
|
hit_player = function(self, player)
|
2017-06-13 19:05:07 -04:00
|
|
|
player:punch(minetest.get_player_by_name(self.playername) or self.object, 1.0, {
|
2017-05-28 23:16:44 -04:00
|
|
|
full_punch_interval = 1.0,
|
|
|
|
damage_groups = {fleshy = 1},
|
|
|
|
}, nil)
|
|
|
|
end,
|
2017-05-24 19:42:03 -04:00
|
|
|
|
2017-05-28 23:16:44 -04:00
|
|
|
hit_mob = function(self, player)
|
2017-06-13 19:05:07 -04:00
|
|
|
player:punch(minetest.get_player_by_name(self.playername) or self.object, 1.0, {
|
2017-05-28 23:16:44 -04:00
|
|
|
full_punch_interval = 1.0,
|
|
|
|
damage_groups = {fleshy = 1},
|
|
|
|
}, nil)
|
2016-05-19 19:24:06 -04:00
|
|
|
end,
|
|
|
|
|
2017-05-28 23:16:44 -04:00
|
|
|
hit_node = function(self, pos, node)
|
2016-05-19 19:24:06 -04:00
|
|
|
|
2017-06-13 19:05:07 -04:00
|
|
|
if math.random(1, 10) > 1 then
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
|
|
|
pos.y = pos.y + 1
|
|
|
|
|
|
|
|
local nod = minetest.get_node_or_nil(pos)
|
|
|
|
|
|
|
|
if not nod
|
|
|
|
or not minetest.registered_nodes[nod.name]
|
|
|
|
or minetest.registered_nodes[nod.name].walkable == true then
|
|
|
|
return
|
2016-05-26 21:29:06 -04:00
|
|
|
end
|
2017-06-13 19:05:07 -04:00
|
|
|
|
|
|
|
local mob = minetest.add_entity(pos, "mobs_mc:chicken")
|
|
|
|
local ent2 = mob:get_luaentity()
|
|
|
|
|
|
|
|
mob:set_properties({
|
2017-06-14 19:47:33 -04:00
|
|
|
textures = {"chicken.png"},
|
2017-06-13 19:05:07 -04:00
|
|
|
visual_size = {
|
|
|
|
x = ent2.base_size.x / 2,
|
|
|
|
y = ent2.base_size.y / 2
|
|
|
|
},
|
|
|
|
collisionbox = {
|
|
|
|
ent2.base_colbox[1] / 2,
|
|
|
|
ent2.base_colbox[2] / 2,
|
|
|
|
ent2.base_colbox[3] / 2,
|
|
|
|
ent2.base_colbox[4] / 2,
|
|
|
|
ent2.base_colbox[5] / 2,
|
|
|
|
ent2.base_colbox[6] / 2
|
|
|
|
},
|
|
|
|
})
|
|
|
|
|
|
|
|
ent2.child = true
|
|
|
|
ent2.tamed = true
|
|
|
|
ent2.owner = self.playername
|
2017-05-28 23:16:44 -04:00
|
|
|
end
|
|
|
|
})
|
2016-05-26 21:29:06 -04:00
|
|
|
|
2017-05-28 23:16:44 -04:00
|
|
|
-- egg throwing item
|
2016-05-26 21:29:06 -04:00
|
|
|
|
2017-05-28 23:16:44 -04:00
|
|
|
local egg_GRAVITY = 9
|
|
|
|
local egg_VELOCITY = 19
|
2016-05-26 21:29:06 -04:00
|
|
|
|
2017-05-28 23:16:44 -04:00
|
|
|
-- shoot egg
|
|
|
|
local mobs_shoot_egg = function (item, player, pointed_thing)
|
2016-05-26 21:29:06 -04:00
|
|
|
|
2017-05-28 23:16:44 -04:00
|
|
|
local playerpos = player:getpos()
|
2016-05-26 21:29:06 -04:00
|
|
|
|
2017-05-28 23:16:44 -04:00
|
|
|
minetest.sound_play("default_place_node_hard", {
|
|
|
|
pos = playerpos,
|
|
|
|
gain = 1.0,
|
|
|
|
max_hear_distance = 5,
|
|
|
|
})
|
2016-05-26 21:29:06 -04:00
|
|
|
|
2017-05-28 23:16:44 -04:00
|
|
|
local obj = minetest.add_entity({
|
|
|
|
x = playerpos.x,
|
|
|
|
y = playerpos.y +1.5,
|
|
|
|
z = playerpos.z
|
|
|
|
}, "mobs_mc:egg_entity")
|
|
|
|
|
|
|
|
local ent = obj:get_luaentity()
|
|
|
|
local dir = player:get_look_dir()
|
|
|
|
|
|
|
|
ent.velocity = egg_VELOCITY -- needed for api internal timing
|
|
|
|
ent.switch = 1 -- needed so that egg doesn't despawn straight away
|
|
|
|
|
|
|
|
obj:setvelocity({
|
|
|
|
x = dir.x * egg_VELOCITY,
|
|
|
|
y = dir.y * egg_VELOCITY,
|
|
|
|
z = dir.z * egg_VELOCITY
|
|
|
|
})
|
|
|
|
|
|
|
|
obj:setacceleration({
|
|
|
|
x = dir.x * -3,
|
|
|
|
y = -egg_GRAVITY,
|
|
|
|
z = dir.z * -3
|
|
|
|
})
|
|
|
|
|
|
|
|
-- pass player name to egg for chick ownership
|
|
|
|
local ent2 = obj:get_luaentity()
|
|
|
|
ent2.playername = player:get_player_name()
|
|
|
|
|
|
|
|
item:take_item()
|
|
|
|
|
|
|
|
return item
|
|
|
|
end
|
2017-05-25 20:39:12 -04:00
|
|
|
|
2017-05-28 23:16:44 -04:00
|
|
|
-- egg
|
|
|
|
minetest.register_node(":mobs:egg", {
|
2017-06-14 19:47:33 -04:00
|
|
|
description = "Egg",
|
2017-05-28 23:16:44 -04:00
|
|
|
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})
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
on_use = mobs_shoot_egg
|
|
|
|
})
|
2016-05-19 19:24:06 -04:00
|
|
|
|
|
|
|
|
|
|
|
-- chicken
|
|
|
|
minetest.register_craftitem(":mobs:chicken_raw", {
|
|
|
|
description = "Raw Chicken",
|
|
|
|
inventory_image = "chicken_raw.png",
|
|
|
|
on_use = minetest.item_eat(2),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craftitem(":mobs:chicken_cooked", {
|
|
|
|
description = "Cooked Chicken",
|
|
|
|
inventory_image = "chicken_cooked.png",
|
|
|
|
on_use = minetest.item_eat(6),
|
|
|
|
})
|
|
|
|
|
|
|
|
minetest.register_craft({
|
|
|
|
type = "cooking",
|
|
|
|
output = "mobs:chicken_cooked",
|
|
|
|
recipe = "mobs:chicken_raw",
|
|
|
|
cooktime = 5,
|
|
|
|
})
|
|
|
|
|
2017-05-28 23:16:44 -04:00
|
|
|
--[[
|
2016-05-19 19:24:06 -04:00
|
|
|
-- from mobs_redo
|
|
|
|
-- 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})
|
|
|
|
end
|
|
|
|
end,
|
2017-05-25 20:39:12 -04:00
|
|
|
on_use = mobs_shoot_egg
|
2016-05-19 19:24:06 -04:00
|
|
|
})
|
2017-05-28 23:16:44 -04:00
|
|
|
]]
|
2016-05-19 19:24:06 -04:00
|
|
|
-- fried egg
|
|
|
|
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",
|
|
|
|
})
|
|
|
|
|
|
|
|
-- leather, feathers, etc.
|
|
|
|
minetest.register_craftitem(":mobs:feather", {
|
|
|
|
description = "Feather",
|
|
|
|
inventory_image = "mobs_feather.png",
|
|
|
|
})
|
|
|
|
|
2017-05-25 20:39:12 -04:00
|
|
|
|
|
|
|
--spawn
|
2017-05-28 23:16:44 -04:00
|
|
|
mobs:register_spawn("mobs_mc:chicken", {"default:dirt_with_grass"}, 20, 8, 17000, 3, 31000)
|
2017-05-25 20:39:12 -04:00
|
|
|
|
|
|
|
|
2016-05-19 19:24:06 -04:00
|
|
|
-- compatibility
|
|
|
|
mobs:alias_mob("mobs:chicken", "mobs_mc:chicken")
|
2017-05-25 20:39:12 -04:00
|
|
|
|
2016-05-19 19:24:06 -04:00
|
|
|
-- spawn eggs
|
2017-05-23 19:03:37 -04:00
|
|
|
mobs:register_egg("mobs_mc:chicken", "Chicken", "chicken_inv.png", 0)
|
2016-05-19 19:24:06 -04:00
|
|
|
|
|
|
|
if minetest.setting_get("log_mods") then
|
|
|
|
minetest.log("action", "MC chicken loaded")
|
2017-06-14 19:47:33 -04:00
|
|
|
end
|