petz/petz/petz/foxy_mobkit.lua

91 lines
2.3 KiB
Lua

--
--FOXY
--
local S = ...
local pet_name = "foxy"
local scale_model = 1.5
petz.foxy = {}
local mesh = 'petz_foxy.b3d'
local textures = {"petz_foxy.png", "petz_foxy_light_brown.png"}
local p1 = {x= -0.1875, y = -0.5, z = -0.25}
local p2 = {x= 0.1875, y = -0.0625, z = 0.375}
local collisionbox = petz.get_collisionbox(p1, p2, scale_model, nil)
minetest.register_entity("petz:"..pet_name,{
--Petz specifics
type = "foxy",
init_tamagochi_timer = true,
is_pet = true,
has_affinity = true,
is_wild =false,
attack_player = false,
give_orders = true,
can_be_brushed = true,
capture_item = "lasso",
follow = petz.settings.foxy_follow,
rotate = petz.settings.rotate,
physical = true,
stepheight = 0.1, --EVIL!
collide_with_objects = true,
collisionbox = collisionbox,
visual = petz.settings.visual,
mesh = mesh,
textures = textures,
visual_size = {x=petz.settings.visual_size.x*scale_model, y=petz.settings.visual_size.y*scale_model},
static_save = true,
get_staticdata = kitz.statfunc,
-- api props
springiness= 0,
buoyancy = 0.5, -- portion of hitbox submerged
max_speed = 2.3,
jump_height = 2.0,
view_range = 10,
lung_capacity = 10, -- seconds
max_hp = 20,
attack={range=0.5, damage_groups={fleshy=7}},
animation = {
walk={range={x=1, y=12}, speed=25, loop=true},
run={range={x=13, y=25}, speed=25, loop=true},
stand={
{range={x=26, y=46}, speed=5, loop=true},
{range={x=47, y=59}, speed=5, loop=true},
{range={x=82, y=94}, speed=5, loop=true},
},
},
sounds = {
misc = "petz_foxy_bark",
moaning = "petz_foxy_moaning",
},
--punch_start = 83, stand4_end = 95,
logic = petz.predator_brain,
on_activate = function(self, staticdata, dtime_s) --on_activate, required
kitz.actfunc(self, staticdata, dtime_s)
petz.set_initial_properties(self, staticdata, dtime_s)
end,
on_deactivate = function(self)
petz.on_deactivate(self)
end,
on_punch = function(self, puncher, time_from_last_punch, tool_capabilities, dir)
petz.on_punch(self, puncher, time_from_last_punch, tool_capabilities, dir)
end,
on_rightclick = function(self, clicker)
petz.on_rightclick(self, clicker)
end,
on_step = function(self, dtime)
kitz.stepfunc(self, dtime) -- required
petz.on_step(self, dtime)
end,
})
petz:register_egg("petz:foxy", S("Foxy"), "petz_spawnegg_foxy.png", true)