-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.json
1199 lines (1199 loc) · 38 KB
/
search.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"shortcuts": {
"climbing": "#climbing Standard TL5 $maulpiecea and Acceleration $accel climbing",
"hammerclimb": "#hammer-climb Everything about the Hammer Climb $swh",
"natty": "#natty\n• Timing Target Cycle $tc with Natural Instinct\n• Natural Instinct for Phase 1\n• Placing an ultimate in melee distance start of Phase 5\n• Properly using combat dummies $dummy at Vorago",
"spreadsheet": "<https://docs.google.com/spreadsheets/d/1q7zscYcfJ9qXeIptQmXJiWUloalwDNtmxIOX7bqgkJg/edit?usp=sharing>",
"targetcycle": "#target-cycle Timing Target Cycle with ability CDs, the Alt1 application or cheesing TC"
},
"instinct": [
":natty"
],
"natty": [
":natty"
],
"natural": [
":natty"
],
"circle": [
"https://cdn.discordapp.com/attachments/676485011268042761/736324357843845209/circle.png"
],
"climb": [
":climbing",
":hammerclimb"
],
"heal": [
"#crack-healing"
],
"split": [
"#team-split Mechanic overview for the Team Split weekly special",
"#team-split Breaking Team Splits"
],
"team": [
"If you are completely new to Vorago, read through our #basic-guide and #overview",
"#team-forming Check out our affiliates for Vorago Team Forming",
"#team-split Mechanic overview for the Team Split weekly special",
"#team-split Breaking Team Splits"
],
"solo": [
"#solo-lure Solo Lure in Phase 1 as Base Tank",
"#solo Soloing Phase 1 - 5"
],
"hammer": [
":hammerclimb",
":targetcycle"
],
"center": [
"#recenter Positioning / recentering Vorago in Phase 2"
],
"sgb": [
"#sgb-without-ioth Using the Seren Godbow or SWH special attack off-style without the Ingenuity of the Humans"
],
"seren": [
"#sgb-without-ioth Using the Seren Godbow or SWH special attack off-style without the Ingenuity of the Humans"
],
"shard": [
"#overview On-tick shattering in Phase 2"
],
"shat": [
"#overview On-tick shattering in Phase 2"
],
"lure": [
"#trio Trio Normal Mode as TL5",
"#climbing Top Lure for climbing Phase 1",
"#solo-lure Solo Lure in Phase 1"
],
"target": [
":targetcycle",
":natty"
],
"cycle": [
":targetcycle",
":natty"
],
"dum": [
":natty"
],
"preset": [
"#presets Everything about Vorago presets"
],
"ceil": [
"#ceilings Mechanic overview for the Ceilings weekly special"
],
"scop": [
"#scopulus Mechanic overview for the Scopulus weekly special"
],
"green": [
"#green-bomb Mechanic overview for the Green Bomb weekly special"
],
"pb": [
"#the-end Mechanic overview for the Purple Bomb weekly special"
],
"purple": [
"#the-end Mechanic overview for the Purple Bomb weekly special"
],
"mechanic": [
"#overview An overview of all mechanics and phases at Vorago"
],
"overflow": [
"#zero-linking All knowledge about the Overflow mechanic and approaching zero-links in duo"
],
"link": [
"#overview The Reflect mechanic",
"#zero-link Approaching zero-links in duo",
"Rago Hub invite: https://discord.gg/uqGJbKH"
],
"bleed": [
"#overview The Bleed mechanic",
"#clearing-bleeds Clearing Bleeds; also covers escape-bladed diving"
],
"reflect": [
"#overview The Reflect mechanic"
],
"cept": [
"#cade-cept Barricade Intercept"
],
"cade": [
"#cade-cept Barricade Intercept"
],
"maul": [
"#maul Everything about the Maul of Omens",
"#climbing Obtaining the first Maul piece (a)",
"Phase 10 Maul Timings:\n- #ceilings Green Bomb release\n- #scopulus Team Split spawn\n- #vitalis start of Reflect\n- #green-bomb Green Bomb release\n- #team-split start of Reflect\n- #the-end after last Bleed"
],
"normal": [
"#trio Trio or larger teams",
"#duo",
"#solo Soloing Phase 1 - 5"
],
"trio": [
"#trio Trio or larger teams",
"#trio-hm Trio Hard Mode"
],
"man": [
"#trio Trio or larger teams"
],
"base": [
"#recenter Positioning / recentering Vorago in Phase 2",
"#duo Responsibilities of the Base Tank in Normal Mode",
"#trio-hm Base Tank in Trio and 4man Hard Mode"
],
"tl5": [
" Role responsibilities for the TL5: #trio",
" Top Luring in phase 1: #climbing",
" Mauling phase 5: #maul"
],
"alt1": [
" Setting up the Alt1 application for timing Target Cycle and other info on TC: #target-cycle",
" Timing Target Cycle with Natural Instinct: #natty"
],
"gb": [
" Mechanic overview for the Green Bomb weekly special: #green-bomb",
" Ability damage rotations for Green Bomb:"
],
"orb": [
" Gravity Fields in phase 2: #overview",
" Vitalis orbs spawning Vitali: #vitalis"
],
"affinity": [
" Hammer Climbing to apply affinitiy stacks in TC: #hammer-climb",
" Using off-style Special Attacks without IOTH: #sgb-without-ioth",
" Normal Mode rotations: ",
" Hard Mode melee SWH rotations:"
],
"nihil": [
" Ice Nihils causing random aggression changes during Scopulus: #scopulus",
" Everything about Vorago presets: #presets"
],
"barrage": [
" Using Barrage over Blitz auto attacks as mage: #ability-travel-speed"
],
"blitz": [
" Using Barrage over Blitz auto attacks as mage: #ability-travel-speed"
],
"p2": [
" Phase 2 mechanic breakdown: ",
" BHD and other mechanic references: #overview"
],
"phase": [
" Overview for all phases in Normal and Hard Mode:"
],
"p4": [
" Overview for all phases in Normal and Hard Mode:"
],
"p6": [
" Overview for all phases in Normal and Hard Mode:"
],
"p7": [
" Overview for all phases in Normal and Hard Mode:"
],
"p8": [
" Overview for all phases in Normal and Hard Mode:"
],
"p9": [
" Overview for all phases in Normal and Hard Mode:"
],
"p10": [
" Overview for all phases in Normal and Hard Mode:"
],
"p11": [
" Overview for all phases in Normal and Hard Mode:"
],
"p1": [
" Phase 1 mechanic breakdown: ",
" Top Lure and standard climbs for phase 1: #climbing",
" Solo Lure in phase 1: #solo-lure",
" Hammer Climbing: #hammer-climb",
" Boosting HP for the entry hit after challenging Vorago: #basic-guide #overview"
],
"vitality": [
" Boosting HP for the entry hit after challenging Vorago: #basic-guide #overview",
" Several use cases for the Powerburst of Vitality: #presets"
],
"overview": [
" Beginner's introduction to Vorago: #basic guide #overview",
" Overview for all phases in Normal and Hard Mode:"
],
"poll": [
" Community polls: #polls"
],
"role": [
"Vorago Role Responsibilities:",
" Normal Mode Base and Bomb Tank: #duo",
" Normal Mode TL5: #trio",
" Normal Mode free DPS: ",
" For Hard Mode references, search for `Hard Mode`",
"Rago Hub:",
" Overview of all roles on Rago Hub: #info",
" Improving your skill with progressive challenges: #🎓progress",
" Request a management or tier role: #role-requests"
],
"suggest": [
" Give us feedback with your suggestions for the future of Rago Hub:"
],
"stall": [
" Stall defines delaying auto attacks by forcing Vorago to move",
" Advanced ability rotations with stalled abilities: ",
" All knowledge about the Overflow mechanic in phases 5 / 10 / 11: #overflow",
" Approaching zero-links in duo: #zero-linking",
" Optimally delaying Vorago's auto attacks in duo Hard Mode phase 1: #duo-hm"
],
"rot": [
" Weekly changing special attacks / weekly rotations: ",
" Normal Mode ability damage rotations: ",
" Hard Mode ability damage rotations: ",
" On-tick shattering in phase 2:"
],
"debil": [
" Explanation about Debilitate in phases 5 / 10 / 11: #overflow"
],
"bhd": [
" Phase 2 mechanic breakdown: ",
" BHD and other mechanic references: #overview"
],
"bring": [
" Phase 2 mechanic breakdown: ",
" BHD and other mechanic references: #overview"
],
"down": [
" Phase 2 mechanic breakdown: ",
" BHD and other mechanic references: #overview"
],
"intro": [
" Introduction to Rago Hub: #info",
" Introduction to the boss Vorago: #overview #basic-guide"
],
"learn": [
" Improving your skill with progressive challenges: #🎓progress"
],
"achiev": [
" Post your personal achievements: #achievements",
" All achievement roles on Rago Hub: #info",
" Vorago-related achievements and unlocks: #maul"
],
"index": [
" An index for the entirety of Rago Hub #📌guide-index",
" Phase breakdown in Normal and Hard Mode:"
],
"bombi": [
"• Unlocking the Bombi pet: #maul"
],
"drop": [
" Drops at Vorago: #overview"
],
"lining": [
" Lining up for Bomb Tanks in Hard Mode phases 10 and 11: #lining-up"
],
"large": [
" Large teams in Normal Mode: ",
" Large teams in Hard Mode: #large-teams-hm"
],
"5man": [
" Large teams in Normal Mode: ",
" Large teams in Hard Mode: #large-teams-hm"
],
"6man": [
" Large teams in Normal Mode: ",
" Large teams in Hard Mode: #large-teams-hm"
],
"7man": [
" Large teams in Normal Mode: ",
" Large teams in Hard Mode: #large-teams-hm"
],
"library": [
" Normal Mode ability damage rotations: ",
" Hard Mode ability damage rotations:"
],
"food": [
" Everything about Vorago presets: #presets"
],
"dome": [
" Shield Dome breaking the Maul animation: #maul"
],
"mine": [
" Dominon Mines use cases: #presets",
" Mechanic overview for the Vitalis weekly special: #vitalis",
" Ability damage rotations for Vitalis:"
],
"hp": [
" Boosting HP for the entry hit after challenging Vorago: #overview #basic-guide",
" Everything about Vorago presets: #presets"
],
"entry": [
" Boosting HP & timing the entry hit after challenging Vorago: #overview",
" Natural Instinct for phase 1: #natty"
],
"line": [
" Lining up for Bomb Tanks in Hard Mode phases 10 and 11: #lining-up"
],
"voke": [
" Voking Vorago into jump spot in phase 1: #climbing",
" Voking and clearing Bleeds: #clearing-bleeds",
" Causes for Scopuli changing their targeted player: #scopulus"
],
"voking": [
" Voking Vorago into jump spot in phase 1: #climbing",
" Voking and clearing Bleeds: #clearing-bleeds",
" Causes for Scopuli changing their targeted player: #scopulus"
],
"p5": [
" Overview for all phases in Normal and Hard Mode:"
],
"red": [
" Red Bomb mechanic reference: #overview #basic-guide",
" Forcing Red Bombs on another player for Barricade Intercept: #cade-cept",
" Red Team Splits invisibly stretched in Hard Mode: #team-split"
],
"meta": [
" Metamorphosis being cleared by the Purple Bomb: #the-end"
],
"solak": [
"no"
],
"fox": [
"what does the fox say?"
],
"zoro": [
"a horse is a horse of course of course"
],
"flank": [
" Required kill times for the Rago Hub tier system: #info",
" Time after challenging until entry hit: #overview #basic-guide",
" Timing Target Cycle with ability CDs, the Alt1 application or cheesing TC: #target-cycle",
" Timing Target Cycle with Natural Instinct: #natty",
" Maul timings in Hard Mode phase 10: #maul",
" Purple Bomb countdown: #the-end"
],
"time": [
" Required kill times for the Rago Hub tier system: #info",
" Time after challenging until entry hit: #overview #basic-guide",
" Timing Target Cycle with ability CDs, the Alt1 application or cheesing TC: #target-cycle",
" Timing Target Cycle with Natural Instinct: #natty",
" Maul timings in Hard Mode phase 10: #maul",
" Purple Bomb countdown: #the-end"
],
"timing": [
" Required kill times for the Rago Hub tier system: #info",
" Time after challenging until entry hit: #overview #basic-guide",
" Timing Target Cycle with ability CDs, the Alt1 application or cheesing TC: #target-cycle",
" Timing Target Cycle with Natural Instinct: #natty",
" Maul timings in Hard Mode phase 10: #maul",
" Purple Bomb countdown: #the-end"
],
"under": [
" Stepping under to avoid bombs in duo or trio HM: #stepping-under",
" Alternative base spot in phase 2: #recenter",
" Mid mist at Green Bomb: #green-bomb",
" Mid rock at Ceilings: #ceilings",
" Orbs spawning beneath Vorago - Gravity Field mechanic reference: #overview"
],
"rock": [
" Mechanic overview for the Ceilings weekly special: #ceilings",
" Ability damage rotations for Ceilings:"
],
"mid": [
" Middle rocks during the Ceilings weekly rotation: #ceilings",
" Middle mist during the Green Bomb weekly rotation: #green-bomb"
],
"debuff": [
" Hammer Climbing to apply affinitiy stacks in TC: #hammer-climb",
" Using off-style Special Attacks without IOTH: #sgb-without-ioth",
" Normal Mode rotations: ",
" Hard Mode melee SWH rotations:"
],
"eof": [
"Everything about the Essence of Finality: #presets"
],
"finality": [
"Everything about the Essence of Finality: #presets"
],
"vuln": [
"Everything about Vorago presets: #presets"
],
"accel": [
" Acceleration climbing in phase 1: #climbing",
" Everything about Vorago presets: #presets"
],
"powerburst": [
"Everything about Vorago presets: #presets"
],
"corner": [
"Bladed Dive Corner Cut for climbing phase 1: #climbing"
],
"cut": [
"Bladed Dive Corner Cut for climbing phase 1: #climbing"
],
"bladed": [
" Bladed Dive Corner Cut for climbing phase 1: #climbing",
" Clearing Bleeds with escape-bladed diving: #clearing-bleeds",
" Hammer Climbing: #hammer-climb"
],
"dive": [
" Bladed Dive Corner Cut for climbing phase 1: #climbing",
" Clearing Bleeds with escape-bladed diving: #clearing-bleeds",
" Hammer Climbing: #hammer-climb"
],
"break": [
" Breaking Team Splits: ",
" Breaking the effect range of Barricade Intercept: #cade-cept"
],
"broke": [
" Breaking Team Splits: ",
" Breaking the effect range of Barricade Intercept: #cade-cept"
],
"accuracy": [
"Everything about Vorago presets: #presets"
],
"aura": [
"Accuracy boosting items: #presets"
],
"splash": [
"Everything about Vorago presets: #presets"
],
"ioth": [
"Using a Special Attack off-style without the Ingenuity of the Humans: #sgb-without-ioth"
],
"ingen": [
"Using a Special Attack off-style without the Ingenuity of the Humans: #sgb-without-ioth"
],
"start": [
" Starting with Vorago: #overview #basic-guide",
" Everything about Vorago presets: #presets"
],
"nm": [
" 4man or larger teams: ",
" Trio #trio",
" Duo #duo",
" Soloing phase 5 #solo",
" Normal Mode ability damage rotations:"
],
"learner": [
"mproving your skill with progressive challenges: #🎓progress"
],
"advanced": [
"",
"Advanced Ability Damage Rotations:",
" Advanced NM melee ability damage rotations: ",
" Advanced NM range ability damage rotations: ",
" Advanced NM mage ability damage rotations: ",
"",
"Rago Hub:",
" Overview of all roles on Rago Hub: #info",
" Improving your skill with progressive challenges: #🎓progress",
" Request a management or tier role: #role-requests"
],
"walk": [
" Vorago's walking direction and recenter in phase 2: #recenter",
" Solo Lure in phase 1: #solo-lure"
],
"boulder": [
"boulders are banned from this server, search for `ceilings` or `rocks` instead"
],
"size": [
"",
"Normal Mode:",
" 4man or larger teams:",
" Trio: #trio",
" Duo: #duo",
" Soloing phase 5: #solo",
"",
"Hard Mode:",
" 5man or larger teams: #large-teams-hm",
" 4man: ",
" Trio: #trio-hm",
" Duo: #duo-hm"
],
"auto": [
"An overview of Vorago's attack types: #overview #basic-guide"
],
"swipe": [
"Melee Swipe and its Area of Effect: #overview #basic-guide"
],
"tag": [
"Tagging bombs during The End: #the-end",
" Strategy overview for handling The End in Normal Mode: #duo"
],
"flick": [
"Pray flicking throughout Vitalis phase 3: #duo",
" Mechanic overview for the Vitalis weekly special: #vitalis"
],
"distrup": [
""
],
"ult": [
" Normal Mode ability damage rotations: ",
" Hard Mode ability damage rotations:"
],
"basic": [
" Normal Mode ability damage rotations: ",
" Hard Mode ability damage rotations:"
],
"thresh": [
" Normal Mode ability damage rotations: ",
" Hard Mode ability damage rotations:"
],
"quad": [
" Mechanic overview for the Purple Bomb weekly special: #the-end"
],
"random": [
" Random Red Bombs: #cade-cept",
" Red Bomb mechanic reference: #overview #basic-guide"
],
"ancient": [
" Everything about Vorago presets: #presets"
],
"lunar": [
" Everything about Vorago presets: #presets"
],
"rune": [
" Everything about Vorago presets: #presets"
],
"pouch": [
" Everything about Vorago presets: #presets"
],
"bt": [
" Bomb Tank in Normal Mode: #duo",
" For the Hard Mode responsibilities of a Bomb Tank, search for `Hard Mode`",
" Lining up in phases 10 and 11 Hard Mode: #lining-up"
],
"glitch": [
"Glitching out during The End: #the-end"
],
"drag": [
"Blue Bombs dragging the climber in Hard Mode phase 1:"
],
"clear": [
" Clearing Bleeds; also covers escape-bladed diving: #clearing-bleeds",
" Destroying rocks at Ceilings: #ceilings"
],
"off": [
" The Reflect mechanic: #overview #basic-guide",
" Bring Him Down: #overview #basic-guide"
],
"path": [
" Improving your skill with progressive challenges: #🎓progress",
" Solo Lure in phase 1: #solo-lure",
" Positioning / recentering Vorago in phase 2: #recenter"
],
"forc": [
" Forcing Red Bombs: #cade-cept",
" Stepping under in duo or trio HM: #stepping-under"
],
"dps": [
""
],
"clone": [
"Stone Clone mechanic reference: #mechanics"
],
"stone": [
" Stone Clone mechanic reference: #overview #basic-guide",
" Mechanic overview for the Ceilings weekly special: #ceilings"
],
"bomb": [
" Bomb Tank in Normal Mode: #duo",
" For the Hard Mode responsibilities of a Bomb Tank, search for `Hard Mode`",
" Explanation of Blue and Red Bombs: #overview #basic-guide",
" Mechanic overview for the Green Bomb weekly special: #green-bomb",
" Mechanic overview for the Purple Bomb weekly special: #the-end",
" Lining up in phases 10 and 11 Hard Mode: #lining-up"
],
"deto": [
" Pre-charging Detonate for TC: #target-cycle",
" Pre-ultimate and pre-detonate for P5: #natty"
],
"guide": [
"All available guides on Rago Hub: #📌guide-index"
],
"sere": [
" you will always be less important than my waifu pillow"
],
"jacob": [
" tell me whether to push or pull this door please"
],
"inv": [
" https://discord.gg/uqGJbKH"
],
"beginner": [
" NM melee ability damage rotations: ",
" NM range ability damage rotations: ",
" NM mage ability damage rotations:"
],
"form": [
"Join our affiliates for Team Forming and teaching sessions: #team-forming",
" Rago PvM - https://discord.gg/Q8xpnYp",
" Ironman Vorago Hub - https://discord.gg/YrFydAQ"
],
"bridg": [
"Bridging a Green Bomb: #green-bomb"
],
"familiar": [
"Everything about Vorago presets: #presets"
],
"vitalis": [
" Mechanic overview for the Vitalis weekly special: #vitalis",
" Ability damage rotations for Vitalis:"
],
"price": [
"use .pc <item> in the #bots channel"
],
"week": [
" Weekly rotations overview for all phases in Normal and Hard Mode:"
],
"gravity": [
" Gravity Fields in phase 2: #overview #basic-guide"
],
"vit": [
" Mechanic overview for the Vitalis weekly special: #vitalis",
" Ability damage rotations for Vitalis: ",
" Powerburst of Vitality and everything about Vorago presets: #presets"
],
"novice": [
" Improving your skill with progressive challenges: #🎓progress",
" Overview of all roles on Rago Hub: #info",
" Request a management or tier role: #role-requests"
],
"intermed": [
" Improving your skill with progressive challenges: #🎓progress",
" Overview of all roles on Rago Hub: #info",
" Request a management or tier role: #role-requests"
],
"apprent": [
" Improving your skill with progressive challenges: #🎓progress",
" Overview of all roles on Rago Hub: #info",
" Request a management or tier role: #role-requests"
],
"adept": [
" Improving your skill with progressive challenges: #🎓progress",
" Overview of all roles on Rago Hub: #info",
" Request a management or tier role: #role-requests"
],
"master": [
" Improving your skill with progressive challenges: #🎓progress",
" Overview of all roles on Rago Hub: #info",
" Request a management or tier role: #role-requests"
],
"t1": [
" Improving your skill with progressive challenges: #🎓progress",
" Overview of all roles on Rago Hub: #info",
" Request a management or tier role: #role-requests"
],
"t2": [
" Improving your skill with progressive challenges: #🎓progress",
" Overview of all roles on Rago Hub: #info",
" Request a management or tier role: #role-requests"
],
"t3": [
" Improving your skill with progressive challenges: #🎓progress",
" Overview of all roles on Rago Hub: #info",
" Request a management or tier role: #role-requests"
],
"t4": [
" Improving your skill with progressive challenges: #🎓progress",
" Overview of all roles on Rago Hub: #info",
" Request a management or tier role: #role-requests"
],
"tier": [
" Improving your skill with progressive challenges: #🎓progress",
" Overview of all roles on Rago Hub: #info",
" Request a management or tier role: #role-requests"
],
"famil": [
" Everything about Vorago presets: #presets"
],
"bob": [
" Everything about Vorago presets: #presets"
],
"adre": [],
"pattern": [
" Weekly rotations overview for all phases in Normal and Hard Mode: ",
" Detailed breakdown of all mechanics at Vorago: #overview #basic-guide"
],
"wiki": [
" the official RuneScape Wiki about Vorago: https://runescape.wiki/w/Vorago"
],
"strat": [
"",
"Normal Mode:",
" 4man or larger teams: ",
" Trio: #trio",
" Duo: #duo",
" Soloing phase 5: #solo",
"",
"Hard Mode:",
" 5man or larger teams: #large-teams-hm",
" 4man: ",
" Trio: #trio-hm",
" Duo: #duo-hm"
],
"typeless": [
" Typeless entry hit after challenging Vorago: #overview #basic-guide",
" Red Bomb mechanic reference: #overview #basic-guide",
" Green Bomb mechanic reference: #green-bomb",
" Team Split mechanic reference: #team-split",
", Waterfall mechanic reference: #overview #basic-guide"
],
"pray": [
" Fortitude for the entry hit after challenging Vorago: #overview #basic-guide",
" Protection prayers for auto attacks: #overview #basic-guide",
" Pray flicking throughout Vitalis phase 3: #duo"
],
"req": [
" Everything about Vorago presets: #presets",
" Overview of all roles on Rago Hub: #info",
" Improving your skill with progressive challenges: #🎓progress",
" Request a management or tier role: #role-requests"
],
"aggr": [
" Vitali randomly causing target switching: #vitalis",
" Ice Nihils dragging random aggression from Scopuli: #scopulus",
" Base Tank responsibities in Normal Mode: #duo",
" For Hard Mode references, search for `Hard Mode`"
],
"md": [
" Standing melee distance for the third auto attack after Reflect in phase 5: #solo",
" Melee Swipe mechanic reference: #overview #basic-guide",
" Base Tank responsibities in Normal Mode: #duo",
" For Hard Mode references, search for `Hard Mode`"
],
"hom": [
" Forcing Red Bombs on another player: #cade-cept",
" Forcing the Red Bomb when Hammer Climbing: #hammer-climb",
" Red Bomb mechanic reference: #overview #basic-guide"
],
"def": [
" Red Bombs resetting defensive CDs: #overview #basic-guide",
" Green Bomb resetting defensive CDs: #green-bomb",
" Team Split resetting defensive CDs: #team-split",
" Tagging Blue Bombs early during The End resetting defensive CDs: #the-end"
],
"cd": [
" Red Bombs resetting defensive CDs: #overview #basic-guide",
" Green Bomb resetting defensive CDs: #green-bomb",
" Team Split resetting defensive CDs: #team-split",
" Tagging Blue Bombs early during The End resetting defensive CDs: #the-end"
],
"cooldown": [
" Phase 2 mechanic breakdown: ",
" BHD and other mechanic references: #overview #basic-guide"
],
"scale": [
" Entry hit scaling to the team size after challenging Vorago: #overview #basic-guide"
],
"style": [
"Using a Special Attack off-style without the Ingenuity of the Humans: #sgb-without-ioth"
],
"spec": [
" An overview of Vorago's attack types: #overview #basic-guide",
" Overview for all phases in Normal and Hard Mode: ",
" Using a Special Attack off-style without the Ingenuity of the Humans: #sgb-without-ioth"
],
"water": [
" Waterfall mechanic reference: #overview #basic-guide",
" Occurrences of the Waterfall mechanic:"
],
"push": [
" Avoiding double push-back in Hard Mode phases 10 and 11: #lining-up",
" All knowledge about the Overflow mechanic in phases 5 / 10 / 11: #overflow",
" Approaching zero-links in duo: #zero-linking"
],
"reset": [
"",
"Weekly Specials:",
" Weekly rotations overview for all phases in Normal and Hard Mode: ",
"",
"Mechanics Resetting Defensives:",
" Red Bomb mechanic reference: #overview #basic-guide",
" Green Bomb mechanic reference: #green-bomb",
" Team Split mechanic reference: #team-split",
" Waterfall mechanic reference: #mechanics"
],
"gif": [
" GIF illustration for the Climbing in phase 1: #climbing",
" GIF illustration for the Hammer Climb: #hammer-climb",
" GIF illustration for Solo Luring phase 1: #solo-lure",
" GIF illustration for centering phase 2: #recenter"
],
"switch": [
" Switching roles for Base and Bomb Tank in phase 5 Normal Mode: #duo"
],
"outfit": [
" Everything about unlocking the Omens override: #maul"
],
"jump": [
" Standard Climbs: #climbing",
" Hammer Climbing: #hammer-climb",
" Solo Lure in phase 1: #solo-lure",
" Vorago's phase transition for timing Natural Instinct: #natty"
],
"spot": [
" Positioning / recentering Vorago in phase 2: #recenter",
" Trio Normal Mode as TL5: #trio",
" Top Lure for climbing phase 1: #climbing",
" Hammer Climbing: #hammer-climb",
" Solo Lure in phase 1: #solo-lure"
],
"stuck": [
"Being stuck under a rock of the Ceilings weekly special: #ceilings"
],
"destroy": [
" Destroying a rock of the Ceilings weekly special: #ceilings",
" FIX XTL DESTROY"
],
"stack": [
" Consistently stacking Scopuli: #scopulus",
" Stacking auto attacks in one tick: #solo"
],
"pk": [
" The Reflect mechanic: #overview #basic-guide",
" Vitali switching your active target: #vitalis"
],
"finish": [
" Finishing a kill at Vorago: #maul"
],
"step": [
"Two-stepping Red Bombs: #cade-cept"
],
"gear": [
"Everything about Vorago presets: #presets"
],
"invent": [
"https://discord.gg/uqGJbKH"
],
"perk": [
"Everything about Vorago presets: #presets"
],
"stand": [
" Stand-up at The End: #the-end",
" Standing melee distance for auto attacks: #overview #basic-guide"
],
"onsl": [
"Double Disruption Shield strategy with Onslaught for phase 5 Purple Bomb: #duo"
],
"null": [
"Lost overflow for pushing Vorago in phases 5 / 10 / 11: #overflow"
],
"travel": [
" Speed of abilities connecting damage: #ability-travel-speed",
" Stacking auto attacks in one tick: #solo"
],
"melee": [
"All available melee ability damage rotations:",
" Beginner NM melee rotations: ",
" Advanced NM melee rotations: ",
" Large teams HM melee DPS rotations: ",
" Large teams HM melee SWH rotations:"
],
"range": [
"All available range ability damage rotations:",
" Beginner NM range rotations: ",
" Advanced NM range rotations: ",
" Large teams HM range DPS rotations: ",
" Large teams HM range SWH rotations:"
],
"mage": [
"All available mage ability damage rotations:",
" Beginner NM mage rotations: ",
" Advanced NM mage rotations: ",
" Large teams HM mage DPS rotations: ",
" Large teams HM mage SWH rotations:"
],
"abil": [
" Normal Mode ability damage rotations: ",
" Hard Mode ability damage rotations:"
],
"dmg": [
" Normal Mode ability damage rotations: ",
" Hard Mode ability damage rotations:"
],
"damage": [
"All available mage ability damage rotations:",
" Beginner NM mage rotations: ",
" Advanced NM mage rotations: ",
" Duo HM mage Base Tank: ",
" Duo HM mage Bomb Tank: ",
" Large teams HM mage rotations:"
],
"rago": [
"the server's only purpose is about Vorago, please be more specific"
],
"attack": [
"An overview of Vorago's attack types: #overview #basic-guide"
],
"blue": [
" Blue Bomb mechanic reference: #overview #basic-guide",
" Lining up in phases 10 and 11 Hard Mode: #lining-up"
],
"shadow": [
"Settings to enable the visibility of shadows throughout the Ceilings weekly special: #ceilings"
],
"alt": [
" Setting up the Alt1 application for timing Target Cycle and other info on TC: #target-cycle",
" Timing Target Cycle with Natural Instinct: #natty"
],
"life": [
" Boosting HP for the entry hit after challenging Vorago: #overview #basic-guide",
" Everything about Vorago presets: #presets"
],
"p3": [
"Overview for all phases in Normal and Hard Mode:"
],
"duo h": [
"Duo Hard Mode:",
" Strategy guide: #duo-hm",
" Mage Base Tank rotations:",
" Mage Bomb Tank rotations: ",
" Range Base Tank rotations: ",
" Range Bomb Tank rotations:"
],
"duo": [
" Duo Normal Mode #duo",
" Duo Hard Mode #duo-hm"
],
"hard": [
" 5man or larger teams: #large-teams-hm",
" 4man ",
" Trio #trio-hm",
" Duo #duo-hm",
" Hard Mode ability damage rotations:"
],
"hm": [
" 5man or larger teams: #large-teams-hm",
" 4man ",
" Trio #trio-hm",
" Duo #duo-hm",
" Hard Mode ability damage rotations:"
],
"teach": [
"Join our affiliates for Team Forming and teaching sessions: #team-forming",
" Rago PvM - https://discord.gg/Q8xpnYp",
" Ironman Vorago Hub - https://discord.gg/YrFydAQ"
],
"mode": [
"",
"Normal Mode:",
" 4man or larger teams: ",
" Trio: #trio",
" Duo: #duo",
" Soloing phase 5: #solo",
"",
"Hard Mode:",
" 5man or larger teams: #large-teams-hm",
" 4man: ",
" Trio: #trio-hm",
" Duo: #duo-hm"
],
"find": [
"Join our affiliates for Team Forming and teaching sessions: #team-forming",
" Rago PvM - https://discord.gg/Q8xpnYp",
" Ironman Vorago Hub - https://discord.gg/YrFydAQ"
],
"end": [
" Mechanic overview for the Purple Bomb weekly special: #the-end",
" Ability damage rotations for The End:"
],
"land": [
"Vorago's phase transition for timing Natural Instinct: #natty"
],
"stomp": [
"Vorago's phase transition for timing Natural Instinct: #natty"
],
"transit": [