Skip to content

Commit

Permalink
Remove Wicked Arrow and Impact Shot from vendors
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhengPeiRu21 committed Sep 15, 2023
1 parent b198626 commit b6dfd1e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions sql/world/base/vanilla_vendors.sql
Original file line number Diff line number Diff line change
Expand Up @@ -4349,6 +4349,9 @@ INSERT INTO `npc_vendor` (`entry`, `item`, `maxcount`, `incrtime`) VALUES (13432
/* Delete Simple Flour from TBC pre-60 vendors - they should technically have it but it is a catch-up mechanic so wait until TBC areas for it to be available */
DELETE FROM `npc_vendor` WHERE `entry` IN (17246, 16253, 16262, 16261, 16677, 17490, 16718) AND `item` = 30817;

/* Remove Wicked Arrow and Impact Shot from vendors - these skip all end-game vanilla ammo progression */
DELETE FROM `npc_vendor` WHERE `item` IN (28060, 28053);

/* PvP Gear Vendor Rep Requirements */
REPLACE INTO conditions (`SourceTypeOrReferenceId`, `SourceGroup`, `SourceEntry`, `ConditionTypeOrReference`, `ConditionValue1`, `ConditionValue2`, `comment`) VALUES
(23, 13219, 17349, 5, 729, 16 + 32 + 64 + 128, 'Vanilla PvP Gear Conditions'),
Expand Down

3 comments on commit b6dfd1e

@ajgration
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These should still be available from TBC/WotLK vendors, no? I can understand if it's a creative decision though, as they do make thorium arrow/shells immediately obsolete once you reach TBC content.

@ZhengPeiRu21
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

These should still be available from TBC/WotLK vendors, no? I can understand if it's a creative decision though, as they do make thorium arrow/shells immediately obsolete once you reach TBC content.

Thanks for the feedback. I'll admit this was a quick and lazy fix - I realized there are a number of vendors in areas such as Exodar that sell these arrows, and wasn't sure I'd be able to track down every one. An alternate solution I considered was making the ammo require level 61, but there is already a better ammo available at level 61 in Zangarmarsh (though it does require a certain faction reputation.)

I'll reconsider doing this properly and just making sure these are not accessible anywhere pre-Dark Portal.

@ajgration
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah I figured as much. I noticed them in Silvermoon and thought the same, not exactly a fun job tracking them all down haha. All good.

Side note. They're not the only items that probably shouldn't be in those tbc zones. Just off the top of my head, Innkeepers are selling level 55, 65, 75 food/drink.

Please sign in to comment.