diff options
-rw-r--r-- | db/re/item_db.conf | 2 | ||||
-rw-r--r-- | npc/007-1/skydg.txt | 24 |
2 files changed, 13 insertions, 13 deletions
diff --git a/db/re/item_db.conf b/db/re/item_db.conf index 4776ea6c1..397679716 100644 --- a/db/re/item_db.conf +++ b/db/re/item_db.conf @@ -6166,7 +6166,7 @@ item_db: ( Def: 25 Loc: "EQP_GARMENT" WeaponLv: 0 - EquipLv: 16 + EquipLv: 30 Refine: false ViewSprite: 2006 BuyingStore: true diff --git a/npc/007-1/skydg.txt b/npc/007-1/skydg.txt index 7f590ba3c..36b98583a 100644 --- a/npc/007-1/skydg.txt +++ b/npc/007-1/skydg.txt @@ -8,7 +8,7 @@ 007-1,165,144,0 script Miner#SkyDG NPC_PLAYER,{ .@Miner = getq(MineQuests_Miner); - if (BaseLevel < 20) goto L_TooWeak; + if (BaseLevel < 25) goto L_TooWeak; if (.@Miner == 1) goto L_Check; if (.@Miner == 2) goto L_Complete; @@ -57,7 +57,7 @@ L_Lista: mes " * 15 " + getitemlink(BatWing); mes " * 10 " + getitemlink(BatTeeth); mes " * 10 " + getitemlink(CactusDrink); - mes " * 02 " + getitemlink(IronOre); // Reviewer Notes: Perhaps, "Scorpion Claw" would be better? + mes " * 03 " + getitemlink(ScorpionClaw); close; L_Check: @@ -71,24 +71,24 @@ L_Check: L_Give: if ( - countitem(MaggotSlime) < 25 || - countitem(BugLeg) < 20 || - countitem(RedScorpionStinger) < 8 || - countitem(BatWing) < 15 || - countitem(BatTeeth) < 10 || - countitem(CactusDrink) < 10) - countitem(IronOre) < 3) - ) goto L_Lying; + countitem(MaggotSlime) < 25 || + countitem(BugLeg) < 20 || + countitem(RedScorpionStinger) < 8 || + countitem(BatWing) < 15 || + countitem(BatTeeth) < 10 || + countitem(CactusDrink) < 10 || + countitem(ScorpionClaw) < 3 + ) goto L_Lying; inventoryplace MinerGloves, 1; delitem(MaggotSlime, 25); - delitem(BugLeg , 20); + delitem(BugLeg, 20); delitem(RedScorpionStinger, 8); delitem(BatWing, 15); delitem(BatTeeth, 10); delitem(CactusDrink, 10); - delitem(IronOre, 3); + delitem(ScorpionClaw, 3); getitem(MinerGloves, 1); getexp(150, 0); |