mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-06 02:20:24 +01:00
d227b97146
- un peu plus de vie pour le sandmonster, - un peu plus de vie pour le dirtmonster, plus de dommages, meilleur drop de copper_coin, - un peu plus de vie, et vie plus stable pour la spider, plus d’armure, plus de dommages, ajout du drop de dopper_coin, - ajout du drop de silver_coin pour le treemonster, - ajout du drop de silver_coin à l’oerkki, - un peu plus de vie pour le stonemonster, plus de dommages, équilibrage du drop de silver_coin, - beaucoup plus de vie pour le mesemonster, beaucoup plus de silver_coin, plus d’armure, - un peu plus de vie pour le dungeonmaster, meilleur drop de silver_coin.
68 lines
1.5 KiB
Lua
68 lines
1.5 KiB
Lua
|
|
-- Tree Monster (or Tree Gollum as I like to call it)
|
|
|
|
mobs:register_mob("mobs:tree_monster", {
|
|
type = "monster",
|
|
hp_min = 40,
|
|
hp_max = 50,
|
|
collisionbox = {-0.4, -0.01, -0.4, 0.4, 1.9, 0.4},
|
|
visual = "mesh",
|
|
mesh = "mobs_tree_monster.x",
|
|
textures = {"mobs_tree_monster.png"},
|
|
visual_size = {x=4.5,y=4.5},
|
|
makes_footstep_sound = true,
|
|
view_range = 16,
|
|
walk_velocity = 0.5,
|
|
run_velocity = 2.5,
|
|
damage = 6,
|
|
drops = {
|
|
{name = "ethereal:tree_sapling",
|
|
chance = 3,
|
|
min = 1,
|
|
max = 2,},
|
|
{name = "ethereal:jungle_tree_sapling",
|
|
chance = 3,
|
|
min = 1,
|
|
max = 2,},
|
|
{name = "default:apple",
|
|
chance = 2,
|
|
min = 1,
|
|
max = 5,},
|
|
{name = "maptools:silver_coin",
|
|
chance = 2,
|
|
min = 1,
|
|
max = 1,},
|
|
},
|
|
light_resistant = true,
|
|
armor = 80,
|
|
drawtype = "front",
|
|
water_damage = 1,
|
|
lava_damage = 5,
|
|
light_damage = 2,
|
|
disable_fall_damage = true,
|
|
attack_type = "dogfight",
|
|
animation = {
|
|
speed_normal = 15,
|
|
speed_run = 15,
|
|
stand_start = 0,
|
|
stand_end = 24,
|
|
walk_start = 25,
|
|
walk_end = 47,
|
|
run_start = 48,
|
|
run_end = 62,
|
|
punch_start = 48,
|
|
punch_end = 62,
|
|
},
|
|
jump = true,
|
|
step = 1,
|
|
blood_texture = "default_wood.png",
|
|
})
|
|
mobs:register_spawn("mobs:tree_monster", {"default:leaves", "default:jungleleaves"}, 3, -1, 7000, 1, 31000)
|
|
|
|
-- Ethereal sapling compatibility
|
|
|
|
if not minetest.get_modpath("ethereal") then
|
|
minetest.register_alias("ethereal:tree_sapling", "default:sapling")
|
|
minetest.register_alias("ethereal:jungle_tree_sapling", "default:junglesapling")
|
|
end
|