diff options
author | Darren <darrensapalo@users.noreply.github.com> | 2018-12-22 23:36:38 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-22 23:36:38 +0800 |
commit | c36713f883a9526c2eb985e89b840ba1deff8fe2 (patch) | |
tree | f8e13b598c228a0176989b448124377802782b16 /npc | |
parent | 406ae363a78527fa1189cf29ab322e0a9146e330 (diff) | |
download | hercules-c36713f883a9526c2eb985e89b840ba1deff8fe2.tar.gz hercules-c36713f883a9526c2eb985e89b840ba1deff8fe2.tar.bz2 hercules-c36713f883a9526c2eb985e89b840ba1deff8fe2.tar.xz hercules-c36713f883a9526c2eb985e89b840ba1deff8fe2.zip |
Added missing equipment
Based on data from [iRO on Mora Village](https://irowiki.org/wiki/Mora_Village), there were missing equipment for guillotine cross, ranger, and rune knight.
I simply added the item IDs for the items, and the menu paths to get the said items.
Not sure if I should replace the item IDs with their Aegis names, or if that is not necessary.
Diffstat (limited to 'npc')
-rw-r--r-- | npc/re/merchants/enchan_mora.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/npc/re/merchants/enchan_mora.txt b/npc/re/merchants/enchan_mora.txt index 46979c82b..faefeb01c 100644 --- a/npc/re/merchants/enchan_mora.txt +++ b/npc/re/merchants/enchan_mora.txt @@ -580,16 +580,16 @@ mora,152,97,5 script Guardian of Power#pa082 4_F_DOGTRAVELER,{ next; switch(.@job) { case 0: // Rune Knight - setarray .@items[0],2475,2476,2574,2575; - .@i = select("Cancel", "Ur's Greaves (Shoes)", "Peuz's Greaves (Shoes)", "Ur's Manteau (Garment)", "Peuz's Manteau (Garment)")-2; + setarray .@items[0],2475,2476,2574,2575,15036,15037,2883,2884; + .@i = select("Cancel", "Ur's Greaves (Shoes)", "Peuz's Greaves (Shoes)", "Ur's Manteau (Garment)", "Peuz's Manteau (Garment)", "Ur's Plate (Armor", "Peuz's Plate (Armor)", "Ur's Seal (Accessory)", "Peuz's Seal (Accessory)")-2; break; case 1: // Guillotine Cross - setarray .@items[0],2477,2478,2577,2578; - .@i = select("Cancel", "Sapha Shoes (Shoes)", "Nab Shoes (Shoes)", "Sapha Hood (Garment)", "Nab Hood (Garment)")-2; + setarray .@items[0],2477,2478,2577,2578,15038,15039,2886,2887; + .@i = select("Cancel", "Sapha Shoes (Shoes)", "Nab Shoes (Shoes)", "Sapha Hood (Garment)", "Nab Hood (Garment)", "Sapha's Cloth (Armor)", "Nab's Cloth (Armor)", "Sapha Ring (Accessory)", "Nab Ring (Accessory)")-2; break; case 2: // Ranger - setarray .@items[0],2479,2480,2580,2581; - .@i = select("Cancel", "White Wing Boots (Shoes)", "Black Wing Boots (Shoes)", "White Wing Manteau (Garment)", "Black Wing Manteau (Garment)")-2; + setarray .@items[0],2479,2480,2580,2581,15042,15043,2890,2891; + .@i = select("Cancel", "White Wing Boots (Shoes)", "Black Wing Boots (Shoes)", "White Wing Manteau (Garment)", "Black Wing Manteau (Garment)", "White Wing Suit (Armor)", "Black Wing Suit (Armor)", "White Wing Brooch (Accessory)", "Black Wing Brooch (Accessory)")-2; break; } if (.@i == -1) { |