diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-01-24 19:34:11 -0200 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-01-24 19:34:11 -0200 |
commit | 6469b75a561056e4ac584c9cc2a60ec9190ca187 (patch) | |
tree | 869676a5a6865061fa0dd2fccc443491220a57a0 | |
parent | 2080b08cb833af3a24e9318df0933a6e5ef5e7e6 (diff) | |
download | serverdata-6469b75a561056e4ac584c9cc2a60ec9190ca187.tar.gz serverdata-6469b75a561056e4ac584c9cc2a60ec9190ca187.tar.bz2 serverdata-6469b75a561056e4ac584c9cc2a60ec9190ca187.tar.xz serverdata-6469b75a561056e4ac584c9cc2a60ec9190ca187.zip |
Skills to the Night Scorpion: Splash attack, will silence long rangers attackers,
and can also increase damage power. Note the silence skill still need some polishing.
Probably should use MST_RANDOM for example
-rw-r--r-- | db/re/mob_db.conf | 7 | ||||
-rw-r--r-- | db/re/mob_skill_db.conf | 45 |
2 files changed, 49 insertions, 3 deletions
diff --git a/db/re/mob_db.conf b/db/re/mob_db.conf index 39c8513ca..d8afa1ba3 100644 --- a/db/re/mob_db.conf +++ b/db/re/mob_db.conf @@ -2537,9 +2537,10 @@ mob_db: ( AttackMotion: 672 DamageMotion: 480 Drops: { - BugLeg: 400 - CactusDrink: 600 - CactusPotion: 200 + CactusDrink: 6000 + BugLeg: 4000 + CactusPotion: 2000 + LeadOre: 400 SharpKnife: 150 Pearl: 8 } diff --git a/db/re/mob_skill_db.conf b/db/re/mob_skill_db.conf index c06758336..587681ef2 100644 --- a/db/re/mob_skill_db.conf +++ b/db/re/mob_skill_db.conf @@ -418,6 +418,51 @@ SKILL_COND2 = { ConditionData: 8 } } + NightScorpion: { + SM_BASH: { + SkillState: "MSS_BERSERK" + SkillLevel: 6 + Rate: 2700 + Delay: 20000 + Cancelable: true + SkillTarget: "MST_TARGET" + CastCondition: "MSC_ALWAYS" + } + NPC_SILENCEATTACK: { + SkillState: "MSS_BERSERK" + SkillLevel: 2 + Rate: 9800 + Delay: 40000 + CastTime: 700 + Cancelable: true + SkillTarget: "MST_TARGET" + CastCondition: "MSC_LONGRANGEATTACKED" + } + NPC_SPLASHATTACK: { + SkillState: "MSS_BERSERK" + SkillLevel: 4 + Rate: 8000 + Delay: 40000 + CastTime: 1200 + Cancelable: true + SkillTarget: "MST_AROUND2" + CastCondition: "MSC_ATTACKPCGE" + ConditionData: 2 + } + + // Elemental fix + NPC_CHANGEDARKNESS: { + SkillState: "MSS_BERSERK" + SkillLevel: 1 + Rate: 10000 + Delay: 1800000 + CastTime: 100 + Cancelable: false + SkillTarget: "MST_SELF" + CastCondition: "MSC_ALWAYS" + Emotion: 10 + } + } GoldenScorpion: { SM_BASH: { SkillState: "MSS_BERSERK" |