mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-03 17:10:27 +01:00
4645ef3cb5
- api.lua (many improves, chicken egg more frequent, NPC attack nearly mobs, textures code, etc…) - Bee (spawn on group:flower now, textures code updated) - Bunny (textures code updated) - Chicken (two times more eggs, textures code updated) - Cow (textures code updated) - Creeper (finish reorganize the code, textures code updated, new eggs inventory texture) - Dirt Monster (textures code updated) - Dungeon Master (textures code updated) - init.lua (small credits tweaks) - Kitten (textures code updated, now drop sometimes farming:string) - Lava Flan (textures code updated, now 3 can spawn per chunck) - Mese Monster (textures code updated) - NPC (textures code updated, revert give raw meat versus health code for tests) - Oerkki (textures code updated, now 1 light damage) - Rat (textures code updated) - Sand Monster (textures code updated) - Sheep (textures code updated, now give 2 to 3 wool when sheared) - Spider (textures code updated, change credits, comments our modifications) - Stone Monster (textures code updated) - Tree Monster (textures code updated) - Warthog (textures code updated) - Wolf (finish reorganize the code, textures code updated, add spawner egg and an inventory texture) - Tweaks some sounds
64 lines
1.6 KiB
Lua
Executable File
64 lines
1.6 KiB
Lua
Executable File
|
|
-- Oerkki by PilzAdam
|
|
|
|
mobs:register_mob("mobs:oerkki", {
|
|
-- animal, monster, npc, barbarian
|
|
type = "monster",
|
|
-- aggressive, deals 7 damage when player hit
|
|
passive = false,
|
|
attack_type = "dogfight",
|
|
damage = 7,
|
|
-- health & armor
|
|
hp_min = 40, hp_max = 50, armor = 90,
|
|
-- textures and model
|
|
collisionbox = {-0.4, -0.01, -0.4, 0.4, 1.9, 0.4},
|
|
visual = "mesh",
|
|
mesh = "mobs_oerkki.x",
|
|
drawtype = "front",
|
|
textures = {
|
|
{"mobs_oerkki.png"},
|
|
{"mobs_oerkki2.png"},
|
|
},
|
|
visual_size = {x=5, y=5},
|
|
blood_texture = "mobs_blood.png",
|
|
-- sounds
|
|
makes_footstep_sound = false,
|
|
sounds = {
|
|
random = "mobs_oerkki",
|
|
attack = "mobs_oerkki_attack",
|
|
},
|
|
-- speed and jump
|
|
walk_velocity = 2,
|
|
run_velocity = 4,
|
|
view_range = 16,
|
|
jump = true,
|
|
-- chance of dropping obsidian and coins
|
|
drops = {
|
|
{name = "default:obsidian",
|
|
chance = 3, min = 1, max = 2,},
|
|
{name = "maptools:silver_coin",
|
|
chance = 2, min = 2, max = 3,},
|
|
},
|
|
-- damaged by
|
|
water_damage = 1,
|
|
lava_damage = 1,
|
|
light_damage = 1,
|
|
-- model animation
|
|
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,
|
|
},
|
|
-- replace torch with air (remove)
|
|
replace_rate = 50,
|
|
replace_what = {"default:torch"},
|
|
replace_with = "air",
|
|
replace_offset = -1,
|
|
})
|
|
-- spawns on stone between 5 and -1 light, 1 in 7000 chance, 1 in area starting at -10 and below
|
|
mobs:register_spawn("mobs:oerkki", {"default:stone"}, 5, -1, 7000, 1, -10)
|
|
-- register spawn egg
|
|
mobs:register_egg("mobs:oerkki", "Oerkki", "default_obsidian.png", 1)
|