Skip to content

Commit a719b17

Browse files
authored
Merge pull request #3 from jacobwsnowden/add-healerout-strat
Added HealerOut strat
2 parents 89bc1d2 + f64cbb1 commit a719b17

33 files changed

+1038
-4
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,5 @@ vite.config.js.timestamp-*
1717
.vercel
1818
.test-tmp
1919
symlink-from
20-
.idea/
20+
.idea/
21+
.vs/

wtfdig/src/routes/+layout.svelte

+2-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
type: 'alert',
1717
title: 'Changelog',
1818
body:
19-
`1/5/2024: fixed raidplan spread spots to match where people end up after tether breaks, added pair partners + cleaned up phrasing
19+
`1/7/2024: added HealerOut to the strat selector - added by Jake Hale @ Louisoux
20+
1/5/2024: fixed raidplan spread spots to match where people end up after tether breaks, added pair partners + cleaned up phrasing
2021
1/3/2024: added wfJ/o1Z to the raidplan selector, changed Add Relative to Wall Relative for CODCAR
2122
1/2/2024: Updated some styling to make the swap assignments more obvious (yes melees will sometimes need to take a ranged spot), added some info to footer
2223
1/1/2024: Added big overview image, rotated AOE spreads correctly for CODCAR, added post-swap locations for everyone starting on tiles

wtfdig/src/routes/+page.svelte

+3
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@
4242
<RadioGroup>
4343
<RadioItem bind:group={stratName} name="stratName" value={'raidplan'}>Raidplan (Aurelia/wfJ/o1Z)</RadioItem>
4444
<RadioItem bind:group={stratName} name="stratName" value={'codcar'}>CODCAR</RadioItem>
45+
<RadioItem bind:group={stratName} name="stratName" value={'healerout'}>HealerOut</RadioItem>
4546
</RadioGroup>
4647
</div>
4748
<div>
@@ -75,6 +76,8 @@
7576
<img style:max-height={'400px'} src={'./strats/raidplan/overall.png'} />
7677
{:else if stratPackage?.stratName === 'codcar'}
7778
<img style:max-height={'400px'} src={'./strats/codcar/overall.png'} />
79+
{:else if stratPackage?.stratName === 'healerout'}
80+
<img style:max-height={'400px'} src={'./strats/healerout/overall.png'} />
7881
{/if}
7982
</div>
8083
</div>

wtfdig/src/routes/+page.ts

+1,031-2
Large diffs are not rendered by default.
420 KB
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading
Loading

0 commit comments

Comments
 (0)