diff options
author | Jesusaves <cpntb1@ymail.com> | 2019-06-01 21:55:56 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2019-06-01 21:55:56 -0300 |
commit | 65823d4443318a87c4c1684a3c02ffa53fe37a46 (patch) | |
tree | bb3ddabf1d36b13f0ad1ac5db87f24c9f21560dd /npc/003-1/ishi.txt | |
parent | 9f487f04452c06a357038d972f4626be56462227 (diff) | |
download | serverdata-65823d4443318a87c4c1684a3c02ffa53fe37a46.tar.gz serverdata-65823d4443318a87c4c1684a3c02ffa53fe37a46.tar.bz2 serverdata-65823d4443318a87c4c1684a3c02ffa53fe37a46.tar.xz serverdata-65823d4443318a87c4c1684a3c02ffa53fe37a46.zip |
Add even more random loot at Ishi for level 45 and 75
Diffstat (limited to 'npc/003-1/ishi.txt')
-rw-r--r-- | npc/003-1/ishi.txt | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/npc/003-1/ishi.txt b/npc/003-1/ishi.txt index 6d063584d..275845c93 100644 --- a/npc/003-1/ishi.txt +++ b/npc/003-1/ishi.txt @@ -54,16 +54,35 @@ array_push(@Rares, EquipmentBlueprintA); array_push(@Rares, (JobLevel/4)); - // Additional Loot + // Additional Loot for level 45+ if (BaseLevel >= 45) { array_push(@Items, IronOre); array_push(@Items, SilverOre); array_push(@Items, TinOre); + array_push(@Items, ChocolateMouboo); + array_push(@Items, MoubooSteak); + array_push(@Items, Milk); + array_push(@Items, TolchiArrowBox); + array_push(@Items, ShadowHerb); + + array_push(@Rares, AlchemyBlueprintB); + array_push(@Rares, (JobLevel/8)); + array_push(@Rares, EquipmentBlueprintB); + array_push(@Rares, (JobLevel/8)); } + + // Additional Loot for level 75+ if (BaseLevel >= 75) { array_push(@Items, TitaniumOre); array_push(@Items, IridiumOre); array_push(@Items, GoldenOre); + array_push(@Items, TulimWarpCrystal); + array_push(@Items, MercBoxA); + + array_push(@Rares, AlchemyBlueprintC); + array_push(@Rares, (JobLevel/12)); + array_push(@Rares, EquipmentBlueprintC); + array_push(@Rares, (JobLevel/12)); } mesn l("Ishi, the Rewards Master"); |