diff options
-rw-r--r-- | db/re/mob_db.conf | 2 | ||||
-rw-r--r-- | npc/007-1/tycoon.txt | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/db/re/mob_db.conf b/db/re/mob_db.conf index 29c06bcb4..f1ad7de2f 100644 --- a/db/re/mob_db.conf +++ b/db/re/mob_db.conf @@ -3873,6 +3873,7 @@ mob_db: ( CasinoCoins: 444 IronOre: 300 CasinoCoins: 222 + MinerHat: 18 LavaManaPearl: 1 } WeaponAttacks: { @@ -7609,6 +7610,7 @@ mob_db: ( Coal: 3000 IronOre: 1000 Ruby: 100 + MinerHat: 12 } }, // ok diff --git a/npc/007-1/tycoon.txt b/npc/007-1/tycoon.txt index 8ed6721a1..d15332109 100644 --- a/npc/007-1/tycoon.txt +++ b/npc/007-1/tycoon.txt @@ -176,10 +176,10 @@ L_Miner: mesq l("Well, I'm the miner leader, indeed. A miner need to have the full set."); next; mesn; - mesq l("The uniform would be: @@, @@ and @@", getitemlink(LeatherShirt), getitemlink(MinerHat), getitemlink(Pickaxe)); + mesq l("The uniform would be: @@, @@, @@ and @@", getitemlink(LeatherShirt), getitemlink(MinerHat), getitemlink(MinerGloves), getitemlink(Pickaxe)); next; mesn; - mesq l("I can sell you the Pickaxe for @@ GP if you have and equip the remaining equipment.", .@price); + mesq l("I can sell you the Pickaxe for @@ GP if you have and @@ the remaining equipment.", .@price, b(l("equip"))); if (Zeny < .@price) close; @@ -191,6 +191,7 @@ L_Miner: if ( getequipid(EQI_HEAD_TOP) == MinerHat && getequipid(EQI_HEAD_MID) == LeatherShirt && + getequipid(EQI_GARMENT) == MinerGloves && Zeny >= .@price) { inventoryplace Pickaxe, 1; |