diff options
-rw-r--r-- | db/re/mob_db.conf | 82 | ||||
-rw-r--r-- | npc/functions/siege.txt | 4 |
2 files changed, 84 insertions, 2 deletions
diff --git a/db/re/mob_db.conf b/db/re/mob_db.conf index d21542e21..2d3517f97 100644 --- a/db/re/mob_db.conf +++ b/db/re/mob_db.conf @@ -8128,4 +8128,86 @@ mob_db: ( TerraniteMask: 2 } }, +{ + Id: 1214 + SpriteName: "GoboBear" + Name: "Gobo Bear" + Lv: 85 + Hp: 12464 + Sp: 0 + Exp: 4051 + JExp: 44 + AttackRange: 1 + Attack: [947, 1097] + Def: 80 + Mdef: 90 + Stats: { + Str: 46 + Agi: 62 + Vit: 74 + Int: 30 + Dex: 68 + Luk: 37 + } + ViewRange: 9 + ChaseRange: 12 + Race: 2 + Element: (2, 2) + Mode: { + CanMove: true + CanAttack: true + Aggressive: true + Angry: true + ChangeTargetMelee: true + ChangeChase: true + CastSensorChase: true + } + MoveSpeed: 300 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 200 + Drops: { + Coal: 700 + } +}, +{ + Id: 1215 + SpriteName: "TestingMob" + Name: "Testing Mob" + Lv: 85 + Hp: 13255 + Sp: 0 + Exp: 5700 + JExp: 50 + AttackRange: 1 + Attack: [81, 93] + Def: 80 + Mdef: 90 + Stats: { + Str: 50 + Agi: 66 + Vit: 76 + Int: 30 + Dex: 70 + Luk: 41 + } + ViewRange: 9 + ChaseRange: 14 + Race: 2 + Element: (2, 3) + Mode: { + CanMove: true + CanAttack: true + ChangeTargetMelee: true + ChangeChase: true + CastSensorChase: true + } + MoveSpeed: 300 + AttackDelay: 1872 + AttackMotion: 672 + DamageMotion: 200 + Drops: { + Coal: 700 + } +}, ) diff --git a/npc/functions/siege.txt b/npc/functions/siege.txt index f640472e8..b6c3dc2a3 100644 --- a/npc/functions/siege.txt +++ b/npc/functions/siege.txt @@ -290,14 +290,14 @@ OnRespawn: OnLieutenantDeath: $MK_TEMPVAR+=1; getitem StrangeCoin, rand(5,10); - announce(("##2The Monster Lieutenant was defeated by @@!", strcharinfo(0)), bc_all); + announce("##2The Monster Lieutenant was defeated by "+strcharinfo(0)+"!", bc_all); end; OnColonelDeath: $MK_TEMPVAR+=10; getitem StrangeCoin, rand(15,25); $MOST_HEROIC$=strcharinfo(0); - announce(("##2The Monster Colonel was defeated by @@!", strcharinfo(0)), bc_all); + announce("##2The Monster Colonel was defeated by "+strcharinfo(0)+"!", bc_all); end; } |