1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2024-12-24 17:50:37 +01:00

Changed mobs' damage values

- Changed values of damages for mobs listed in the ods file
- Resized one little column in the ods file
This commit is contained in:
LeMagnesium 2015-03-26 18:49:28 +01:00
parent 09c772a1d2
commit e92a8e004c
13 changed files with 14 additions and 11 deletions

3
.gitignore vendored
View File

@ -1 +1,4 @@
/.project
.~*
~*
*.od?#

Binary file not shown.

View File

@ -7,7 +7,7 @@ mobs:register_mob("mobs:dirt_monster", {
-- aggressive, deals 4 damage to player when hit
passive = false,
attack_type = "dogfight",
damage = 4,
damage = 6,
-- health & armor
hp_min = 25, hp_max = 30, armor = 90,
-- textures and model

View File

@ -7,7 +7,7 @@ mobs:register_mob("mobs:lava_flan", {
-- aggressive, deals 3 damage to player when hit
passive = false,
attack_type = "dogfight",
damage = 3,
damage = 1,
-- health and armor
hp_min = 20, hp_max = 35, armor = 80,
-- textures and model

View File

@ -6,7 +6,7 @@ mobs:register_mob("mobs:mese_monster", {
type = "monster",
-- agressive, deals 3 damage to player when hit
passive = false,
damage = 7,
damage = 9,
attack_type = "shoot",
shoot_interval = .5,
arrow = "mobs:mese_arrow",

View File

@ -11,7 +11,7 @@ mobs:register_mob("mobs:npc", {
type = "npc",
-- aggressive, deals 4 damage to player/monster when hit
passive = false,
damage = 4,
damage = 6,
attack_type = "dogfight",
attacks_monsters = true,
-- health & armor

View File

@ -7,7 +7,7 @@ mobs:register_mob("mobs:oerkki", {
-- aggressive, deals 5 damage when player hit
passive = false,
attack_type = "dogfight",
damage = 5,
damage = 7,
-- health & armor
hp_min = 40, hp_max = 50, armor = 90,
-- textures and model

View File

@ -7,7 +7,7 @@ mobs:register_mob("mobs:sand_monster", {
-- aggressive, deals 3 damage to player when hit
passive = false,
attack_type = "dogfight",
damage = 3,
damage = 5,
-- health & armor
hp_min = 15, hp_max = 20, armor = 90,
-- textures and model

View File

@ -7,7 +7,7 @@ mobs:register_mob("mobs:spider", {
-- agressive, does 4 damage to player when hit
passive = false,
attack_type = "dogfight",
damage = 4,
damage = 6,
-- health & armor
hp_min = 30, hp_max = 40, armor = 100,
-- textures and model

View File

@ -7,7 +7,7 @@ mobs:register_mob("mobs:stone_monster", {
-- aggressive, deals 5 damage to player when hit
passive = false,
attack_type = "dogfight",
damage = 5,
damage = 8,
-- health & armor
hp_min = 30, hp_max = 35, armor = 60,
-- textures and model

View File

@ -7,7 +7,7 @@ mobs:register_mob("mobs:tree_monster", {
-- aggressive, deals 8 damage to player when hit
passive = false,
attack_type = "dogfight",
damage = 8,
damage = 9,
-- health & armor
hp_min = 40, hp_max = 50, armor = 80,
-- textures and model

View File

@ -7,7 +7,7 @@ mobs:register_mob("mobs:pumba", {
-- aggressive, deals 4 damage to player when threatened
passive = false,
attack_type = "dogfight",
damage = 4,
damage = 5,
-- health & armor
hp_min = 15, hp_max = 20, armor = 200,
-- textures and model

View File

@ -7,7 +7,7 @@ mobs:register_mob("mobs:wolf", {
-- agressive, does 4 damage to player when hit
passive = false,
attack_type = "dogfight",
damage = 4,
damage = 5,
-- health & armor
hp_min = 15, hp_max = 20, armor = 200,
-- textures and model