1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-07-01 07:30:27 +02:00

Update mods mod

- npc's follow and stand by order
- mob shoot attack rehauled
- velocity changes
- fixed shoot bug
- mob shoot timings fixed
- dungeon master plasma balls less laggy
- DM plama ball less laggy
- added on_die function and jump_height
- Added jump_chance for jumping mods, set walk_chance to 0 when in use
- added jump mobs, footstep nodes, api tweaks
- fixed jump follow and follow jump glitch
- Added rotate to mob definition
- Reworked breeding
- tidied code
- added mobs_enable_blood flag in minetest.conf (true/false)
- tidied code
- Fixed selftimer issue
- beehive cannot be eaten (oops)
- fixed lifetimer bug
- added magic lasso to pick up animals
- pets and chicken can be picked up without magic lasso
- update version
This commit is contained in:
Ombridride
2015-04-11 21:45:03 +02:00
parent a0f14f35f8
commit 4e402c7d3b
21 changed files with 384 additions and 390 deletions

View File

@ -9,12 +9,13 @@ mobs:register_mob("mobs:dirt_monster", {
attack_type = "dogfight",
damage = 6,
-- health & armor
hp_min = 25, hp_max = 30, armor = 90,
hp_min = 25,
hp_max = 30,
armor = 90,
-- textures and model
collisionbox = {-0.4, -0.01, -0.4, 0.4, 1.9, 0.4},
visual = "mesh",
mesh = "mobs_stone_monster.x",
drawtype = "front",
textures = {
{"mobs_dirt_monster.png"},
},
@ -33,13 +34,9 @@ mobs:register_mob("mobs:dirt_monster", {
-- drops dirt and coins when dead
drops = {
{name = "default:dirt",
chance = 1,
min = 3,
max = 5,},
chance = 1, min = 3, max = 5,},
{name = "maptools:copper_coin",
chance = 2,
min = 2,
max = 8,},
chance = 2, min = 2, max = 8,},
},
-- damaged by
water_damage = 1,
@ -55,6 +52,6 @@ mobs:register_mob("mobs:dirt_monster", {
},
})
-- spawn on normal;grey dirt between 0 and 5 light, 1 in 7000 change, 1 dirt monster in area up to 31000 in height
mobs:register_spawn("mobs:dirt_monster", {"default:dirt_with_grass"}, 3, -1, 9500, 1, 31000)
mobs:register_spawn("mobs:dirt_monster", {"default:dirt_with_grass"}, 5, -1, 9500, 1, 31000)
-- register spawn egg
mobs:register_egg("mobs:dirt_monster", "Dirt Monster", "default_dirt.png", 1)