-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.html
3027 lines (2891 loc) · 117 KB
/
index.html
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
<!DOCTYPE html>
<!--
Shiftstoned.com concept, graphics and original content
Copyright (C) 2018 Shiftstoned.com
Eternal Power Calculator
Copyright (C) 2018 Matt Kimball
The Eternal Power Calculator source code is free software;
you can redistribute it and/or modify it under the terms of the
GNU General Public License as published by the Free Software
Foundation; either version 2 of the License, or (at your option)
any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-->
<html lang="en">
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Fan-built deck-building tool for Eternal, A Strategy Card Game." />
<!-- Open Graph Properties -->
<meta property="og:title" content="Shiftstoned | Eternal Power Calculator" />
<meta property="og:site_name" content="Shiftstoned" />
<meta property="og:description" content="Fan-built deck-building tool for Eternal, A Strategy Card Game." />
<meta property="og:url" content="https://shiftstoned.com/epc" />
<meta property="og:type" content="article" />
<meta property="og:image" content="https://www.shiftstoned.com/images/shiftstoned-og.png" />
<meta property="og:image:type" content="image/png" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<!-- DIST:INCLUDE
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-120926504-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-120926504-1');
</script>
/DIST:INCLUDE -->
<title>Shiftstoned - Eternal Power Calculator</title>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="stylesheet" href="semantic.min.css">
<link rel="stylesheet" href="epc.css">
</head>
<body>
<!--
Pre-load all the influence icons symbols.
The graph drawing pulls the influence symbols from these elements.
-->
<div id="influence-icons">
<img id="icon-fire" src="icon-fire.png">
<img id="icon-time" src="icon-time.png">
<img id="icon-justice" src="icon-justice.png">
<img id="icon-primal" src="icon-primal.png">
<img id="icon-shadow" src="icon-shadow.png">
</div>
<!-- A dialog displayed when the "About" button is clicked -->
<div id="about-modal" class="ui tiny modal">
<div class="header">About Shiftstoned Power Calculator</div>
<div id="about-text" class="modal-body">
<p>
You will gain a competitive edge in <b>Eternal</b> by maximizing the chances of playing your cards on curve.
<p>
Getting under the hood and optimizing your deck's power base is the best way to ensure that you can play the cards you want, when you want to play them.
<p>
The <b>Eternal Power Calculator</b> is a deck-building tool that visualizes your odds of drawing enough <b>Influence</b> and <b>Power</b> based specifically on the cards found in your deck.
<p>
Select the <b>Import</b> button and paste a deck from <b>Eternal</b> to get started. Or start from scratch by adding a card.
<p>
Want to learn more?
<ul>
<li><a href="guide/index.html" target="_blank">How it works</a>
<li><a href="guide/index.html#chart" target="_blank">Charting Influence</a>
<li><a href="guide/index.html#draws" target="_blank">Draws vs. Turns</a>
<li><a href="guide/index.html#table" target="_blank">Power Odds Table</a>
<li><a href="guide/index.html#not" target="_blank">What is NOT accounted for?</a>
<li><a href="guide/index.html#next" target="_blank">What's next?</a>
</ul>
<p>
For more on the math behind the <strong>Eternal Power Calculator</strong>, check out the <a href="guide/expanded.html" target="_blank">in-depth guide to calculations</a>.
<p>
The original source code for Eternal Power Calculator is
<a href="https://github.com/matt-kimball/epc" target="_blank">available
on GitHub</a>.
</div>
<div class="actions">
<button class="ui positive right button">
OK
</button>
</div>
</div>
<!-- Dialog for importing a deck list -->
<div id="import-modal" class="ui tiny modal">
<div class="header">
Paste a deck from Eternal
</div>
<div id="import-form" class="ui form modal-body">
<div class="field">
<label>Deck list</label>
<textarea id="import-modal-deck" rows="20"></textarea>
</div>
<!-- Syntax errors in the decklist are reported here -->
<div class="ui label" id="import-validation-result">
</div>
</div>
<div class="actions">
<button
id="import-modal-import-button"
class="ui positive right button">
IMPORT
</button>
</div>
</div>
<!-- Dialog for adding a new card -->
<div id="add-card-modal" class="ui mini modal">
<div class="header">
Select a card
</div>
<div id="card-select" class="modal-body">
<!-- All card names are added by gatherCards in epc-ui.js -->
<select
id="add-card-dropdown"
class="ui fluid search selection dropdown">
<option value="">Card</option>
</select>
</div>
<div class="actions">
<button
id="add-card-modal-add-button"
class="ui positive right button">
ADD
</button>
</div>
</div>
<!-- Dialog for adding a market card -->
<div id="add-market-card-modal" class="ui mini modal">
<div class="header">
Select a card
</div>
<div id="market-card-select" class="modal-body">
<!-- All card names are added by gatherCards in epc-ui.js -->
<select
id="add-market-card-dropdown"
class="ui fluid search selection dropdown">
<option value="">Card</option>
</select>
</div>
<div class="actions">
<button
id="add-market-card-modal-add-button"
class="ui positive right button">
ADD
</button>
</div>
</div>
<!-- A dialog used to report syntax errors in the card list -->
<div id="error-modal" class="ui small modal">
<div id="error-title" class="header">Error</div>
<div id="error-text" class="modal-body">
</div>
<div class="actions">
<button class="ui positive right button">
OK
</button>
</div>
</div>
<div id="calculator-content">
<img id="background" style="margin-top: 0px; margin-left: -80px;" src="EremotBG.jpeg">
<div id="shiftstoned-heading">
<div id="heading-top">
<a href="../">
<img id="shiftstoned-img" src="shiftstoned.png">
</a>
<a href="../epc/"><img id="power-calculator-img" src="power-calculator.png"></a>
<div id="about-heading">
ABOUT
</div>
<div id="navigation-separator">
</div>
<div id="navigation-menu" class="ui dropdown">
<img src="navigation-menu.png">
<div class="menu">
<div class="item">
<a href="../epc/">
POWER CALCULATOR
</a>
</div>
<div class="item">
<a href="../epc/guide/">
<div class="navigation-menu-indent">
•
</div>
Guide
</a>
</div>
<div class="item">
<a href="../calendar/">
COMMUNITY CALENDAR
</a>
</div>
<div class="item">
<a href="../articles/">
ARTICLES
</a>
</div>
<div class="item">
<a href="../contact">
CONTACT
</a>
</div>
<div class="item">
<a href="..">
HOME
</a>
</div>
</div>
</div>
</div>
<div id="heading-page-top"></div>
</div>
<!--
The main body of the app, with an editable deck and the
graph or table.
-->
<div id="calculator-body">
<div id="influence-panel">
<div id="card-count-panel">
<div id="card-count-number">
</div>
<div id="card-count-label">
CARDS
</div>
</div>
<div id="power-sources-panel">
<div id="power-sources-number">
</div>
<div id="power-sources-label">
POWER SOURCES
</div>
</div>
<div id="fire-sources-panel">
<img src="icon-fire.png">
<div id="fire-sources-number" class="influence-number">
</div>
</div>
<div id="time-sources-panel">
<img src="icon-time.png">
<div id="time-sources-number" class="influence-number">
</div>
</div>
<div id="justice-sources-panel">
<img src="icon-justice.png">
<div id="justice-sources-number" class="influence-number">
</div>
</div>
<div id="primal-sources-panel">
<img src="icon-primal.png">
<div id="primal-sources-number" class="influence-number">
</div>
</div>
<div id="shadow-sources-panel">
<img src="icon-shadow.png">
<div id="shadow-sources-number" class="influence-number">
</div>
</div>
</div>
<div id="deck-edit-panel">
<div id="deck-edit-header" class="deck-edit-header ui buttons actions">
<button
id="import-button" class="ui button">
IMPORT
</button>
<div
class="ui custom popup transition hidden">
<h1>Greetings Huckleberry!</h1>
Import or add a deck to get started
</div>
<button
id="export-button" class="ui button"
data-position="top center"
data-content="Deck copied to clipboard">
EXPORT
</button>
<button
id="link-button" class="ui button"
data-position="top center"
data-content="Link copied to clipboard">
<img src="link.svg">
</button>
<button
id="ewc-button" class="ui button"
data-position="top center"
data-content="Save this deck on Eternal Warcry">
<img src="ewc.png">
</button>
</div>
<div style="text-align: center">
<span class="help">
HELP <img src="menu-help-icon.png" height="12">
</span>
<div class="ui popup help">
IMPORT or EXPORT your deck here. Use <img src="link.svg" width="19" border="1"style="border-radius: 4px; background-color: #27252D; border: solid .75px #FFFFFF; padding: 4px;"> to SHARE your deck with a unique URL.
</div>
</div>
<div id="deck-edit" class="deck-edit">
<div id="deck-edit-power-title"
class="deck-edit-section">
POWER BASE
</div>
<div id="deck-edit-power-rows">
</div>
<div id="deck-edit-nonpower-title"
class="deck-edit-section">
MAIN DECK
<div class="deck-edit-section-description">
Additional power sources highlighted
</div>
</div>
<div id="deck-edit-nonpower-rows">
</div>
</div>
<div id="deck-edit-footer" class="deck-edit-footer">
<button id="add-card-button" class="ui button pad-right">
ADD CARD
</button>
<button id="clear-button" class="ui button"
data-position="top center"
data-content="Deck cleared">
CLEAR
</button>
</div>
<div id="market-edit" class="deck-edit">
<div id="deck-edit-market-title"
class="deck-edit-section">
MARKET
</div>
<div id="deck-edit-market-rows">
</div>
</div>
<div id="market-edit-footer" class="deck-edit-footer">
<button id="add-market-card-button" class="ui button pad-right">
ADD CARD
</button>
<button id="clear-market-button" class="ui button"
data-position="top center"
data-content="Market cleared">
CLEAR
</button>
</div>
</div>
<div id="charts-panel">
<!-- Buttons to switch between the table and the graph -->
<div id="charts-menu">
<div id="graph-menu-item" class="menu-item active">
<img id="influence-graph-menu-title"
class="menu-title"
src="influence-graph-menu.png">
<img class="output-tab-help-icon help-icon"
src="menu-help-icon.png">
<div class="ui popup menu-help">
Charts the odds (0-100%) of meeting
desired Influence costs based on number
of draws.
</div>
</div>
<div id="table-menu-item" class="menu-item">
<img id="power-odds-table-menu-title"
class="menu-title"
src="power-odds-table-menu.png">
<img class="output-tab-help-icon help-icon"
src="menu-help-icon.png">
<div class="ui popup menu-help">
Tabulates the odds (0-100%) of meeting
desired Influence <em>and</em>
Power costs based on number of draws (0-20).
</div>
</div>
</div>
<div id="charts-heading">
<h1 id="deck-title" contenteditable=true></h1>
</div>
<div id="power-table-container">
<div id="power-table-loader" class="ui loader">
</div>
<!--
The table of costs for the odds table
is generated here.
-->
<div id="power-table-cost-div">
</div>
<!-- The table of draw odds is generated here -->
<div id="power-table-odds-div">
</div>
</div>
<div id="power-graph-container">
<!-- The graph of power and influence is generated here -->
<div id="power-graph-div">
</div>
<div id="graph-y-label">
PROBABILITY
</div>
<div id="graph-x-label">
TURNS (<a href="guide/index.html#draws" target="_blank">ONE DRAW PER TURN*</a>)
</div>
<div id="power-type-panel">
<div class="power-type-item">
<img src="undepleted.svg">
<span class="power-type-label">
UNDEPLETED:
</span>
<span class="power-type-count" tag="undepleted">
</span>
</div>
<div class="power-type-item">
<img src="conditional.svg">
<span class="power-type-label">
CONDITIONAL:
</span>
<span class="power-type-count" tag="conditional">
</span>
</div>
<div class="power-type-item">
<img src="depleted.svg">
<span class="power-type-label">
DEPLETED:
</span>
<span class="power-type-count" tag="depleted">
</span>
</div>
<div class="power-type-item">
<img src="monument.svg">
<span class="power-type-label">
MONUMENTS:
</span>
<span class="power-type-count" tag="monument">
</span>
</div>
<div class="power-type-item">
<img src="crest.svg">
<span class="power-type-label">
CRESTS:
</span>
<span class="power-type-count" tag="crest">
</span>
</div>
<div class="power-type-item">
<img src="waystone.svg">
<span class="power-type-label">
WAYSTONES:
</span>
<span class="power-type-count" tag="waystone">
</span>
</div>
<div class="power-type-item">
</div>
<div class="power-type-item">
<img src="standard.svg">
<span class="power-type-label">
STANDARDS:
</span>
<span class="power-type-count" tag="standard">
</span>
</div>
<div id="power-type-panel-footer">
</div>
</div>
</div>
</div>
<div id="calculator-body-footer">
</div>
</div>
</div>
<!--
A list of all possible Eternal cards
See epc-deck.js for a description of the card list format.
-->
<script id="card-list" type="text/plain">
Set0 #3; 1F; 2F; Kaleb's Favor;
Set0 #4;; 2F; Blazing Renegade;
Set0 #6;; 5F; Flash Fire;
Set0 #9;; 1T; Silence;
Set0 #11; 1T; 2T; Talir's Favored;
Set0 #14;; 4T; Timekeeper;
Set0 #15;; 3T; Oasis Sanctuary;
Set0 #18; 1J; 2J; Rolant's Favor;
Set0 #21;; 4J; Mantle of Justice;
Set0 #24; 1P; 2P; Eilyn's Favor;
Set0 #27;; 3P; Thunderbird;
Set0 #30;; 5P; Primal Incarnation;
Set0 #33;; 2S; Vampire Bat;
Set0 #35; 1S; 2S; Vara's Favor;
Set0 #36;; 3S; Devouring Shadow;
Set0 #51; 1JP;; Seat of Order; power, conditional
Set0 #53; 1FP;; Seat of Fury; power, conditional
Set0 #54; 1FT;; Seat of Impulse; power, conditional
Set0 #55; 1JS;; Seat of Vengeance; power, conditional
Set0 #56; 1FJ;; Seat of Glory; power, conditional
Set0 #58; 1TJ;; Seat of Progress; power, conditional
Set0 #60; 1FS;; Seat of Chaos; power, conditional
Set0 #61; 1TS;; Seat of Mystery; power, conditional
Set0 #62; 1PS;; Seat of Cunning; power, conditional
Set0 #63; 1TP;; Seat of Wisdom; power, conditional
Set1 #1; 1F;; Fire Sigil; power, undepleted
Set1 #2;; 1FFF; Flame Blast;
Set1 #3;; 1FF; Charchain Flail;
Set1 #4;; 1F; Heavy Axe;
Set1 #5;; 1F; Grenadin Drone;
Set1 #6;; 1F; Light the Fuse;
Set1 #8;; 1F; Torch;
Set1 #9;; 2F; Frontier Jito;
Set1 #10;; 1F; Temper;
Set1 #11;; 1F; Ruthless Stranger;
Set1 #12;; 1F; Ticking Grenadin;
Set1 #13;; 1F; Oni Ronin;
Set1 #14;; 1F; Warhelm;
Set1 #15;; 1F; Ruin;
Set1 #16;; 1F; Pyroknight;
Set1 #17;; 2F; Rampage;
Set1 #18;; 2F; Song of War;
Set1 #19;; 2F; Brazen Daredevil;
Set1 #20;; 2F; Rakano Outlaw;
Set1 #21;; 2F; Pyre Adept;
Set1 #22;; 2F; Bladekin Apprentice;
Set1 #23;; 2F; Ornate Katana;
Set1 #25;; 2F; Piercing Shot;
Set1 #26;; 3FF; Shogun's Scepter;
Set1 #27;; 3F; Rakano Flagbearer;
Set1 #28;; 4F; Burn Out;
Set1 #29;; 3F; Assembly Line;
Set1 #30;; 3F; Rebel Sharpshooter;
Set1 #31;; 3F; Granite Acolyte;
Set1 #32;; 3F; Oni Quartermaster;
Set1 #33;; 3F; Rally;
Set1 #34;; 3FF; Censari Brigand;
Set1 #35;; 4F; Centaur Outrider;
Set1 #36;; 4F; Guerrilla Fighter;
Set1 #37;; 4F; Recogulator;
Set1 #38;; 4F; Steelfang Chakram;
Set1 #39;; 4F; Cloud of Ash;
Set1 #40;; 4FF; Furnace Mage;
Set1 #41;; 4F; Magma Javelin;
Set1 #42;; 4FF; Outlands Sniper;
Set1 #43;; 4F; Rebel Illuminator;
Set1 #44;; 5F; Oni Striker;
Set1 #45;; 5F; Infernus;
Set1 #46;; 5F; Calderan Gunsmith;
Set1 #47;; 6FFF; Soulfire Drake;
Set1 #48;; 5FF; Obliterate;
Set1 #49;; 5F; Dusthoof Brawler;
Set1 #50;; 5FF; Centaur Raidleader;
Set1 #51;; 5FF; Shogun of the Wastes;
Set1 #52;; 6FF; Stonescar Maul;
Set1 #53;; 6F; Frontline Cyclops;
Set1 #54;; 6FF; Worldpyre Phoenix;
Set1 #55;; 6FF; Hellfire Rifle;
Set1 #56;; 6FF; General Izalio;
Set1 #58;; 6F; Crowd Favorite;
Set1 #59;; 7FF; Claw of the First Dragon;
Set1 #60;; 7FF; Steelbound Dragon;
Set1 #61;; 8FFF; Kaleb, Uncrowned Prince;
Set1 #62;; 9FF; Lavablood Goliath;
Set1 #63; 1T;; Time Sigil; power, undepleted
Set1 #64;; TTT; Sand Warrior;
Set1 #66;; 2T; Copper Conduit;
Set1 #67;; 1T; Infinite Hourglass;
Set1 #68;; 1T; Water of Life;
Set1 #69;; 1T; Ornamental Daggers;
Set1 #70;; 1T; Slow;
Set1 #71;; 1T; Excavate;
Set1 #72;; 1T; Humbug;
Set1 #73;; 1T; Sanctuary Priest;
Set1 #74; 1; 1T; Initiate of the Sands;
Set1 #75;; 1T; Predator's Instinct;
Set1 #76;; 3T; Unlock Potential;
Set1 #77;; 2T; Bold Adventurer;
Set1 #78;; 2T; Voice of the Speaker;
Set1 #79;; 2TP; Twinning Ritual;
Set1 #80;; 2T; Teleport;
Set1 #81; 1X; 3T; Secret Pages;
Set1 #82;; 2T; Friendly Wisp;
Set1 #83;; 2T; Sauropod Wrangler;
Set1 #84;; 2T; Ephemeral Wisp;
Set1 #85;; 2T; Accelerate;
Set1 #86;; 3TT,TTTT; Dawnwalker;
Set1 #88;; 2T; Synchronized Strike;
Set1 #89;; 3T; Dune Phantom;
Set1 #90;; 3T; Ageless Mentor;
Set1 #91;; 3T; Dispel;
Set1 #92;; 3T; Determined Stranger;
Set1 #93; 1X; 3T; Amber Acolyte;
Set1 #94;; 3TT; Clockroach;
Set1 #95;; 3T; Decay;
Set1 #96;; 3T; Scorpion Wasp;
Set1 #97;; 4T; Steward of Prophecy;
Set1 #98;; 4T; Healer's Cloak;
Set1 #99;; 4TT; Sandstorm Titan;
Set1 #100;; 5TT; Praxis Displacer;
Set1 #101;; 4T; Towertop Patrol;
Set1 #102;; 4T; Xenan Guardian;
Set1 #103;; 4T; Xenan Obelisk;
Set1 #104;; 4T; Marisen's Disciple;
Set1 #105;; 4TT; Ancient Lore;
Set1 #107;; 5TT; Idol of Destran;
Set1 #108;; 7TTT; Elysian Pathfinder;
Set1 #109;; 6T; Divining Rod;
Set1 #110;; 3TT; Reliquary Raider;
Set1 #111;; 5S; Merciless Stranger;
Set1 #112;; 5TT; Striking Snake Formation;
Set1 #113;; 5TT; Twinbrood Sauropod;
Set1 #114;; 5TT; Towering Terrazon;
Set1 #115;; 5T; Lumen Defender;
Set1 #116;; 6T; Mystic Ascendant;
Set1 #117;; 6T; Lumen Shepherd;
Set1 #118;; 6TTT; Predatory Carnosaur;
Set1 #119;; 7TTT; Ancient Terrazon;
Set1 #120;; 7TT; Dormant Sentinel;
Set1 #121;; 7TT; Hall of Lost Kings;
Set1 #122;; 7TTT; Pillar of Amar;
Set1 #123;; 8TT; Marisen, the Eldest;
Set1 #124;; 8TTT; Talir, Who Sees Beyond;
Set1 #125;; 3JJ; Gilded Glaive;
Set1 #126; 1J;; Justice Sigil; power, undepleted
Set1 #127;; 1J; Valkyrie Aspirant;
Set1 #128;; 1J; Elder's Feather;
Set1 #129;; 2J; Inspire;
Set1 #130;; 1J; Finest Hour;
Set1 #131;; 1J; Tinker Apprentice;
Set1 #132;; 2J; Protect;
Set1 #133;; 1J; Detain;
Set1 #134;; 1J; District Infantry;
Set1 #135;; 2J; Argenport Soldier;
Set1 #136;; 2J; Reinforce;
Set1 #137;; 2J; Minotaur Grunt;
Set1 #138;; 2J; Tinker Overseer;
Set1 #139;; 2J; Crownwatch Paladin;
Set1 #140;; 2J; Paladin Oathbook;
Set1 #141;; 2J; Rebuke;
Set1 #142;; 2J; Crownwatch Longsword;
Set1 #143;; 3J; Vanquish;
Set1 #144;; 2J; Eager Owlet;
Set1 #145;; 3J; Valorous Stranger;
Set1 #146;; 3J; Auric Sentry;
Set1 #147;; 3J; Brightmace Paladin;
Set1 #148;; 4J; Bronze Cuirass;
Set1 #149;; 3J; Order of the Spire;
Set1 #150;; 3J; Loyal Watchwing;
Set1 #151;; 3JJ; Valkyrie Enforcer;
Set1 #152;; 3J; Silverwing Familiar;
Set1 #153;; 3J; Emerald Acolyte;
Set1 #154;; 3J; Spire Chaplain;
Set1 #155;; 3JJ; Hooru Envoy;
Set1 #156;; 3J; Hero of the People;
Set1 #157; J; 2J; Privilege of Rank;
Set1 #158;; 4J; Copperhall Recruit;
Set1 #159;; 5J; Hooru Fledgling;
Set1 #160;; 5J; Combrei Magister;
Set1 #162;; 4J; Stalwart Shield;
Set1 #163;; 4J; Armorsmith;
Set1 #164;; 3J; Treasury Gate;
Set1 #165;; 3J; Mark of Shame;
Set1 #166;; 4JJ; Auric Runehammer;
Set1 #167;; 4JJ; Silverwing Avenger;
Set1 #168;; 4J; Copperhall Blessing;
Set1 #169;; 4J; Crownwatch Cavalry;
Set1 #170;; 4J; Hammer of Might;
Set1 #171;; 5JJ; Mithril Mace;
Set1 #172;; 5JJ; Harsh Rule;
Set1 #174;; 5JJ; Marshal Ironthorn;
Set1 #175;; 5JJ; Silverwing Commander;
Set1 #176;; 6JJ; Fourth-Tree Elder;
Set1 #177;; 6JJ; Plated Demolisher;
Set1 #178;; 6JJ; Ceremonial Mask;
Set1 #180;; 6J; Civic Peacekeeper;
Set1 #181;; 6JJ; Valkyrie Wings;
Set1 #182;; 6JJJ; Augmented Form;
Set1 #183;; 7JJ; Rolant's Honor Guard;
Set1 #184;; 7J; Flight Lieutenant;
Set1 #185;; 8JJJ; Rolant, the Iron Fist;
Set1 #186;; 8JJ; Sword of the Sky King;
Set1 #187; 1P;; Primal Sigil; power, undepleted
Set1 #188;; F; Trail Stories;
Set1 #189;; 1P; Unstable Form;
Set1 #190;; 1P; Levitate;
Set1 #191;; 1P; Yeti Spy;
Set1 #192;; 1P; Blind Storyteller;
Set1 #193;; 1P; Permafrost;
Set1 #194;; 2P; Static Bolt;
Set1 #195;; 2P; Wild Cloudsnake;
Set1 #196;; 2P; Herald's Song;
Set1 #197;; 2P; Lightning Strike;
Set1 #199;; 2P; Cloudsnake Saddle;
Set1 #200;; 2P; Backlash;
Set1 #201;; 2P; East-Wind Herald;
Set1 #202;; 2P; Whispering Wind;
Set1 #203;; 2P; Yeti Snowslinger;
Set1 #204;; 3P; Tundra Explorer;
Set1 #205;; 2P; Violent Gust;
Set1 #206;; 2P; Lightning Storm;
Set1 #207;; 2P; Second Sight;
Set1 #208;; 3P; Skysnapper;
Set1 #209;; 3P; Flash Freeze;
Set1 #210;; 2P; Eye of Winter;
Set1 #211;; 3P; Polymorph;
Set1 #212;; 3P; Cobalt Acolyte;
Set1 #213;; 3S; Scheme;
Set1 #214;; 3P; Ice Sprite;
Set1 #215;; 2P; Scaly Gruan;
Set1 #216;; 3P; Icebreaker;
Set1 #217;; 3P; Mirror Image;
Set1 #218;; 3PP; Wisdom of the Elders;
Set1 #219;; 4P; Serpent Trainer;
Set1 #220;; 4P; Jarrall's Frostkin;
Set1 #221;; 4P; Rain of Frogs;
Set1 #222;; 4P; Yeti Troublemaker;
Set1 #223;; 4PP; Deranged Dinomancer;
Set1 #224;; 4PP; Stormcaller;
Set1 #225;; 4TP; Nesting Avisaur;
Set1 #226;; 5P; Jotun Warrior;
Set1 #227;; 5P; Jotun Hurler;
Set1 #228;; 7PPP; Elysian Trailblazer;
Set1 #229;; 4P; Soaring Stranger;
Set1 #230;; 4P; Windshaper;
Set1 #231;; 5PP; West-Wind Herald;
Set1 #232;; 5PP; Crystallize;
Set1 #233;; 5PPP; Magus of the Mist;
Set1 #234;; 5PP; Staff of Stories;
Set1 #235;; 5P; Aerial Ace;
Set1 #236;; 6PP; Sapphire Dragon;
Set1 #237;; 6PPP; Hatchery Hunter;
Set1 #238;; 7P; Araktodon;
Set1 #239;; 6PPP; Jarrall Iceheart;
Set1 #240;; 6PP; North-Wind Herald;
Set1 #241;; 6PP; Celestial Omen;
Set1 #242;; 7P; Mistveil Drake;
Set1 #243;; 6PPP; Thunderstrike Dragon;
Set1 #244;; 9PPPP; Channel the Tempest;
Set1 #245;; 8PPP; Eilyn, Queen of the Wilds;
Set1 #246;; 7PP; Rimescale Draconus;
Set1 #247;; 5PP; Skycrag Wyvarch;
Set1 #248;; 10PPP; Scourge of Frosthome;
Set1 #249; 1S;; Shadow Sigil; power, undepleted
Set1 #250;; 1S; Dark Return;
Set1 #251;; 1S; Suffocate;
Set1 #252;; 1S; Sabotage;
Set1 #253;; 2FS; Hair-Trigger Stranger;
Set1 #254;; 1S; Pilfer;
Set1 #255;; 1S; Slumbering Stone;
Set1 #256;; 1S; Direfang Spider;
Set1 #257;; 1S; Knifejack;
Set1 #258;; 1S; Ghostform;
Set1 #259;; 2S; Rapid Shot;
Set1 #260;; 1S; Blood Beetle;
Set1 #261;; 2S; Devour;
Set1 #262;; 2S; Sporefolk;
Set1 #263;; 2S; Venomfang Dagger;
Set1 #264;; 2S; Dark Wisp;
Set1 #265;; 2S; Scavenging Vulture;
Set1 #266;; 3S; Blackguard Sidearm;
Set1 #267;; 3S; Madness;
Set1 #268;; 2S; Argenport Instigator;
Set1 #269;; 2S; Annihilate;
Set1 #270;; 2S; Lethrai Ranger;
Set1 #271;; 3S; Direwood Beastcaller;
Set1 #272;; 3S; Torrent of Spiders;
Set1 #273;; 3SS; Desperado;
Set1 #274;; 3S; Plague;
Set1 #275;; 3S; Lifedrinker;
Set1 #276;; 3S; Amethyst Acolyte;
Set1 #277;; 3S; Execute;
Set1 #278;; 3S; Ravenous Thornbeast;
Set1 #279;; 3S; Lethrai Nightblade;
Set1 #280;; 3S; Shadowlands Guide;
Set1 #281;; 3S; Xenan Destroyer;
Set1 #282;; 3S; Beastcaller's Amulet;
Set1 #283;; 4S; Cabal Recruiter;
Set1 #284;; 4S; Back-Alley Bouncer;
Set1 #285;; 4SS; Lethrai Falchion;
Set1 #286;; 4SS; Impending Doom;
Set1 #287;; 4SS; Steward of the Past;
Set1 #288;; 4S; Stonescar Magus;
Set1 #289;; 4SS; Subvert;
Set1 #290;; 4SS; Deathstrike;
Set1 #291;; 4SS; Soul Collector;
Set1 #292;; 5SS; Grasping at Shadows;
Set1 #293;; 5S; Lurking Sanguar;
Set1 #294;; 5SS; Oblivion Spike;
Set1 #295;; 5SS; Ashara, the Deadshot;
Set1 #297;; 2S; Cabal Cutthroat;
Set1 #299;; 5SSS; Umbren Reaper;
Set1 #300;; 6SS; Argenport Ringmaster;
Set1 #301;; 6S; Direwood Rampager;
Set1 #302;; 6SS; Spirit Drain;
Set1 #303;; 6SSSS; Whispers in the Void;
Set1 #304;; 6SS; Horsesnatcher Bat;
Set1 #305;; 7SS; Venomspine Hydra;
Set1 #306;; 7SSS; Azindel's Gift;
Set1 #307;; 8SSS; Vara, Fate-Touched;
Set1 #308;; 8SS; Touch of the Umbren;
Set1 #309;; 9SSS; The Last Word;
Set1 #310;; 24SSSSSS; The Witching Hour;
Set1 #311;; 1FJ; Fearless Nomad;
Set1 #312;; 2FJ; Rakano Artisan;
Set1 #314;; 2FJ,FF,JJ; Champion of Glory;
Set1 #315;; 3FJ; Sword of Icaria;
Set1 #316;; 3FJ; Crownwatch Deserter;
Set1 #317;; 5FFJJ; Deepforged Plate;
Set1 #318;; 4FJ; Longhorn Sergeant;
Set1 #319;; 4FJ; Battleblur Centaur;
Set1 #320;; 4FJ; Rise to the Challenge;
Set1 #321;; 4FJ; Renegade Valkyrie;
Set1 #322;; 4FJ; Righteous Fury;
Set1 #323;; 4FJ; Navani, Warsinger;
Set1 #324;; 5FJ; Field Captain;
Set1 #326;; 3FFJ; Ijin, Imperial Armorer;
Set1 #327;; 6FJ; Ferocious Stranger;
Set1 #328;; 6FFJJ; Starsteel Daisho;
Set1 #329;; 7FFFJJJ; Icaria, the Liberator;
Set1 #330;; 2TJ; Safe Return;
Set1 #331;; 2TJ; Awakened Student;
Set1 #332;; 2TJ; Desert Marshal;
Set1 #333;; 3TJ; Combrei Healer;
Set1 #334;; 3TJ; Stand Together;
Set1 #335;; 3TJ,7; Knight-Chancellor Siraf;
Set1 #336;; 3TJ; Vodakhan's Staff;
Set1 #337;; 4TJ; Enlightened Stranger;
Set1 #338;; 4TJ; The Great Parliament;
Set1 #339;; 5TJ; Stronghold's Visage;
Set1 #340;; 4TJ; Copperhall Elite;
Set1 #341;; 4TTJ; Karmic Guardian;
Set1 #343;; 5TTJJ; Reality Warden;
Set1 #345;; 6TJ,TTTTTT,JJJJJJ; Champion of Progress;
Set1 #346;; 6TJ; Minotaur Ambassador;
Set1 #347;; 7TTTJJJ; Vodakhan, Temple Speaker;
Set1 #348;; 10TJ; A New Tomorrow;
Set1 #350;; 1TP; Call the Ancients;
Set1 #351;; 3TP; Accelerated Evolution;
Set1 #353;; 2TP; Storm Lynx;
Set1 #354;; 3TP; Pteriax Hatchling;
Set1 #355;; 3TP; Crown of Possibilities;
Set1 #356;; 3TTP; False Prince;
Set1 #357;; 3TP; Amaran Camel;
Set1 #358;; 4TP,TTTT,PPPP; Champion of Wisdom;
Set1 #359;; 4TPP; Crystalline Chalice;
Set1 #360;; 5P; Psionic Savant;
Set1 #361;; 5TTPP; Explorer Emeritus;
Set1 #362;; 5TTPP; Cirso, the Great Glutton;
Set1 #363;; 5TP; Hunting Pteriax;
Set1 #364;; 6TP; Fortunate Stranger;
Set1 #365;; 8TTPP; Shimmerpack;
Set1 #366;; 7TTTPPP; Curiox, the Collector;
Set1 #367;; 7PPP; Strength of the Pack;
Set1 #368;; 5PS; Withering Witch;
Set1 #369;; 3PS; Trickster's Cloak;
Set1 #371;; 5PS,PPPPP,SSSSS; Champion of Cunning;
Set1 #372;; 2PS; Grim Stranger;
Set1 #373;; 5PS; Spell Swipe;
Set1 #374;; 3PS; Haunting Scream;
Set1 #375;; 3PS; Gorgon Fanatic;
Set1 #377;; 2PS; Gorgon Swiftblade;
Set1 #378;; 3PPSS; Midnight Gale;
Set1 #379;; 1PS; Twilight Raptor;
Set1 #380;; 3PS; Feln Cauldron;
Set1 #381;; 4PS; Feeding Time;
Set1 #382;; 3PS; Recurring Nightmare;
Set1 #383;; 7PPPSSS; Nightmaw, Sight Unseen;
Set1 #384;; 8PPSS; Snowcrush Animist;
Set1 #385;; 6PS; Black-Sky Harbinger;
Set1 #386;; 3PSS; Feln Bloodcaster;
Set1 #387;; 4FS; Statuary Maiden;
Set1 #388;; 4FS; Black Iron Manacles;
Set1 #389;; 4FFS; Bandit Queen;
Set1 #390;; 6FFSS; Infernal Tyrant;
Set1 #391;; 5FS; Scraptank;
Set1 #392;; 1FS; Combust;
Set1 #394;; 2FS; Treachery;
Set1 #395;; 5FS; Warband Chieftain;
Set1 #396;; 6FS; Smuggler's Stash;
Set1 #397;; 3FS; Bloodrite Kalis;
Set1 #398;; 2FS; Obsidian Golem;
Set1 #399;; 3FS; Brimstone Altar;
Set1 #400;; 7FFFSSS; Voprex, the Great Ruin;
Set1 #402;; 3FS,FFF,SSS; Champion of Chaos;
Set1 #403;; 7FFSS; Stonescar Leviathan;
Set1 #404;; 5FS; Runic Revolver;
Set1 #406;;; Spiked Helm;
Set1 #407;; 1; Worn Shield;
Set1 #408; 1X; 1; Seek Power;
Set1 #409; PS; 2; Feln Stranger;
Set1 #410; TJ; 2; Combrei Stranger;
Set1 #411; FJ; 2; Rakano Stranger;
Set1 #412; TP; 2; Elysian Stranger;
Set1 #413; FS; 2; Stonescar Stranger;
Set1 #414;; 2; Daze;
Set1 #415;; 2; Alchemical Blast;
Set1 #416;; 3; Forsworn Stranger;
Set1 #417; 1PS;; Feln Banner; power, conditional
Set1 #418; 1P;; Cobalt Monument; power, depleted, monument
Set1 #419; 1FS;; Stonescar Banner; power, conditional
Set1 #420; 1T;; Amber Monument; power, depleted, monument
Set1 #421; 1TP;; Elysian Banner; power, conditional
Set1 #422; 1J;; Emerald Monument; power, depleted, monument
Set1 #423; 1F;; Granite Monument; power, depleted, monument
Set1 #424; 1TJ;; Combrei Banner; power, conditional
Set1 #425; 1X;; Diplomatic Seal; power, undepleted
Set1 #426; 1S;; Amethyst Monument; power, depleted, monument
Set1 #427; 1FJ;; Rakano Banner; power, conditional
Set1 #480;; 4TT; Vault of the Praxis;
Set1 #488;; 6P; Scouting Party;
Set1 #501;; 2T; Refresh;
Set1 #502;; 2TT; Temple Scribe;