2014-10-28 18:01:32 +01:00
|
|
|
|
|
|
|
-- Oerkki
|
|
|
|
|
|
|
|
mobs:register_mob("mobs:oerkki", {
|
|
|
|
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_oerkki.x",
|
2014-12-10 16:44:45 +01:00
|
|
|
--textures = {"mobs_oerkki.png"},
|
|
|
|
available_textures = {
|
2014-12-11 18:53:00 +01:00
|
|
|
total = 2,
|
2014-12-10 16:44:45 +01:00
|
|
|
texture_1 = {"mobs_oerkki.png"},
|
|
|
|
texture_2 = {"mobs_oerkki2.png"},
|
|
|
|
},
|
2014-10-28 18:01:32 +01:00
|
|
|
visual_size = {x=5, y=5},
|
|
|
|
makes_footstep_sound = false,
|
|
|
|
view_range = 16,
|
|
|
|
walk_velocity = 2,
|
|
|
|
run_velocity = 4,
|
|
|
|
damage = 5,
|
|
|
|
drops = {
|
|
|
|
{name = "default:obsidian",
|
|
|
|
chance = 3,
|
|
|
|
min = 1,
|
|
|
|
max = 2,},
|
Tweaks mobs
- 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.
2014-11-13 01:15:50 +01:00
|
|
|
{name = "maptools:silver_coin",
|
|
|
|
chance = 2,
|
|
|
|
min = 2,
|
|
|
|
max = 3,},
|
2014-10-28 18:01:32 +01:00
|
|
|
},
|
|
|
|
armor = 90,
|
|
|
|
drawtype = "front",
|
|
|
|
light_resistant = true,
|
|
|
|
water_damage = 1,
|
|
|
|
lava_damage = 1,
|
|
|
|
light_damage = 0,
|
|
|
|
attack_type = "dogfight",
|
|
|
|
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-12-25 18:34:34 +01:00
|
|
|
sounds = {
|
2014-12-25 23:20:28 +01:00
|
|
|
random = "mobs_oerkki",
|
2014-12-25 18:34:34 +01:00
|
|
|
attack = "mobs_oerkki_attack",
|
|
|
|
},
|
2014-10-28 18:01:32 +01:00
|
|
|
jump = true,
|
|
|
|
step = 1,
|
|
|
|
blood_texture = "mobs_blood.png",
|
|
|
|
})
|
|
|
|
mobs:register_spawn("mobs:oerkki", {"default:stone"}, 2, -1, 6000, 1, -10)
|