1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-09-24 05:30:17 +02:00

Added indentation in mods/mobs/creeper.lua

This commit is contained in:
LeMagnesium 2015-03-12 20:32:37 +01:00
parent a62f50bde7
commit c3aefb8db7

View File

@ -1,67 +1,67 @@
mobs:register_mob("mobs:creeper", { mobs:register_mob("mobs:creeper", {
type = "monster", type = "monster",
hp_min = 40, hp_min = 40,
hp_max = 50, hp_max = 50,
collisionbox = {-0.4, -0.01, -0.4, 0.4, 1.9, 0.4}, collisionbox = {-0.4, -0.01, -0.4, 0.4, 1.9, 0.4},
visual = "mesh", visual = "mesh",
mesh = "mobs_tree_monster.x", mesh = "mobs_tree_monster.x",
--textures = {"mobs_tree_monster.png"}, --textures = {"mobs_tree_monster.png"},
available_textures = { available_textures = {
total = 1, total = 1,
texture_1 = {"mobs_tree_monster.png"}, texture_1 = {"mobs_tree_monster.png"},
}, },
visual_size = {x=4.5,y=4.5}, visual_size = {x=4.5,y=4.5},
makes_footstep_sound = true, makes_footstep_sound = true,
view_range = 16, view_range = 16,
walk_velocity = 0.2, walk_velocity = 0.2,
run_velocity = 0.9, run_velocity = 0.9,
damage = 0, damage = 0,
drops = { drops = {
{name = "default:torch", {name = "default:torch",
chance = 10, chance = 10,
min = 3, min = 3,
max = 5,}, max = 5,},
{name = "default:iron_lump", {name = "default:iron_lump",
chance = 5, chance = 5,
min = 1, min = 1,
max = 2,}, max = 2,},
{name = "default:coal_lump", {name = "default:coal_lump",
chance = 3, chance = 3,
min = 1, min = 1,
max = 3,}, max = 3,},
{name = "maptools:silver_coin", {name = "maptools:silver_coin",
chance = 2, chance = 2,
min = 2, min = 2,
max = 3,}, max = 3,},
}, },
light_resistant = true, light_resistant = true,
armor = 80, armor = 80,
drawtype = "front", drawtype = "front",
water_damage = 0, water_damage = 0,
lava_damage = 15, lava_damage = 15,
light_damage = 0, light_damage = 0,
disable_fall_damage = false, disable_fall_damage = false,
attack_type = "kamicaze", attack_type = "kamicaze",
animation = { animation = {
speed_normal = 15, speed_normal = 15,
speed_run = 15, speed_run = 15,
stand_start = 0, stand_start = 0,
stand_end = 24, stand_end = 24,
walk_start = 25, walk_start = 25,
walk_end = 47, walk_end = 47,
run_start = 48, run_start = 48,
run_end = 62, run_end = 62,
punch_start = 48, punch_start = 48,
punch_end = 62, punch_end = 62,
}, },
sounds = { sounds = {
random = "mobs_treemonster", random = "mobs_treemonster",
}, },
step = 0.5, step = 0.5,
jump = true, jump = true,
step = 1, step = 1,
blood_texture = "default_wood.png", blood_texture = "default_wood.png",
}) })
mobs:register_spawn("mobs:creeper", {"default:dirt_with_grass"}, 20, 8, 9000, 1, 31000) mobs:register_spawn("mobs:creeper", {"default:dirt_with_grass"}, 20, 8, 9000, 1, 31000)
mobs:register_egg("mobs:creeper", "Creeper", "default_tree_top.png", 1) mobs:register_egg("mobs:creeper", "Creeper", "default_tree_top.png", 1)