1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-12-16 07:05:26 +01:00

Update monsters

- Tweak the coins drop (only silver and gold now)
- Creeper no longer drop coins
- Fix minotaur mob
- Add and tweak yeti mob (spawn / drops / light damage)
- Update spreadsheet
- many other small tweaks
This commit is contained in:
Ombridride
2015-05-16 22:30:02 +02:00
parent 3e18e2d6d2
commit 4fd5ced537
16 changed files with 66 additions and 58 deletions

View File

@@ -40,14 +40,14 @@ mobs:register_mob("mobs:yeti", {
-- drops ice when dead
drops = {
{name = "default:ice",
chance = 1,
min = 1,
max = 3,},
chance = 1, min = 1, max = 3,},
{name = "maptools:silver_coin",
chance = 2, min = 1, max = 1,},
},
-- damaged by
water_damage = 1,
lava_damage = 5,
light_damage = 1,
light_damage = 0,
-- model animation
animation = {
speed_normal = 30, speed_run = 30,
@@ -57,8 +57,8 @@ mobs:register_mob("mobs:yeti", {
punch_start = 200, punch_end = 219,
},
})
-- spawn on stone between 20 and -1 light, 1 in 7000 chance, 1 in area below -25
mobs:register_spawn("mobs:yeti", {"default:dirt_with_snow", "default:snowblock", "default:ice"}, 10, -1, 7000, 1, 31000)
-- spawn on stone between 20 and -1 light, 1 in 7000 chance, 1 in area below 31000
mobs:register_spawn("mobs:yeti", {"default:dirt_with_snow", "default:snowblock", "default:ice"}, 20, -1, 7000, 1, 31000)
-- register spawn egg
mobs:register_egg("mobs:yeti", "Yeti", "default_snow.png", 1)