forked from IvarK/IvarK.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2044 lines (1965 loc) · 134 KB
/
index.html
File metadata and controls
2044 lines (1965 loc) · 134 KB
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>
<html>
<head>
<title>Antimatter Dimensions</title>
<link rel="icon" type="image/png" href="icon.png">
<meta name="Antimatter Dimensions" content="A game about huge numbers and watching them go up." />
<h1 id="hiddenheader" style="display: none">Antimatter Dimensions</h1>
<script type="text/javascript" src='https://cdn1.kongregate.com/javascripts/kongregate_api.js'></script>
<script type="text/javascript" src="javascripts/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="javascripts/notify.js"></script>
<link rel="stylesheet" type="text/css" href="stylesheets/styles.css?2">
<script>
(function(i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function() {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-77268961-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<img id="loading" src="images/Loading.png">
<div id="snow" style="display: none; "></div>
<body id="body" style="height: 95vh; ">
<div id="container" class="container" style="color:#4F5957; font-family: Typewriter; text-align:center; font-size: 11px; display:none">
<div id='game'>
<div id='news'>.</div>
</div>
<div id="matter"></div>
<div style="position: relative"><div class="IP" id="infinityPoints2"></div></div>
<div style="position: relative"><div class="EP" id="eternityPoints2"></div></div>
<div>
<p>You have <span id="coinAmount" style="font-size:25px; color: black">0</span> antimatter.</p>
</div>
<div style="position: relative">
<button id="postInfinityButton" class="postinfcrunch">Big Crunch for x Infinity Points</button>
<button id="newDimensionButton" class="newdim" onclick="newDimension()">Get x antimatter to unlock a new Dimension.</button>
<button id="eternitybtn" class="eternitybtn" onclick="eternity()">Other times await.. I need to become Eternal</button>
</div>
<div id="coinsPerSec">You are getting 0 antimatter per second.</div>
<tr id="tickSpeedRow" style="visibility: hidden">
<div id="tickLabel" style="visibility: hidden">Make the game 10% faster.</div>
<button id="tickSpeed" style="color:black; visibility: hidden; height: 25px;width: 170px; font-size: 12px" class="storebtn">Cost: 1000</button>
<button id="tickSpeedMax" onclick="buyMaxTickSpeed()" style="color:black; visibility: hidden; height: 25px; font-size: 12px" class="storebtn">Buy Max</button>
<div id="tickSpeedAmount" style="visibility: hidden">Tickspeed: 1000</div>
</tr>
<p></p>
<div style="position:absolute; left: 0; right: 0; margin-left: auto; margin-right: auto; width: 360px; top: 95px">
<button id="bigcrunch" style="font-family: Typewriter; font-size: 50px; width: 360px; height: 100px;" class="tabbtn">Big Crunch</button>
</div>
<div>
<button id="dimensionsbtn" style="font-family: Typewriter; font-size: 20px" class="tabbtn">Dimensions</button>
<button id="optionsbtn" style="font-family: Typewriter; font-size: 20px" class="tabbtn">Options</button>
<button id="statisticsbtn" style="font-family: Typewriter; font-size: 20px" class="tabbtn">Statistics</button>
<button id="achievementsbtn" style="font-family: Typewriter; font-size: 20px" class="tabbtn">Achievements</button>
<button id="challengesbtn" style="font-family: Typewriter; font-size: 20px" class="tabbtn">Challenges</button>
<button id="infinitybtn" style="font-family: Typewriter; font-size: 20px; display: none" class="infinitybtn">Infinity</button>
<button id="eternitystorebtn" style="font-family: Typewriter; font-size: 20px; display: none" class="eternitytabbtn">Eternity</button>
<button id="shopbtn" style="font-family: Typewriter; font-size: 20px" class="tabbtn">Shop</button>
</div>
<div id="emptiness" class="tab" style="font-size: 150%">
<br> The world has collapsed on itself due to excess of antimatter.
<br>
<br>
</div>
<div id="shop" class="tab" style="font-size: 15px" >
<div align="center">
<br>
<span id="kongip"> Double your IP gain from all sources. Forever. </span><br>
<button class="greedbtn" onclick="purchaseIP()">50 Kreds</button>
<br><br><br>
<span id="kongdim"> Double all your dimension multipliers (dimensions 1-8). Forever. </span><br>
<button class="greedbtn" onclick="purchaseDimMult()">30 Kreds</button>
<br><br><br>
<span>Get 6 hours worth of offline production. (Doesn't work for autobuyers)</span><br>
<button class="greedbtn" onclick="purchaseTimeSkip()">10 Kreds</button>
<br><br><br>
<span style="font-size: 12px"><b>Disclaimer: These are not required to progress in the game, they are just to help and support the developer.</b></span>
</div>
</div>
<div id="eternitystore" class="tab" style="font-size: 15px; width: 60%; margin: 0 auto; display: none" align="center">
<table class="table" align="center" style="margin: auto">
<tr>
<td><button class="secondarytabbtn" onclick="showEternityTab('timestudies')">Time studies</button><td>
<td><button class="secondarytabbtn" onclick="showEternityTab('eternityupgrades')">Eternity upgrades</button><td>
<td><button class="secondarytabbtn" onclick="showEternityTab('milestones')">Eternity milestones</button><td>
</tr>
</table>
<div class="eternitytab" id="timestudies" style="font-size: 15px">
<canvas id="studyTreeCanvas"></canvas>
<div><button class="storebtn" onclick="respecToggle()" id="respec" style="width:150px; height: 40px; font-size: 10px; margin: auto">Respec time studies on next Eternity</button></div>
<button class="timetheorembtn" onclick="buyWithAntimatter()" id="theoremam">Buy Time Theorems <br>Cost: 1e20000 antimatter</button>
<button class="timetheorembtn" onclick="buyWithIP()" id="theoremip">Buy Time Theorems <br>Cost: 1 IP</button>
<button class="timetheorembtnlocked" onclick="buyWithEP()" id="theoremep">Buy Time Theorems <br>Cost: 1 EP</button>
<p id="timetheorems">You have 0 Time Theorems.</p>
<table class="table" id="studytable">
<tr style="width: 100%; text-align: center">
<td style="margin: auto;"><button class="timestudylocked" id="11" onclick="buyTimeStudy(11, 1)">Tickspeed affects First Time Dimension (With reduced effect)<span>Cost: 1 Time Theorem</button></td>
</tr>
</table>
<br>
<table class="table" id="studytable">
<tr>
<td style="margin: auto; width: 50%;"><button class="timestudy" id="21" onclick="buyTimeStudy(21, 3)">Replicanti multiplier formula is better (log2(x)^2 -> x^0.032)<span>Cost: 3 Time Theorems</button></td>
<td style="margin: auto; width: 50%;"><button class="timestudy" id="22" onclick="buyTimeStudy(22, 2)">Replicanti interval limit 50ms -> 1ms<span>Cost: 2 Time Theorems</button></td>
</tr>
<tr>
<td style="margin: auto; width: 50%;"><button class="timestudy" id="31" onclick="buyTimeStudy(31, 3)">Powers up existing upgrades based on infinitied stat (to the power of 4)<span>Cost: 3 Time Theorems</button></td>
<td style="margin: auto; width: 50%;"><button class="timestudy" id="32" onclick="buyTimeStudy(32, 2)">You gain x1 more infinitied stat (based on soft resets)<span>Cost: 2 Time Theorems</button></td>
</tr>
<tr>
<td style="margin: auto;"><button class="timestudy" id="41" onclick="buyTimeStudy(41, 4)">Each galaxy gives a 1.2x multiplier on IP gained. <span>Cost: 4 Time Theorems</button></td>
<td style="margin: auto;"><button class="timestudy" id="42" onclick="buyTimeStudy(42, 6)">Galaxy requirement goes up 52 8ths instead of 60.<span>Cost: 6 Time Theorems</button></td>
</tr>
</table>
<br>
<table class="table" id="studytable">
<tr>
<td style="margin: auto; width: 100%;text-align:center;"><button class="timestudy" id="51" onclick="buyTimeStudy(51, 3)">You gain 1e15 times more IP<span>Cost: 3 Time Theorems</button></td>
</tr>
<tr>
<td style="margin: auto; width: 100%;text-align:center;"><button class="timestudy" id="61" onclick="buyTimeStudy(61, 3)">You gain 10x more EP<span>Cost: 3 Time Theorems</button></td>
</tr>
</table>
<br>
<table class="table" id="studytable">
<tr>
<td style="margin: auto; width: 33%;"><button class="timestudy normaldimstudy" id="71" onclick="buyTimeStudy(71, 4)">Sacrifice affects all normal dimensions<span>Cost: 4 Time Theorems</button></td>
<td style="margin: auto; width: 33%;"><button class="timestudy infdimstudy" id="72" onclick="buyTimeStudy(72, 6)">Sacrifice affects 4th and 8th Infinity Dimension <span>Cost: 6 Time Theorems</button></td>
<td style="margin: auto; width: 33%;"><button class="timestudy timedimstudy" id="73" onclick="buyTimeStudy(73, 5)">Sacrifice affects 3rd Time Dimension<span>Cost: 5 Time Theorems</button></td>
</tr>
<tr>
<td style="margin: auto; width: 33%;"><button class="timestudy normaldimstudy" id="81" onclick="buyTimeStudy(81, 4)">Dimensional boost power becomes 10x <span>Cost: 4 Time Theorems</button></td>
<td style="margin: auto; width: 33%;"><button class="timestudy infdimstudy" id="82" onclick="buyTimeStudy(82, 6)">Dimensional boosts affect Infinity Dimensions 1.0000109^(dimboosts^2)<span>Cost: 6 Time Theorems</button></td>
<td style="margin: auto; width: 33%;"><button class="timestudy timedimstudy" id="83" onclick="buyTimeStudy(83, 5)">Dimensional boosts are 0.01% more effective for each tick upgrade gained from Time Dimensions<span>Cost: 5 Time Theorems</button></td>
</tr>
<tr>
<td style="margin: auto; width: 33%;"><button class="timestudy normaldimstudy" id="91" onclick="buyTimeStudy(91, 4)">Normal dimensions gain a multiplier based on time spent this eternity<span>Currently: x<span>Cost: 4 Time Theorems</button></td>
<td style="margin: auto; width: 33%;"><button class="timestudy infdimstudy" id="92" onclick="buyTimeStudy(92, 5)">Infinity dimensions gain a multiplier based on fastest eternity time<span>Currently: x<span>Cost: 5 Time Theorems</button></td>
<td style="margin: auto; width: 33%;"><button class="timestudy timedimstudy" id="93" onclick="buyTimeStudy(93, 7)">Time dimensions gain a multiplier based on tick upgrades gained from them<span>Currently: x<span>Cost: 7 Time Theorems</button></td>
</tr>
<tr>
<td style="margin: auto; width: 33%;"><button class="timestudy normaldimstudy" id="101" onclick="buyTimeStudy(101, 4)">Replicantis give multiplier to normal dims equal to their amount.<span>Cost: 4 Time Theorems</button></td>
<td style="margin: auto; width: 33%;"><button class="timestudy infdimstudy" id="102" onclick="buyTimeStudy(102, 6)">Replicanti galaxies power replicanti multiplier<span>Cost: 6 Time Theorems</button></td>
<td style="margin: auto; width: 33%;"><button class="timestudy timedimstudy" id="103" onclick="buyTimeStudy(103, 6)">Time dimensions gain a multiplier equal to replicanti galaxy amount<span>Cost: 6 Time Theorems</p></button></td>
</tr>
</table>
<br>
<table class="table" id="studytable">
<tr>
<td style="margin: auto; width: 100%;text-align:center;"><button class="timestudy" id="111" onclick="buyTimeStudy(111, 12)">Make the IP formula better<span>Cost: 12 Time Theorems</button></td>
</tr>
</table>
<br>
<table class="table" id="studytable">
<tr>
<td style="margin: auto; width: 33%"><button class="timestudy activestudy" id="121" onclick="buyTimeStudy(121, 9)">The worse your average EP/min is on last ten eternities, the more EP you get.<span>Currently: Xx more EP<span>Cost: 9 Time Theorems</button></td>
<td style="margin: auto; width: 33%;"><button class="timestudy passivestudy" id="122" onclick="buyTimeStudy(122, 9)">You gain 35x more EP.<span>Cost: 9 Time Theorems</button></td>
<td style="margin: auto; width: 33%;"><button class="timestudy idlestudy" id="123" onclick="buyTimeStudy(123, 9)">You gain more EP based on time spent this eternity.<span>Currently: Xx more EP<span>Cost: 9 Time Theorems</button></td>
</tr>
<tr>
<td style="margin: auto; width: 33%;"><button class="timestudy activestudy" id="131" onclick="buyTimeStudy(131, 5)">Automatic replicanti galaxies are disabled, but you can get 50% more<span>Cost: 5 Time Theorems</button></td>
<td style="margin: auto; width: 33%;"><button class="timestudy passivestudy" id="132" onclick="buyTimeStudy(132, 5)">Replicanti galaxies are 30% more effective<span>Cost: 5 Time Theorems</button></td>
<td style="margin: auto; width: 33%;"><button class="timestudy idlestudy" id="133" onclick="buyTimeStudy(133, 5)">You gain replicantis 10 times slower but each galaxy is 50% more effective<span>Cost: 5 Time Theorems</button></td>
</tr>
<tr>
<td style="margin: auto; width: 33%;"><button class="timestudy activestudy" id="141" onclick="buyTimeStudy(141, 4)">Multiplier to IP, decaying over this infinity<span>Currently Xx<span>Cost: 4 Time Theorems</button></td>
<td style="margin: auto; width: 33%;"><button class="timestudy passivestudy" id="142" onclick="buyTimeStudy(142, 4)">You gain 1e25x more IP<span>Cost: 4 Time Theorems</button></td>
<td style="margin: auto; width: 33%;"><button class="timestudy idlestudy" id="143" onclick="buyTimeStudy(143, 4)">Multiplier to IP, increasing over this infinity<span>Currently Xx<span>Cost: 4 Time Theorems</button></td>
</tr>
</table>
<br>
<table class="table" id="studytable">
<tr>
<td style="margin: auto; width: 100%;text-align:center;"><button class="timestudy" id="151" onclick="buyTimeStudy(151, 8)">1e4x multiplier on all Time Dimensions<span>Cost: 8 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td style="margin: auto; width: 50%;text-align:center;"><button class="timestudy" id="161" onclick="buyTimeStudy(161, 7)">1e616x multiplier on all normal dimensions<span>Cost: 7 Time Theorems</button></td>
<td style="margin: auto; width: 50%;text-align:center;"><button class="timestudy" id="162" onclick="buyTimeStudy(162, 7)">1e11x multiplier on all Infinity Dimensions<span>Cost: 7 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td style="margin: auto; width: 100%;text-align:center;"><button class="timestudy" id="171" onclick="buyTimeStudy(171, 15)">Time shard requirement for the next tickspeed upgrade goes up slower<span>Cost: 15 Time Theorems</button></td>
</tr>
</table>
<div>
<table id="footer">
<tr>
<td>
<div style="text-align:center">
<a href="howto.html" target="_newtab">How to play </a> |
<a href="about.html" target="_newtab">Donate </a> |
<a href="changelog.html" target="_newtab">Changelog </a> |
<a href="https://discord.gg/ST9NaXa" target="_newtab">Discord</a> |
<a href="https://www.reddit.com/r/AntimatterDimensions/" target="_newtab">Subreddit</a>
</div>
</td>
</tr>
</table>
</div>
</div>
<div class="eternitytab" id="eternityupgrades">
<br>
<table class="table" style="margin: 0 auto">
<tr>
<td>
<button id="eter1" class="eternityupbtn" onclick="buyEternityUpgrade(1, 5)">Infinity Dimensions multiplier equal to unspent EP to the power of 5.<br>Currently: x<br>Cost: 5 EP</button>
</td>
<td>
<button id="eter2" class="eternityupbtnlocked" onclick="buyEternityUpgrade(2, 10)">You gain Infinity Dimension multiplier based on eternities (x^log4(2x))<br>Currently: x<br>Cost: 10 EP</button>
</td>
<td>
<button id="eter3" class="eternityupbtnbought" onclick="buyEternityUpgrade(3, 50e3)">Infinity Dimensions multiplier based on sum of Infinity Challenge times<br>Currently: Xx<br>Cost: 50 K EP</button>
</td>
</tr>
</table>
<table class="table" style="margin: 0 auto">
<tr>
<td>
<div class="eternityupbtnbought" style="opacity: 0"></div>
</td>
<td>
<button id="epmult" class="eternityupbtn" onclick="buyEPMult()">You gain 5 times more EP<p>Cost: 500 EP</button>
</td>
<td>
<div class="eternityupbtnbought" style="opacity: 0"></div>
</td>
</tr>
</table>
<div>
<table id="footer">
<tr>
<td>
<div style="text-align:center">
<a href="howto.html" target="_newtab">How to play </a> |
<a href="about.html" target="_newtab">Donate </a> |
<a href="changelog.html" target="_newtab">Changelog </a> |
<a href="https://discord.gg/ST9NaXa" target="_newtab">Discord</a> |
<a href="https://www.reddit.com/r/AntimatterDimensions/" target="_newtab">Subreddit</a>
</div>
</td>
</tr>
</table>
</div>
</div>
<div class="eternitytab" id="milestones">
<table class="table" align="center" style="margin: auto" id="milestones">
<tr>
<td class="milestoneText">1 Eternity - </td>
<td><button class="milestonerewardlocked" id="reward1">Unlock IP multiplier autobuyer</button></td>
</tr>
<tr>
<td class="milestoneText">2 Eternities - </td>
<td><button class="milestonerewardlocked" id="reward2">You keep your autobuyers on Eternity</button></td>
</tr>
<tr>
<td class="milestoneText">3 Eternities - </td>
<td><button class="milestonerewardlocked" id="reward3">Unlock replicanti galaxy autobuyer</button></td>
</tr>
<tr>
<td class="milestoneText">4 Eternities - </td>
<td><button class="milestonerewardlocked" id="reward3.5">You keep your infinity upgrades on Eternity</button></td>
</tr>
<tr>
<td class="milestoneText">5 Eternities - </td>
<td><button class="milestonerewardlocked" id="reward4" style="font-size: 12px">Unlock more big crunch autobuyer options.</button></td>
</tr>
<tr>
<td class="milestoneText">7 Eternities - </td>
<td><button class="milestonerewardlocked" id="reward5" style="font-size: 10px">You complete Infinity Challenges as soon as you unlock them (you get sacrifice autobuyer immediately)</button></td>
</tr>
<tr>
<td class="milestoneText">9 Eternities - </td>
<td><button class="milestonerewardlocked" id="reward6">Unlock autobuy max galaxies</button></td>
</tr>
<tr>
<td class="milestoneText">10 Eternities - </td>
<td><button class="milestonerewardlocked" id="reward7">Unlock autobuy max Dimensional Boosts</button></td>
</tr>
<tr>
<td class="milestoneText">11 Eternities - </td>
<td><button class="milestonerewardlocked" id="reward8">Unlock autobuyer for First Infinity Dimension</button></td>
</tr>
<tr>
<td class="milestoneText">12 Eternities - </td>
<td><button class="milestonerewardlocked" id="reward9">Unlock autobuyer for Second Infinity Dimension</button></td>
</tr>
<tr>
<td class="milestoneText">13 Eternities - </td>
<td><button class="milestonerewardlocked" id="reward10">Unlock autobuyer for Third Infinity Dimension</button></td>
</tr>
<tr>
<td class="milestoneText">14 Eternities - </td>
<td><button class="milestonerewardlocked" id="reward11">Unlock autobuyer for Fourth Infinity Dimension</button></td>
</tr>
<tr>
<td class="milestoneText">15 Eternities - </td>
<td><button class="milestonerewardlocked" id="reward12">Unlock autobuyer for Fifth Infinity Dimension</button></td>
</tr>
<tr>
<td class="milestoneText">16 Eternities - </td>
<td><button class="milestonerewardlocked" id="reward13">Unlock autobuyer for Sixth Infinity Dimension</button></td>
</tr>
<tr>
<td class="milestoneText">17 Eternities - </td>
<td><button class="milestonerewardlocked" id="reward14">Unlock autobuyer for Seventh Infinity Dimension</button></td>
</tr>
<tr>
<td class="milestoneText">18 Eternities - </td>
<td><button class="milestonerewardlocked" id="reward15">Unlock autobuyer for Eighth Infinity Dimension</button></td>
</tr>
<tr>
<td class="milestoneText">20 Eternities - </td>
<td><button class="milestonerewardlocked" id="reward16">You keep your Breaking infinity upgrades on Eternity</button></td>
</tr>
<tr>
<td class="milestoneText">25 Eternities - </td>
<td><button class="milestonerewardlocked" id="reward17">You automatically unlock Infinity Dimensions upon reaching them</button></td>
</tr>
<tr>
<td class="milestoneText">40 Eternities - </td>
<td><button class="milestonerewardlocked" id="reward18">Unlock autobuyer for replicanti chance upgrade</button></td>
</tr>
<tr>
<td class="milestoneText">50 Eternities - </td>
<td><button class="milestonerewardlocked" id="reward19">You start with replicanti unlocked</button></td>
</tr>
<tr>
<td class="milestoneText">60 Eternities - </td>
<td><button class="milestonerewardlocked" id="reward20">Unlock autobuyer for replicanti interval upgrade</button></td>
</tr>
<tr>
<td class="milestoneText">80 Eternities - </td>
<td><button class="milestonerewardlocked" id="reward21">Unlock autobuyer for replicanti galaxy upgrade</button></td>
</tr>
<tr>
<td class="milestoneText">100 Eternities - </td>
<td><button class="milestonerewardlocked" id="reward22">Unlock autobuyer for Eternities</button></td>
</tr>
</table>
<div>
<table id="footer">
<tr>
<td>
<div style="text-align:center">
<a href="howto.html" target="_newtab">How to play </a> |
<a href="about.html" target="_newtab">Donate </a> |
<a href="changelog.html" target="_newtab">Changelog </a> |
<a href="https://discord.gg/ST9NaXa" target="_newtab">Discord</a> |
<a href="https://www.reddit.com/r/AntimatterDimensions/" target="_newtab">Subreddit</a>
</div>
</td>
</tr>
</table>
</div>
</div>
</div>
<div id="dimensions" class="tab">
<table class="table" align="center" style="margin: auto" id="dimTabButtons">
<tr>
<td><button class="secondarytabbtn" onclick="showDimTab('antimatterdimensions')">Dimensions</button><td>
<td><button class="secondarytabbtn" onclick="showDimTab('infinitydimensions')">Infinity Dimensions</button><td>
<td><button id="tdtabbtn"class="secondarytabbtn" style="display: none" onclick="showDimTab('timedimensions')">Time Dimensions</button><td>
</tr>
</table>
<div id="antimatterdimensions" class="dimtab">
<p></p>
<input id="confirmation" type="checkbox" style="width:20px; height:18px; display: none" ach-tooltip="No confirmation when doing Dimensional Sacrifice" onchange="sacrificeConf()">
<button id="sacrifice" class="storebtn" style="font-size:12px; width: 260px; display: none" ach-tooltip="">Dimensional Sacrifice</button>
<button id="maxall" class="storebtn" style="font-size: 12px">Max all</Button>
<span id="chall2Pow"></span>
<span id="chall3Pow"></span>
<table class="table" >
<tbody id="parent">
<tr style="font-size: 15px" id="firstRow">
<td id="firstD" width="32%">
First Dimension x1
</td>
<td>
<div id="firstAmount">0 (0)</div>
</td>
<td align="right" width="10%">
<button id="first" style="color:black; height: 25px; font-size: 10px; width: 135px" class="storebtn" align="right">Cost: 10</button>
</td>
<td align="right" width="10%">
<button id="firstMax" style="color:black; width:210px; height: 25px; font-size: 10px" class="storebtn" align="right">Cost: 10</button>
</td>
</tr>
<tr id="secondRow" style="display: none; font-size: 15px">
<td id="secondD">
Second Dimension
</td>
<td>
<div id="secondAmount" align="left">0 (0)</div>
</td>
<td><button id="second" style="color:black; height: 25px; font-size: 10px; width: 135px" class="storebtn">Cost: 100</button>
</td>
<td>
<button id="secondMax" style="color:black; width:210px; height: 25px; font-size: 10px" class="storebtn">Cost: 10</button>
</td>
</tr>
<tr id="thirdRow" style="display: none; font-size: 15px">
<td id="thirdD">
Third Dimension
</td>
<td>
<div id="thirdAmount" align="left">0 (0)</div>
</td>
<td>
<button id="third" style="color:black; height: 25px; font-size: 10px; width: 135px" class="storebtn">Cost: 10000</button>
</td>
<td>
<button id="thirdMax" style="color:black; width:210px; height: 25px; font-size: 10px" class="storebtn">Cost: 10</button>
</td>
</tr>
<tr id="fourthRow" style="display: none; font-size: 15px">
<td id="fourthD">
Fourth Dimension
</td>
<td>
<div id="fourthAmount" align="left">0 (0)</div>
</td>
<td>
<button id="fourth" style="color:black; height: 25px; font-size: 10px; width: 135px" class="storebtn">Cost: 1000000</button>
</td>
<td>
<button id="fourthMax" style="color:black; width:210px; height: 25px; font-size: 10px" class="storebtn">Cost: 10</button>
</td>
</tr>
<tr id="fifthRow" style="display: none; font-size: 15px">
<td id="fifthD">
Fifth Dimension
</td>
<td>
<div id="fifthAmount" align="left">0 (0)</div>
</td>
<td>
<button id="fifth" style="color:black; height: 25px; font-size: 10px; width: 135px" class="storebtn">Cost: 1000000</button>
</td>
<td>
<button id="fifthMax" style="color:black; width:210px; height: 25px; font-size: 10px" class="storebtn">Cost: 10</button>
</td>
</tr>
<tr id="sixthRow" style="display: none; font-size: 15px">
<td id="sixthD">
Sixth Dimension
</td>
<td>
<div id="sixthAmount" align="left">0 (0)</div>
</td>
<td>
<button id="sixth" style="color:black; height: 25px; font-size: 10px; width: 135px" class="storebtn">Cost: 1000000</button>
</td>
<td>
<button id="sixthMax" style="color:black; width:210px; height: 25px; font-size: 10px" class="storebtn">Cost: 10</button>
</td>
</tr>
<tr id="seventhRow" style="display: none; font-size: 15px">
<td id="seventhD">
Seventh Dimension
</td>
<td>
<div id="seventhAmount" align="left">0 (0)</div>
</td>
<td>
<button id="seventh" style="color:black; height: 25px; font-size: 10px; width: 135px" class="storebtn">Cost: 1000000</button>
</td>
<td>
<button id="seventhMax" style="color:black; width:210px; height: 25px; font-size: 10px" class="storebtn">Cost: 10</button>
</td>
</tr>
<tr id="eightRow" style="display: none; font-size: 15px">
<td id="eightD">
Eight Dimension
</td>
<td>
<div id="eightAmount" align="left">0 (0)</div>
</td>
<td>
<button id="eight" style="color:black; height: 25px; font-size: 10px; width: 135px" class="storebtn">Cost: 1000000</button>
</td>
<td>
<button id="eightMax" style="color:black; width:210px; height: 25px; font-size: 10px" class="storebtn">Cost: 10</button>
</td>
</tr>
</tbody>
</table>
<table style="width: 100%">
<tr style="font-size: 15px">
<td id="resetLabel">
Dimension Shift: requires 20 Fourth Dimension
</td>
<td>
<button id="softReset" style="color:black; width: 200px; height: 25px; font-size: 9px" class="storebtn">Reset the game for a new Dimension</button>
</td>
</tr>
<tr style="font-size: 15px">
<td id="secondResetLabel">
Antimatter Galaxies: requires 80 Eight Dimension
</td>
<td>
<button id="secondSoftReset" style="color:black; width: 200px; height: 35px; font-size: 9px" class="storebtn">Lose all your previous progress, but get a tickspeed boost</button>
</td>
</tr>
</table>
<button id="quickReset" style="color:black; width: 200px; height: 50px; font-size: 12px; display: none" class="storebtn">Lose a reset, returning to the start of the reset</button>
</div>
<div id="infinitydimensions" class="dimtab">
<div>
<p>You have <span id="infPowAmount" style="font-size:35px; color: black">0</span> infinity power. translated to <span id="infDimMultAmount" style="font-size:35px; color: black">0</span>x multiplier on all dimensions</p>
</div>
<div id="infPowPerSec">You are getting 0 antimatter per second.</div>
<table class="table" >
<tr style="font-size: 16px" id="infRow1">
<td id="infD1" width="41%">
First Infinity Dimension x1
</td>
<td>
<div id="infAmount1">0 (0)</div>
</td>
<td>
<button id="infauto1" style="width:70px; font-size: 10px; float: right; visibility: hidden" onclick="switchAutoInf(1)" class="storebtn">Auto: ON</button>
</td>
<td align="right" width="10%">
<button id="infMax1" style="color:black; width:195px; height:30px" class="storebtn" align="right" onclick="buyManyInfinityDimension(1)">Cost: 10</button>
</td>
</tr>
<tr id="infRow2" style="display: none; font-size: 16px">
<td id="infD2">
Second Infinity Dimension x1
</td>
<td>
<div id="infAmount2" align="left">0 (0)</div>
</td>
<td>
<button id="infauto2" style="width:70px; font-size: 10px; float: right; visibility: hidden" onclick="switchAutoInf(2)" class="storebtn">Auto: ON</button>
</td>
<td>
<button id="infMax2" style="color:black; width:195px; height:30px" class="storebtn" onclick="buyManyInfinityDimension(2)">Cost: 10</button>
</td>
</tr>
<tr id="infRow3" style="display: none; font-size: 16px">
<td id="infD3">
Third Infinity Dimension x1
</td>
<td>
<div id="infAmount3" align="left">0 (0)</div>
</td>
<td>
<button id="infauto3" style="width:70px; font-size: 10px; float: right; visibility: hidden" onclick="switchAutoInf(3)" class="storebtn">Auto: ON</button>
</td>
<td>
<button id="infMax3" style="color:black; width:195px; height:30px" class="storebtn" onclick="buyManyInfinityDimension(3)">Cost: 10</button>
</td>
</tr>
<tr id="infRow4" style="display: none; font-size: 16px">
<td id="infD4">
Fourth Infinity Dimension x1
</td>
<td>
<div id="infAmount4" align="left">0 (0)</div>
</td>
<td>
<button id="infauto4" style="width:70px; font-size: 10px; float: right; visibility: hidden" onclick="switchAutoInf(4)" class="storebtn">Auto: ON</button>
</td>
<td>
<button id="infMax4" style="color:black; width:195px; height:30px" class="storebtn" onclick="buyManyInfinityDimension(4)">Cost: 10</button>
</td>
</tr>
<tr id="infRow5" style="display: none; font-size: 16px">
<td id="infD5">
Fourth Infinity Dimension x1
</td>
<td>
<div id="infAmount5" align="left">0 (0)</div>
</td>
<td>
<button id="infauto5" style="width:70px; font-size: 10px; float: right; visibility: hidden" onclick="switchAutoInf(5)" class="storebtn">Auto: ON</button>
</td>
<td>
<button id="infMax5" style="color:black; width:195px; height:30px" class="storebtn" onclick="buyManyInfinityDimension(5)">Cost: 10</button>
</td>
</tr>
<tr id="infRow6" style="display: none; font-size: 16px">
<td id="infD6">
Fourth Infinity Dimension x1
</td>
<td>
<div id="infAmount6" align="left">0 (0)</div>
</td>
<td>
<button id="infauto6" style="width:70px; font-size: 10px; float: right; visibility: hidden" onclick="switchAutoInf(6)" class="storebtn">Auto: ON</button>
</td>
<td>
<button id="infMax6" style="color:black; width:195px; height:30px" class="storebtn" onclick="buyManyInfinityDimension(6)">Cost: 10</button>
</td>
</tr>
<tr id="infRow7" style="display: none; font-size: 16px">
<td id="infD7">
Fourth Infinity Dimension x1
</td>
<td>
<div id="infAmount7" align="left">0 (0)</div>
</td>
<td>
<button id="infauto7" style="width:70px; font-size: 10px; float: right; visibility: hidden" onclick="switchAutoInf(7)" class="storebtn">Auto: ON</button>
</td>
<td>
<button id="infMax7" style="color:black; width:195px; height:30px" class="storebtn" onclick="buyManyInfinityDimension(7)">Cost: 10</button>
</td>
</tr>
<tr id="infRow8" style="display: none; font-size: 16px">
<td id="infD8">
Fourth Infinity Dimension x1
</td>
<td>
<div id="infAmount8" align="left">0 (0)</div>
</td>
<td>
<button id="infauto8" style="width:70px; font-size: 10px; float: right; visibility: hidden" onclick="switchAutoInf(8)" class="storebtn">Auto: ON</button>
</td>
<td>
<button id="infMax8" style="color:black; width:195px; height:30px" class="storebtn" onclick="buyManyInfinityDimension(8)">Cost: 10</button>
</td>
</tr>
</table>
<button id="toggleallinfdims"style="width:140px; height: 30px; font-size: 12px; visibility: hidden" onclick="toggleAllInfDims()" class="storebtn">Toggle all ON/OFF</button>
</div>
<div id="timedimensions" class="dimtab">
<div>
<p id="totaltickgained">You've gained 0 tickspeed upgrades.</p>
<p>You have <span id="timeShardAmount" style="font-size:35px; color: black">0</span> time shards. Next tickspeed upgrade at <span id="tickThreshold" style="font-size:35px; color: black">0</span></p>
</div>
<div id="timeShardsPerSec">You are getting 0 Timeshards per second.</div>
<table class="table" >
<tr style="font-size: 17px" id="timeRow1">
<td id="timeD1" width="43%">
First Time Dimension x1
</td>
<td>
<div id="timeAmount1">0 (0)</div>
</td>
<td align="right" width="10%">
<button id="timeMax1" style="color:black; width:195px; height:30px" class="storebtn" align="right" onclick="buyTimeDimension(1)">Cost: 10</button>
</td>
</tr>
<tr id="timeRow2" style="font-size: 17px">
<td id="timeD2">
Second Time Dimension x1
</td>
<td>
<div id="timeAmount2" align="left">0 (0)</div>
<td>
<button id="timeMax2" style="color:black; width:195px; height:30px" class="storebtn" onclick="buyTimeDimension(2)">Cost: 10</button>
</td>
</tr>
<tr id="timeRow3" style="font-size: 17px">
<td id="timeD3">
Third Time Dimension x1
</td>
<td>
<div id="timeAmount3" align="left">0 (0)</div>
</td>
<td>
<button id="timeMax3" style="color:black; width:195px; height:30px" class="storebtn" onclick="buyTimeDimension(3)">Cost: 10</button>
</td>
</tr>
<tr id="timeRow4" style="font-size: 17px">
<td id="timeD4">
Fourth Time Dimension x1
</td>
<td>
<div id="timeAmount4" align="left">0 (0)</div>
</td>
<td>
<button id="timeMax4" style="color:black; width:195px; height:30px" class="storebtn" onclick="buyTimeDimension(4)">Cost: 10</button>
</td>
</tr>
</table>
</div>
<div id="progress" ach-tooltip="Percentage until Infinity">
<div id="progressbar"></div>
</div>
<div id="footercontainer">
<table id="footer">
<tr>
<td>
<div style="text-align:center">
<a href="howto.html" target="_newtab">How to play </a> |
<a href="about.html" target="_newtab">Donate </a> |
<a href="changelog.html" target="_newtab">Changelog </a> |
<a href="https://discord.gg/ST9NaXa" target="_newtab">Discord</a> |
<a href="https://www.reddit.com/r/AntimatterDimensions/" target="_newtab">Subreddit</a>
</div>
</td>
</tr>
</table>
</div>
</div>
<div id="options" class="tab" align="center">
<br>
<table>
<tr>
<td><div><button id="theme" class="storebtn" style="color:black; width: 200px; height: 55px; font-size: 20px">Current theme: Normal</button></div></td>
<td><div><button id="notation" class="storebtn" style="color:black; width: 200px; height: 55px; font-size:120%">Notation: Standard</button></div></td>
<td><div><button id="newsbtn" class="storebtn" style="color:black; width: 200px; height: 55px; font-size:120%">Hide/show the news</button></div></td>
</tr>
<tr>
<td><div><button id="save" class="storebtn" style="color:black; width: 200px; height: 55px; font-size: 20px">Save</button></div></td>
<td><div><button id="exportbtn" class="storebtn" style="color:black; width: 200px; height: 55px; font-size: 20px">Export</button></div></td>
<td><div><button id="importbtn" class="storebtn" style="color:black; width: 200px; height: 55px; font-size: 20px">Import</button></div></td>
</tr>
<tr>
<td><div><button id="challengeconfirmation" class="storebtn" style="color:black; width: 200px; height: 55px; font-size: 15px">Challenge confirmation on</button></div></td>
<td><div><button id="retry" onclick="toggleChallengeRetry()" class="storebtn" style="color:black; width: 200px; height: 55px; font-size:120%">Automatically retry challenges</button></div></td>
<td><div><button id="commas" onclick="toggleCommas()" class="storebtn" style="color:black; width: 200px; height: 55px; font-size:120%">Commas on large exponents ON</button></div></td>
</tr>
<tr id="cloudOptions">
<td><div><button onclick="playFabSaveCheck()" class="storebtn" style="color:black; width: 200px; height: 55px; font-size:120%">Cloud save</button></div></td>
<td><div><button onclick="playFabLoadCheck()" class="storebtn" style="color:black; width: 200px; height: 55px; font-size:120%">Cloud load</button></div></td>
<td><div><button id="cloud" onclick="toggleCloud()" class="storebtn" style="color:black; width: 200px; height: 55px; font-size:120%">Toggle automatic cloud saving/loading</button></div></td>
</tr>
<tr>
<td><div><button id="hotkeys" onclick="toggleHotkeys()" class="storebtn" style="color:black; width: 200px; height: 55px; font-size:120%">Disable hotkeys</button></div></td>
<td><div><button id="reset" class="storebtn" style="color:black; width: 200px; height: 55px; font-size: 20px">RESET THE GAME</button></div></td>
<td><div><button id="eternityconf" onclick="toggleEternityConf()" class="storebtn" style="color:black; width: 200px; height: 55px; font-size:120%; display: none">Eternity confimation ON</button></div></td>
</tr>
<tr>
</tr>
<tr>
</tr>
</table>
<div style="display: none;"><textarea id="exportOutput" style="color:black; width: 200px; height: 55px;"></textarea></div>
<div id="footercontainer">
<table id="footer">
<tr>
<td>
<div style="text-align:center">
<a href="howto.html" target="_newtab">How to play </a> |
<a href="about.html" target="_newtab">Donate </a> |
<a href="changelog.html" target="_newtab">Changelog </a> |
<a href="https://discord.gg/ST9NaXa" target="_newtab">Discord</a> |
<a href="https://www.reddit.com/r/AntimatterDimensions/" target="_newtab">Subreddit</a>
</div>
</td>
</tr>
</table>
</div>
</div>
<div id="statistics" class="tab" align="center" style="color: black; font-size: 12px; font-family: Typewriter; margin: 0 auto">
<br>
<tr>
<td><button class="secondarytabbtn" onclick="showStatsTab('stats')">Statistics</button><td>
<td><button class="secondarytabbtn" onclick="showStatsTab('challengetimes')" id="challengetimesbtn" style="display:none" >Challenge records</button><td>
<td><button class="secondarytabbtn" onclick="showStatsTab('infchallengetimes')" id="infchallengesbtn" style="display:none">InfChallenge records</button><td>
<td><button class="secondarytabbtn" onclick="showStatsTab('lasttenruns')" id="pastinfs" style="display:none">Past Infinities</button><td>
<td><button class="secondarytabbtn" onclick="showStatsTab('lastteneternities')" id="pasteternities" >Past Eternities</button><td>
</tr>
<div id="stats" class="statstab">
<br>
<div id="totalmoney">You have made x antimatter.</div>
<div id="totalresets">You have made x soft resets.</div>
<div id="galaxies">You have made x Antimatter galaxies.</div>
<div id="eternitied">You have eternitied x times.</div>
<div id="thiseternity">You have spent x in this eternity</div>
<div id="besteternity">Your fastest eternity is in x.</div>
<div id="infinitied">You have infinitied x times.</div>
<div id="bestInfinity">Your fastest infinity is in x.</div>
<div id="thisInfinity">You have spent x in this Infinity.</div>
<div id="totalTime">You have played for </div>
<div id="infoScale">If every antimatter were a planck volume, you would have enough to </div>
</div>
<div id="challengetimes" class="statstab" >
<br>
<div id="challengetime2"></div>
<div id="challengetime3"></div>
<div id="challengetime4"></div>
<div id="challengetime5"></div>
<div id="challengetime6"></div>
<div id="challengetime7"></div>
<div id="challengetime8"></div>
<div id="challengetime9"></div>
<div id="challengetime10"></div>
<div id="challengetime11"></div>
<div id="challengetime12"></div>
<br>
</div>
<div id="infchallengetimes" class="statstab" >
<br>
<div id="infchallengetime1"></div>
<div id="infchallengetime2"></div>
<div id="infchallengetime3"></div>
<div id="infchallengetime4"></div>
<div id="infchallengetime5"></div>
<div id="infchallengetime6"></div>
<div id="infchallengetime7"></div>
<div id="infchallengetime8"></div>
<br>
</div>
<div id="lasttenruns" class="statstab">
<div id="run1"></div>
<div id="run2"></div>
<div id="run3"></div>
<div id="run4"></div>
<div id="run5"></div>
<div id="run6"></div>
<div id="run7"></div>
<div id="run8"></div>
<div id="run9"></div>
<div id="run10"></div>
<br>
<div id="averagerun"></div>
<br>
</div>
<div id="lastteneternities" class="statstab">
<div id="eternityrun1"></div>
<div id="eternityrun2"></div>
<div id="eternityrun3"></div>
<div id="eternityrun4"></div>
<div id="eternityrun5"></div>
<div id="eternityrun6"></div>
<div id="eternityrun7"></div>
<div id="eternityrun8"></div>
<div id="eternityrun9"></div>
<div id="eternityrun10"></div>
<br>
<div id="averageEternityRun"></div>
<br>
</div>
<div id="footercontainer">
<table id="footer">
<tr>
<td>
<div style="text-align:center">
<a href="howto.html" target="_newtab">How to play </a> |
<a href="about.html" target="_newtab">Donate </a> |
<a href="changelog.html" target="_newtab">Changelog </a> |
<a href="https://discord.gg/ST9NaXa" target="_newtab">Discord</a> |
<a href="https://www.reddit.com/r/AntimatterDimensions/" target="_newtab">Subreddit</a>
</div>
</td>
</tr>
</table>
</div>
</div>
<div id="achievements" class="tab">
<br>
<div id="achmultlabel" style="font-size: 140%">Current achievement multiplier on each Dimension: 1x</div>
<table style="margin: auto">
<tr id="achRow1">
<td>
<div id="You gotta start somewhere" class="achievement achievementlocked" style="background-image: url(images/1.png)" ach-tooltip="Buy a single First Dimension"><br></div>
</td>
<td>
<div id="100 antimatter is a lot" class="achievement achievementlocked" style="background-image: url(images/2.png)" ach-tooltip="Buy a single Second Dimension"><br></div>
</td>
<td>
<div id="Half life 3 confirmed" class="achievement achievementlocked" style="background-image: url(images/3.png)" ach-tooltip="Buy a single Third Dimension"><br></div>
</td>
<td>
<div id="L4D: Left 4 Dimensions" class="achievement achievementlocked" style="background-image: url(images/4.png)" ach-tooltip="Buy a single Fourth Dimension"><br></div>
</td>
<td>
<div id="5 Dimension Antimatter Punch" class="achievement achievementlocked" style="background-image: url(images/5.png)" ach-tooltip="Buy a single Fifth Dimension"><br></div>
</td>
<td>
<div id="We couldn't afford 9" class="achievement achievementlocked" style="background-image: url(images/6.png)" ach-tooltip="Buy a single Sixth Dimension"><br></div>
</td>
<td>
<div id="Not a luck related achievement" class="achievement achievementlocked" style="background-image: url(images/7.png)" ach-tooltip="Buy a single Seventh Dimension"><br></div>
</td>
<td>
<div id="90 degrees to infinity" class="achievement achievementlocked" style="background-image: url(images/8.png)" ach-tooltip="Buy a single Eighth Dimension"><br></div>
</td>
</tr>
<tr id="achRow2">
<td>
<div id="To infinity!" class="achievement achievementlocked" style="background-image: url(images/9.png)" ach-tooltip="Reach Infinite antimatter. Reward: Start with 100 antimatter."><br></div>
</td>
<td>
<div id="Don't you dare to sleep" class="achievement achievementlocked" style="background-image: url(images/10.png)" ach-tooltip="Be offline for over 6 hours in a row"><br></div>
</td>
<td>
<div id="The 9th Dimension is a lie" class="achievement achievementlocked" style="background-image: url(images/11.png)" ach-tooltip="Have exactly 99 Eighth Dimensions. Reward: Eighth Dimensions are 10% stronger."><br></div>
</td>
<td>
<div id="Antimatter Apocalypse" class="achievement achievementlocked" style="background-image: url(images/12.png)" ach-tooltip="Get over 10 QtVg (10e79) antimatter"><br></div>
</td>
<td>
<div id="Boosting to the max" class="achievement achievementlocked" style="background-image: url(images/13.png)" ach-tooltip="Buy 10 Dimension Boosts"><br></div>
</td>
<td>
<div id="You got past The Big Wall" class="achievement achievementlocked" style="background-image: url(images/14.png)" ach-tooltip="Buy an Antimatter Galaxy"><br></div>
</td>
<td>
<div id="Double Galaxy" class="achievement achievementlocked" style="background-image: url(images/15.png)" ach-tooltip="Buy 2 Antimatter Galaxies"><br></div>
</td>
<td>
<div id="There's no point in doing that" class="achievement achievementlocked" style="background-image: url(images/16.png)" ach-tooltip="Buy a single First Dimension when you have over 1e150 of them. Reward: First Dimensions are 10% stronger"><br></div>
</td>
</tr>
<tr id="achRow3">
<td>
<div id="I forgot to nerf that" class="achievement achievementlocked" style="background-image: url(images/17.png)" ach-tooltip="Get any Dimension multiplier over 10 No (10e30). Reward: First Dimensions are 5% stronger"><br></div>
</td>
<td>
<div id="The Gods are pleased" class="achievement achievementlocked" style="background-image: url(images/18.png)" ach-tooltip="Get over 600x from Dimension Sacrifice in total. Reward: Sacrifice is slightly stronger"><br></div>
</td>
<td>
<div id="That's a lot of infinites" class="achievement achievementlocked" style="background-image: url(images/19.png)" ach-tooltip="Reach Infinity 10 times"><br></div>
</td>
<td>
<div id="You didn't need it anyway" class="achievement achievementlocked" style="background-image: url(images/20.png)" ach-tooltip="Reach Infinite antimatter without having any 8th Dimensions. Reward: Dimensions 1-7 are 2% stronger"><br></div>
</td>
<td>
<div id="One for each dimension" class="achievement achievementlocked" style="background-image: url(images/21.png)" ach-tooltip="Play for 8 days. Reward: Extremely small time multiplier."><br></div>
</td>
<td>
<div id="Claustrophobic" class="achievement achievementlocked" style="background-image: url(images/22.png)" ach-tooltip="Go Infinite with just 1 Antimatter Galaxy. Reward: Reduces starting tick interval by 2%"><br></div>
</td>
<td>
<div id="That's fast!" class="achievement achievementlocked" style="background-image: url(images/23.png)" ach-tooltip="Go infinite in under 2 hours. Reward: Start with 1000 antimatter."><br></div>
</td>
<td>
<div id="I don't believe in Gods" class="achievement achievementlocked" style="background-image: url(images/24.png)" ach-tooltip="Buy a Galaxy without Sacrificing"><br></div>
</td>
</tr>
<tr id="achRow4">
<td>
<div id="Fake News" class="achievement achievementlocked" style="background-image: url(images/25.png)" ach-tooltip="Encounter 50 different news messages"><br></div>
</td>
<td>
<div id="Supersanic" class="achievement achievementlocked" style="background-image: url(images/26.png)" ach-tooltip="Have antimatter/sec exceed your current antimatter above 1 Tg (1e63)"><br></div>
</td>
<td>
<div id="Zero Deaths" class="achievement achievementlocked" style="background-image: url(images/27.png)" ach-tooltip="Get to Infinity without Dimension shifts, boosts or galaxies. Reward: Dimensions 1-4 are 25% stronger"><br></div>
</td>
<td>
<div id="Over in 30 seconds" class="achievement achievementlocked" style="background-image: url(images/28.png)" ach-tooltip="Have antimatter/sec exceed your current antimatter for 30 consecutive seconds"><br></div>
</td>
<td>
<div id="Faster than a potato" class="achievement achievementlocked" style="background-image: url(images/29.png)" ach-tooltip="Get more than 100 Sx (100e21) ticks per second. Reward: Reduces starting tick interval by 2%"><br></div>
</td>
<td>
<div id="Multidimensional" class="achievement achievementlocked" style="background-image: url(images/30.png)" ach-tooltip="Reach 1 Qd (1e12) of all dimensions except 8th"><br></div>
</td>
<td>
<div id="Daredevil" class="achievement achievementlocked" style="background-image: url(images/31.png)" ach-tooltip="Complete 2 challenges"><br></div>
</td>
<td>
<div id="AntiChallenged" class="achievement achievementlocked" style="background-image: url(images/32.png)" ach-tooltip="Complete all the challenges. Reward: All dimensions are 10% stronger."><br></div>
</td>
</tr>
<tr id="achRow5">
<td>
<div id="Limit Break" class="achievement achievementlocked" style="background-image: url(images/33.png)" ach-tooltip="Break Infinity"><br></div>
</td>
<td>
<div id="Age of Automation" class="achievement achievementlocked" style="background-image: url(images/34.png)" ach-tooltip="Max any 9 autobuyers."><br></div>
</td>
<td>
<div id="Definitely not worth it" class="achievement achievementlocked" style="background-image: url(images/35.png)" ach-tooltip="Max all the autobuyers."><br></div>