animal-world-cd2025/snowleopard.lua

87 lines
3.3 KiB
Lua
Raw Permalink Normal View History

2023-01-21 16:38:55 +01:00
local S = minetest.get_translator("animalworld")
2021-02-08 17:34:07 +01:00
mobs:register_mob("animalworld:snowleopard", {
stepheight = 5,
type = "monster",
passive = false,
attack_type = "dogfight",
attack_animals = true,
reach = 2,
2021-02-11 16:53:06 +01:00
damage = 9,
2021-02-08 17:34:07 +01:00
hp_min = 45,
2021-02-11 16:53:06 +01:00
hp_max = 75,
armor = 100,
2021-02-08 17:34:07 +01:00
collisionbox = {-0.5, -0.01, -0.5, 0.5, 0.95, 0.5},
visual = "mesh",
mesh = "Snowleopard.b3d",
visual_size = {x = 1.0, y = 1.0},
textures = {
{"texturesnowleopard.png"},
},
sounds = {
random = "animalworld_snowleopard",
attack = "animalworld_snowleopard",
},
makes_footstep_sound = true,
walk_velocity = 3,
run_velocity = 4,
runaway = false,
jump = true,
jump_height = 6,
stepheight = 5,
2023-01-21 16:38:55 +01:00
stay_near = {{"default:pine_needles", "animalworld:animalworld_tundrashrub5", "animalworld:animalworld_tundrashrub1", "animalworld:animalworld_tundrashrub2", "animalworld:animalworld_tundrashrub3", "animalworld:animalworld_tundrashrub4"}, 6},
2021-02-08 17:34:07 +01:00
drops = {
{name = "mobs:meat_raw", chance = 1, min = 1, max = 1},
2021-04-02 18:18:46 +02:00
{name = "animalworld:snowleopardcorpse", chance = 7, min = 1, max = 1},
2021-02-08 17:34:07 +01:00
},
water_damage = 0,
lava_damage = 4,
light_damage = 0,
fear_height = 10,
animation = {
speed_normal = 140,
stand_start = 0,
stand_end = 100,
stand_speed = 50,
walk_start = 100,
walk_end = 200,
punch_start = 250,
punch_end = 350,
2023-01-21 16:38:55 +01:00
die_start = 200,
die_end = 300,
die_speed = 50,
die_loop = false,
die_rotate = true,
2021-02-08 17:34:07 +01:00
},
follow = {
"ethereal:fish_raw", "animalworld:rawfish", "mobs_fish:tropical",
2023-12-22 22:35:42 +01:00
"mobs:meat_raw", "mcl_mobitems:chicken", "mcl_fishing:pufferfish_raw", "mcl_mobitems:rotten_flesh", "mcl_mobitems:mutton", "mcl_mobitems:beef", "mcl_mobitems:porkchop", "mcl_mobitems:rabbit", "animalworld:rabbit_raw", "animalworld:pork_raw", "ethereal:fish_raw", "water_life:meat_raw", "animalworld:chicken_raw", "mobs:meatblock_raw", "animalworld:chicken_raw", "livingfloatlands:ornithischiaraw", "livingfloatlands:largemammalraw", "livingfloatlands:theropodraw", "livingfloatlands:sauropodraw", "animalworld:raw_athropod", "animalworld:whalemeat_raw", "animalworld:rabbit_raw", "nativevillages:chicken_raw", "mobs:meat_raw", "animalworld:pork_raw", "people:mutton:raw"
2021-02-08 17:34:07 +01:00
},
view_range = 15,
on_rightclick = function(self, clicker)
-- feed or tame
if mobs:feed_tame(self, clicker, 4, false, true) then return end
if mobs:protect(self, clicker) then return end
2023-01-21 16:38:55 +01:00
if mobs:capture_mob(self, clicker, 0, 25, 0, false, nil) then return end
2021-02-08 17:34:07 +01:00
end,
})
2021-04-02 18:18:46 +02:00
if not mobs.custom_spawn_animalworld then
2021-02-08 17:34:07 +01:00
mobs:spawn({
name = "animalworld:snowleopard",
2023-12-22 22:35:42 +01:00
nodes = {"default:snowblock"}, {"default:dirt_with_snow"}, {"default:permafrost"}, {"default:stone"}, {"mcl_core:snow"},
neighbors = {"mcl_flowers:double:fern", "mcl_flowers:fern", "mcl_flowers:tallgrass", "mcl_farming:sweet_berry_bush_3", "mcl_core:sprucetree", "mcl_trees:tree_spruce", "mcl_trees:leaves_spruce", "default:pine_needles", "animalworld:animalworld_tundrashrub1", "animalworld:animalworld_tundrashrub2", "animalworld:animalworld_tundrashrub3", "animalworld:animalworld_tundrashrub4"},
2021-02-08 17:34:07 +01:00
min_light = 0,
interval = 60,
2023-01-21 16:38:55 +01:00
chance = 500, -- 15000
2021-02-08 17:34:07 +01:00
min_height = 60,
max_height = 300,
})
end
2023-01-21 16:38:55 +01:00
mobs:register_egg("animalworld:snowleopard", S("Snow Leopard"), "asnowleopard.png")