Added remaining Heavensward FSH class quests#570
Conversation
| "AetheryteShortcut": "The Dravanian Forelands - Tailfeather", | ||
| "SkipConditions": { | ||
| "AetheryteShortcutIf": { | ||
| "InSameTerritory": true |
There was a problem hiding this comment.
I believe the "InSameTerritory" skip condition doesn't do anything. It was replaced by a proximity check at one point, so this isn't necessary.
| { | ||
| "ItemId": 12769, | ||
| "ItemCount": 3 | ||
| } |
There was a problem hiding this comment.
If you do not add a fishing present to FishingData.cs, you should instead add a FishingOptions object to the ItemsToGather object. In there, you can set the bait id and hook type. I assume we want to set it to the Versatile Lure. The previous Icepick quest should have an example, though it uses a different bait.
| { | |
| "ItemId": 12769, | |
| "ItemCount": 3 | |
| } | |
| { | |
| "ItemId": 12769, | |
| "ItemCount": 3, | |
| "FishingOptions": { | |
| "BaitId": 29717, | |
| "HookType": { | |
| "Normal": { | |
| "Strong": true | |
| } | |
| } | |
| } | |
| } |
| "InteractionType": "WalkTo" | ||
| }, | ||
| { | ||
| "Comment": "Fish for 1x Letter Puffer (Bait: Giant Crane Fly)", |
There was a problem hiding this comment.
I would usually include a step to have the player buy the bait before fishing, otherwise it will just start casting with whatever they previously had on and it could easily use up all their bait if it's not compatible with the spot or fish.
| "Mount": false | ||
| }, | ||
| { | ||
| "Comment": "Fish for 1x Catkiller (Bait: Bladed Steel Jig, Mooch: Bullfrog)\nWEATHER REQUIRED: Clear Skies or Fair Skies", |
There was a problem hiding this comment.
This is one that I would recommend making an AH preset for and setting it up in FishingData.cs. The current fishing preset generator doesn't yet support mooching or weather conditions, but that can be set up in the preset and exported.
No description provided.