256 lines
5.6 KiB
Lua
256 lines
5.6 KiB
Lua
--MCmobs v0.4
|
|
--maikerumine
|
|
--made for MC like Survival game
|
|
--License for code WTFPL and otherwise stated in readmes
|
|
|
|
|
|
--dofile(minetest.get_modpath("mobs").."/api.lua")
|
|
|
|
|
|
--###################
|
|
--################### PIG
|
|
--###################
|
|
--[[
|
|
mobs:register_mob("mobs_mc:21apig", {
|
|
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 = "pig.b3d",
|
|
textures = {
|
|
{"pig.png"},
|
|
},
|
|
visual_size = {x=3, y=3},
|
|
walk_velocity = 1.5,
|
|
run_velocity = 4,
|
|
jump = true,
|
|
animation = {
|
|
speed_normal = 40, 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:21apig", "Pig", "pig_inv.png", 0)
|
|
]]
|
|
|
|
mobs:register_mob("mobs_mc:pig", {
|
|
type = "animal",
|
|
runaway = true,
|
|
hp_min = 10,
|
|
hp_max = 10,
|
|
collisionbox = {-0.4, -0.01, -0.4, 0.4, 1, 0.4},
|
|
rotate = -180,
|
|
visual = "mesh",
|
|
mesh = "pig.b3d",
|
|
textures = {
|
|
{"pig.png"},
|
|
},
|
|
visual_size = {x=3, y=3},
|
|
makes_footstep_sound = true,
|
|
walk_velocity = 1,
|
|
run_velocity = 3,
|
|
drops = {
|
|
{name = "mobs:pork_raw",
|
|
chance = 1,
|
|
min = 1,
|
|
max = 3,},
|
|
},
|
|
drawtype = "front",
|
|
water_damage = 1,
|
|
lava_damage = 5,
|
|
light_damage = 0,
|
|
fear_height = 3,
|
|
sounds = {
|
|
random = "Pig2",
|
|
death = "Pigdeath",
|
|
damage = "Pig2",
|
|
},
|
|
animation = {
|
|
speed_normal = 40,
|
|
stand_start = 0,
|
|
stand_end = 0,
|
|
walk_start = 0,
|
|
walk_end = 40,
|
|
hurt_start = 118,
|
|
hurt_end = 154,
|
|
death_start = 154,
|
|
death_end = 179,
|
|
eat_start = 49,
|
|
eat_end = 78,
|
|
look_start = 78,
|
|
look_end = 108,
|
|
},
|
|
follow = {"default:apple", "farming:potato", "farming:carrot"},
|
|
view_range = 12,
|
|
do_custom = function(self, dtime)
|
|
|
|
-- set needed values if not already present
|
|
if not self.v2 then
|
|
self.v2 = 0
|
|
self.max_speed_forward = 2 --swap due to -180 model
|
|
self.max_speed_reverse = 4 --swap due to -180 model
|
|
self.accel = 4
|
|
self.terrain_type = 3
|
|
self.driver_attach_at = {x = 0, y = 7.5, z = 0}
|
|
self.player_rotation = {x = 0, y = 180, z = 0}
|
|
self.driver_eye_offset = {x = 0, y = 3, z = 0}
|
|
self.driver_scale = {x = 0.3, y = 0.3}
|
|
end
|
|
|
|
-- if driver present allow control of horse
|
|
if self.driver then
|
|
|
|
mobs.drive(self, "walk", "stand", false, dtime)
|
|
|
|
return false -- skip rest of mob functions
|
|
end
|
|
|
|
return true
|
|
end,
|
|
|
|
on_die = function(self, pos)
|
|
|
|
-- drop saddle when horse is killed while riding
|
|
-- also detach from horse properly
|
|
if self.driver then
|
|
minetest.add_item(pos, "mobs:saddle")
|
|
mobs.detach(self.driver, {x = 1, y = 0, z = 1})
|
|
end
|
|
|
|
end,
|
|
|
|
on_rightclick = function(self, clicker)
|
|
|
|
-- make sure player is clicking
|
|
if not clicker or not clicker:is_player() then
|
|
return
|
|
end
|
|
|
|
-- feed, tame or heal horse
|
|
if mobs:feed_tame(self, clicker, 10, true, true) then
|
|
return
|
|
end
|
|
|
|
-- make sure tamed horse is being clicked by owner only
|
|
if self.tamed and self.owner == clicker:get_player_name() then
|
|
|
|
local inv = clicker:get_inventory()
|
|
|
|
-- detatch player already riding horse
|
|
if self.driver and clicker == self.driver then
|
|
|
|
mobs.detach(clicker, {x = 1, y = 0, z = 1})
|
|
|
|
-- add saddle back to inventory
|
|
if inv:room_for_item("main", "mobs:saddle") then
|
|
inv:add_item("main", "mobs:saddle")
|
|
else
|
|
minetest.add_item(clicker.getpos(), "mobs:saddle")
|
|
end
|
|
|
|
-- attach player to horse
|
|
elseif not self.driver
|
|
and clicker:get_wielded_item():get_name() == "mobs:saddle" then
|
|
|
|
self.object:set_properties({stepheight = 1.1})
|
|
mobs.attach(self, clicker)
|
|
|
|
-- take saddle from inventory
|
|
inv:remove_item("main", "mobs:saddle")
|
|
end
|
|
end
|
|
|
|
-- used to capture horse with magic lasso
|
|
mobs:capture_mob(self, clicker, 0, 0, 80, false, nil)
|
|
end
|
|
|
|
})
|
|
--TODO re-add carrot and stick
|
|
mobs:register_spawn("mobs_mc:pig", {"default:dirt_with_grass"}, 20, 12, 15000, 3, 31000)
|
|
|
|
|
|
-- pork
|
|
minetest.register_craftitem(":mobs:pork_raw", {
|
|
description = "Raw Porkchop",
|
|
inventory_image = "pork_raw.png",
|
|
on_use = minetest.item_eat(3),
|
|
})
|
|
|
|
minetest.register_craftitem(":mobs:pork_cooked", {
|
|
description = "Cooked Porkchop",
|
|
inventory_image = "pork_cooked.png",
|
|
on_use = minetest.item_eat(8),
|
|
})
|
|
|
|
minetest.register_craft({
|
|
type = "cooking",
|
|
output = "mobs:pork_cooked",
|
|
recipe = "mobs:pork_raw",
|
|
cooktime = 5,
|
|
})
|
|
|
|
|
|
minetest.register_craftitem(":mobs:saddle", {
|
|
description = "Saddle",
|
|
inventory_image = "saddle.png",
|
|
})
|
|
|
|
minetest.register_tool(":mobs:carrotstick", {
|
|
description = "Carrot on a Stick",
|
|
inventory_image = "carrot_on_a_stick.png",
|
|
stack_max = 1,
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "mobs:carrotstick",
|
|
recipe = {
|
|
{"", "", "farming:string" },
|
|
{"", "group:stick", "farming:string" },
|
|
{"group:stick", "", "farming:bread" },
|
|
}
|
|
})
|
|
|
|
minetest.register_craft({
|
|
output = "mobs:carrotstick",
|
|
recipe = {
|
|
{"", "", "farming:string" },
|
|
{"", "group:stick", "farming:string" },
|
|
{"group:stick", "", "farming:carrot" },
|
|
}
|
|
})
|
|
|
|
minetest.register_craft({
|
|
type = "shapeless",
|
|
output = "mobs:carrotstick",
|
|
recipe = {"fishing:pole_wood", "farming:carrot"},
|
|
})
|
|
|
|
|
|
minetest.register_craft({
|
|
output = "mobs:saddle",
|
|
recipe = {
|
|
{"mobs:leather", "mobs:leather", "mobs:leather"},
|
|
{"farming:string", "", "farming:string"},
|
|
{"default:steel_ingot", "", "default:steel_ingot"}
|
|
},
|
|
})
|
|
|
|
|
|
-- compatibility
|
|
mobs:alias_mob("mobs:pig", "mobs_mc:pig")
|
|
|
|
-- spawn eggs
|
|
mobs:register_egg("mobs_mc:pig", "Pig", "pig_inv.png", 0)
|
|
|
|
if minetest.settings:get_bool("log_mods") then
|
|
minetest.log("action", "MC Pig loaded")
|
|
end
|