1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-14 08:40:23 +02:00
server-nalc/mods/mobs/oerkki.lua

64 lines
1.6 KiB
Lua
Raw Normal View History

2014-10-28 18:01:32 +01:00
-- Oerkki by PilzAdam
2014-10-28 18:01:32 +01:00
mobs:register_mob("mobs:oerkki", {
-- animal, monster, npc, barbarian
2014-10-28 18:01:32 +01:00
type = "monster",
2015-03-26 20:08:30 +01:00
-- aggressive, deals 7 damage when player hit
passive = false,
attack_type = "dogfight",
damage = 6,
-- health & armor
hp_min = 40,
hp_max = 50,
armor = 90,
-- textures and model
2015-07-16 00:15:56 +02:00
collisionbox = {-0.4, -1, -0.4, 0.4, 0.9, 0.4},
2014-10-28 18:01:32 +01:00
visual = "mesh",
mesh = "mobs_oerkki.b3d",
textures = {
{"mobs_oerkki.png"},
{"mobs_oerkki2.png"},
2014-12-10 16:44:45 +01:00
},
blood_texture = "mobs_blood.png",
-- sounds
2014-10-28 18:01:32 +01:00
makes_footstep_sound = false,
sounds = {
random = "mobs_oerkki",
attack = "mobs_oerkki_attack",
},
-- speed and jump
2014-10-28 18:01:32 +01:00
walk_velocity = 2,
run_velocity = 4,
view_range = 16,
jump = true,
-- chance of dropping obsidian and coins
2014-10-28 18:01:32 +01:00
drops = {
{name = "default:obsidian",
chance = 3, min = 1, max = 2,},
{name = "maptools:silver_coin",
chance = 1, min = 1, max = 1,},
2014-10-28 18:01:32 +01:00
},
-- damaged by
water_damage = 2,
lava_damage = 2,
light_damage = 1,
-- model animation
2014-10-28 18:01:32 +01:00
animation = {
stand_start = 0, stand_end = 23,
walk_start = 24, walk_end = 36,
run_start = 37, run_end = 49,
punch_start = 37, punch_end = 49,
speed_normal = 15, speed_run = 15,
2014-10-28 18:01:32 +01:00
},
-- replace torch with air (remove)
replace_rate = 50,
replace_what = {"default:torch"},
replace_with = "air",
replace_offset = -1,
2014-10-28 18:01:32 +01:00
})
-- spawns on stone/sandstone between 5 and -1 light, 1 in 7000 chance, 1 in area starting at -10 and below
mobs:spawn_specific("mobs:oerkki", {"default:stone", "default:sandstone"}, {"air"}, -1, 5, 30, 7000, 1, -31000, -75, false)
-- register spawn egg
mobs:register_egg("mobs:oerkki", "Oerkki", "default_obsidian.png", 1)