mobs_mc/llama.lua

143 lines
3.1 KiB
Lua
Raw Normal View History

2017-05-25 17:39:12 -07:00
--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")
2017-05-25 17:39:12 -07:00
--###################
--################### LLAMA
--###################
2017-05-23 16:03:37 -07:00
mobs:register_mob("mobs_mc:llama", {
type = "animal",
2017-06-14 16:47:33 -07:00
hp_min = 15,
hp_max = 30,
2017-05-28 20:16:44 -07:00
passive = false,
2017-06-27 10:02:52 -07:00
collisionbox = {-0.45, -0.01, -0.45, 0.45, 1.86, 0.45},
visual = "mesh",
mesh = "mobs_mc_llama.b3d",
textures = {{"mobs_mc_llama.png"},{"mobs_mc_llama_brown.png"},{"mobs_mc_llama_creamy.png"},{"mobs_mc_llama_white.png"},{"mobs_mc_llama_gray.png"}},
2017-05-23 16:03:37 -07:00
visual_size = {x=3, y=3},
makes_footstep_sound = true,
2017-05-25 17:39:12 -07:00
runaway = true,
walk_velocity = 1,
2017-05-25 17:39:12 -07:00
run_velocity = 4.4,
2017-06-27 10:02:52 -07:00
floats = 1,
drops = {
{name = mobs_mc.items.leather,
chance = 1,
2017-05-28 20:16:44 -07:00
min = 0,
max = 2,},
},
drawtype = "front",
2017-05-28 20:16:44 -07:00
water_damage = 0,
2017-06-27 10:02:52 -07:00
lava_damage = 4,
light_damage = 0,
2017-06-27 10:02:52 -07:00
fear_height = 4,
sounds = {
2017-06-27 10:02:52 -07:00
random = "mobs_sheep",
death = "mobs_sheep",
2017-05-23 16:03:37 -07:00
damage = "mobs_sheep",
2017-06-27 10:02:52 -07:00
distance = 16,
},
animation = {
speed_normal = 24,
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 = mobs_mc.items.horse,
2017-06-27 10:02:52 -07:00
view_range = 16,
2017-05-25 17:39:12 -07:00
do_custom = function(self, dtime)
-- set needed values if not already present
if not self.v2 then
self.v2 = 0
2017-06-29 08:19:48 -07:00
self.max_speed_forward = 4
self.max_speed_reverse = 2
2017-05-25 17:39:12 -07:00
self.accel = 4
self.terrain_type = 3
2017-06-29 08:19:48 -07:00
self.driver_attach_at = {x = 0, y = 7.5, z = -1.5}
2017-05-25 17:39:12 -07:00
self.driver_eye_offset = {x = 0, y = 3, z = 0}
2017-06-29 08:19:48 -07:00
self.driver_scale = {x = 1/self.visual_size.x, y = 1/self.visual_size.y}
2017-05-25 17:39:12 -07:00
end
-- if driver present allow control of llama
2017-05-25 17:39:12 -07:00
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)
2017-06-29 08:38:27 -07:00
-- detach from llama properly
2017-05-25 17:39:12 -07:00
if self.driver then
mobs.detach(self.driver, {x = 1, y = 0, z = 1})
end
end,
on_rightclick = function(self, clicker)
2017-05-25 17:39:12 -07:00
-- Make sure player is clicking
if not clicker or not clicker:is_player() then
return
end
2017-05-25 17:39:12 -07:00
-- Feed, tame or heal llama
2017-06-27 10:08:12 -07:00
if mobs:feed_tame(self, clicker, 1, true, true) then
return
end
2017-05-25 17:39:12 -07:00
-- Make sure tamed llama is mature and being clicked by owner only
if self.tamed and not self.child and self.owner == clicker:get_player_name() then
2017-05-25 17:39:12 -07:00
local inv = clicker:get_inventory()
-- detatch player already riding llama
2017-05-25 17:39:12 -07:00
if self.driver and clicker == self.driver then
mobs.detach(clicker, {x = 1, y = 0, z = 1})
2017-06-29 08:38:27 -07:00
-- attach player to llama
elseif not self.driver then
2017-05-25 17:39:12 -07:00
self.object:set_properties({stepheight = 1.1})
mobs.attach(self, clicker)
end
end
-- Used to capture llama with magic lasso
2017-05-25 17:39:12 -07:00
mobs:capture_mob(self, clicker, 0, 0, 80, false, nil)
end
})
2017-05-25 17:39:12 -07:00
--spawn
2017-06-24 09:56:24 -07:00
mobs:register_spawn("mobs_mc:llama", mobs_mc.spawn.savanna, minetest.LIGHT_MAX+1, 0, 15000, 1, 40)
-- spawn eggs
mobs:register_egg("mobs_mc:llama", "Llama", "mobs_mc_spawn_icon_llama.png", 0)
2017-06-20 21:20:06 -07:00
if minetest.settings:get_bool("log_mods") then
2017-05-23 16:03:37 -07:00
minetest.log("action", "MC Llama loaded")
end