forked from aarextiaokhiao/IvarK.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
5416 lines (5368 loc) · 315 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>
<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." charset="utf-8"/>
<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?12">
<link href="https://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=IBM+Plex+Mono&display=swap" rel="stylesheet">
<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>
<script type="text/javascript" src="javascripts/stuck.js"></script>
</head>
<img id="loading" src="images/Loading.png">
<div id="snow" style="display: none; "></div>
<body id="body" style="height: 95vh; " onload="initGame()">
<div id='ghostlyNewsTicker'><span id='ghostlyNewsTickerText'></span></div>
<div style="display:none;position:fixed;left:0;top:0"><textarea id="output" style="color:black; width: 200px; height: 55px;"></textarea></div>
<div id="container" class="container" style="color:#4F5957; font-family: Typewriter; text-align:center; font-size: 11px; display:none">
<div id='ghostlyNewsTickerBlock'></div>
<div id='game' style='display:none'>
<div id='news'>.</div>
</div>
<div style="position: relative">
<div class="IP" id="infinityPoints2"></div>
<button id="postInfinityButton" class="postinfcrunch" onclick="bigCrunch()">Big Crunch for x Infinity Points</button>
</div>
<div style="position: relative">
<div class="EP" id="eternityPoints2"></div>
<button id="newDimensionButton" class="newdim" onclick="newDimension()">Get x antimatter to unlock a new Dimension.</button>
<button id="eternitybtn" class="eternitybtn" onclick="eternity()">
<div style="font-weight:bold" id="eternitybtnFlavor" class="hideEmpty">Other times await.. I need to become Eternal</div>
<div id="eternitybtnEPGain" class="hideEmpty"></div>
<div id="eternitybtnRate" class="hideEmpty"></div>
<div id="eternitybtnPeak" class="hideEmpty hideInMorse"></div>
</button>
</div>
<div style="position: relative">
<div id="px">You have <span class='pxAmount'>0</span> Paradoxes.</div>
<span id="pSacPos"><button id="pSac" class="storebtn" onclick="pSac()"></button></span>
</div>
<div style="position: relative">
<div class="EP" id="galaxyPoints2">You have <span class='GPAmount'>0</span> Galaxy points.</div>
<span id="sacpos" class="eterpos"><button id="sacrificebtn" class="storebtn" onclick="galacticSacrifice()"></button></span>
</div>
<div style="position: relative">
<div class="QK">
<div id="quarks"></div>
<div id="quantumClock"></div>
</div>
<button id="quantumbtn" class="quantumbtn" onclick="quantum(false, false, 0)">
<div id="quantumbtnFlavor" class="hideEmpty"></div>
<div id="quantumbtnQKGain" class="hideEmpty"></div>
<div id="quantumbtnRate" class="hideEmpty"></div>
<div id="quantumbtnPeak" class="hideEmpty"></div>
</button>
</div>
<div style="position: relative">
<div class="GHP" id="ghostparticles">
You have <span id='GHPAmount'>0</span> Ghost Particles.<br>
<div id="quantumedBM">Quantumed <span id='quantumedBMAmount'>0</span> times</div>
</div>
<button id="bigripbtn" class="bigripbtn" onclick="bigRip()">I want the impossible challenge to be completed... I want to Big Rip the universe.</button>
<button id="ghostifybtn" class="ghostifybtn" onclick="ghostify()">
<div id="ghostifybtnFlavor" class="hideEmpty"></div>
<div id="GHPGain" class="hideEmpty"></div>
<div id="GHPRate" class="hideEmpty"></div>
<div id="GHPPeak" class="hideEmpty"></div>
</button>
</div>
<div id='quantumBlock' style='height:120px'></div>
<div id="matter"></div>
<div id="chall13Mult"></div>
<div id="c14Resets"></div>
<div id="ec12Mult"></div>
<div>
<p>You have <span id="coinAmount" style="font-size:25px; color: black">0</span> antimatter.</p>
</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: 19px">
<button id="bigcrunch" style="font-family: Typewriter; font-size: 50px; width: 360px; height: 100px;" class="tabbtn" onclick="bigCrunch()">Big Crunch</button>
</div>
<div>
<button id="dimensionsbtn" style="font-family: Typewriter; font-size: 20px" class="tabbtn" onclick="showTab('dimensions')">Dimensions</button>
<button id="optionsbtn" style="font-family: Typewriter; font-size: 20px" class="tabbtn" onclick="showTab('options')">Options</button>
<button id="statisticsbtn" style="font-family: Typewriter; font-size: 20px" class="tabbtn" onclick="showTab('statistics')">Statistics</button>
<button id="achievementsbtn" style="font-family: Typewriter; font-size: 20px" class="tabbtn" onclick="showTab('achievements')">Achievements</button>
<button id="challengesbtn" style="font-family: Typewriter; font-size: 20px" class="tabbtn" onclick="showTab('challenges')">Challenges</button>
<button id="automationbtn" style="font-family: Typewriter; font-size: 20px" class="tabbtn" onclick='showTab("autobuyers")'>Automation</button>
<button id="paradoxbtn" style="font-family: Typewriter; font-size: 20px; display: none" class="tabbtn" onclick='showTab("paradox")'>Paradox</button>
<button id="galaxybtn" style="font-family: Typewriter; font-size: 20px; display: none" onclick='showTab("galaxy")'>Galaxy</button>
<button id="infinitybtn" style="font-family: Typewriter; font-size: 20px; display: none" class="infinitybtn" onclick="showTab('infinity')">Infinity</button>
<button id="eternitystorebtn" style="font-family: Typewriter; font-size: 20px; display: none" class="eternitytabbtn" onclick="showTab('eternitystore')">Eternity</button>
<button id="quantumtabbtn" style="font-family: Typewriter; font-size: 20px; display: none" class="quantumbtn" onclick='showTab("quantumtab")'>Quantum</button>
<button id="ghostifytabbtn" style="font-family: Typewriter; font-size: 20px" class="ghostifybtn" onclick='showTab("ghostify")'>Ghostify</button>
</div>
<div id="emptiness" class="tab" style="font-size: 150%">
<br>
<br>
<br> The world has collapsed on itself due to excess of antimatter.
</div>
<div id="eternitystore" class="tab" style="font-size: 15px; 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 id="masterystudyunlock"><button class="secondarytabbtn" onclick="showEternityTab('masterystudies')">Mastery 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>
<td id="dilationTabbtn"><button class="secondarytabbtn" onclick="showEternityTab('dilation')">Time dilation</button></td>
<td id="blackHoleTabbtn"><button class="secondarytabbtn" onclick="showEternityTab('blackhole')">Black hole</button></td>
<td id="breakEternityTabbtn"><button class="secondarytabbtn" onclick="showEternityTab('breakEternity')">Break Eternity</button></td>
<td id="autoEternityTabbtn"><button class="secondarytabbtn" onclick="showEternityTab('autoEternity')">Auto-Eternity</button></td>
</tr>
</table>
<div class="eternitytab" id="timestudies" style="font-size: 15px">
<canvas id="studyTreeCanvas"></canvas>
<tr>
<td><button class="storebtn" onclick="exportStudyTree()" style="width:150px; height: 40px; font-size: 10px; margin: auto">Export tree</button><td>
<td><button class="storebtn" onclick="respecToggle()" id="respec" style="width:150px; height: 40px; font-size: 10px; margin: auto">Respec time studies on next Eternity</button><td>
<td><button class="storebtn" onclick="importStudyTree()" style="width:150px; height: 40px; font-size: 10px; margin: auto">Import tree</button><td>
</tr>
<button class="storebtn" onclick="respecMasteryToggle()" id="respecMastery" style="width:150px; height: 40px; font-size: 10px; margin: auto">Respec mastery studies on next Eternity</button>
<button class="storebtn" onclick="fillAll()" id="fillAll" style="width:150px; height: 40px; font-size: 10px; margin: auto">Buy all time studies</button>
<table class="table" id="studytable">
<tr>
<td style="opacity: 0;"><button class="timestudylocked"></button></td>
<td><button class="timestudylocked" id="11" onclick="buyTimeStudy(11)">Tickspeed affects 1st Time Dimension with reduced effect<span id="11desc">Currently: 1x</span>Cost: 1 Time Theorem</button></td>
<td><button class="timestudybought" id="secretstudy" style="opacity: 0; cursor: pointer; transition-duration: 2s;">Unlock a secret achievement<span>Cost: 0 Time Theorems</button></td>
</tr>
</table>
<br>
<table class="table" id="studytable">
<tr>
<td><button id="21" onclick="buyTimeStudy(21)">Replicanti multiplier formula is better (log2(x)^2 -> x^0.032)<span>Cost: 3 Time Theorems</button></td>
<td><button id="22" onclick="buyTimeStudy(22)">Replicanti interval limit 50ms -> 1ms<span>Cost: 2 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button id="33" onclick="buyTimeStudy(33)">You keep half of your replicanti galaxies on infinity<span>Cost: 2 Time Theorems</button></td>
<td><button id="31" onclick="buyTimeStudy(31)">Powers up bonuses that are based on your infinitied stat (to the power of 4)<span>Cost: 3 Time Theorems</button></td>
<td><button id="32" onclick="buyTimeStudy(32)"><span id="32desc">You gain x1 more infinitied stat (based on dimension boosts)</span>Cost: 2 Time Theorems</button></td>
<td style="opacity: 0;"><button class="timestudylocked"></button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button id="41" onclick="buyTimeStudy(41)"></button></td>
<td><button id="42" onclick="buyTimeStudy(42)"></button></td>
</tr>
</table>
<br>
<table class="table" id="studytable">
<tr>
<td style="opacity: 0;"><button class="timestudylocked"></button></td>
<td><button id="51" onclick="buyTimeStudy(51)"><span id=51desc>You gain 1e15 times more IP</span>Cost: 3 Time Theorems</button></td>
<td><button class="eternitychallengestudy" id="ec5unl">Eternity Challenge 5<span>Requirement: 200 galaxies<span>Cost: 100 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td style="opacity: 0;"><button class="timestudylocked"></button></td>
<td><button id="61" onclick="buyTimeStudy(61)"></button></td>
<td><button id="62" onclick="buyTimeStudy(62)"></button></td>
</tr>
</table>
<br>
<table class="table" id="studytable">
<tr>
<td><button id="71" onclick="buyTimeStudy(71)">Sacrifice affects all other normal dimensions with reduced effect<span id="71desc">Currently: 1x</span>Cost: 4 Time Theorems</button></td>
<td><button id="72" onclick="buyTimeStudy(72)">Sacrifice affects 4th Infinity Dimension with greatly reduced effect<span id="72desc">Currently: 1x</span>Cost: 6 Time Theorems</button></td>
<td><button id="73" onclick="buyTimeStudy(73)">Sacrifice affects 3rd Time Dimension with greatly reduced effect<span id="73desc">Currently: 1x</span>Cost: 5 Time Theorems</button></td>
</tr>
<tr>
<td><button id="81" onclick="buyTimeStudy(81)"></button></td>
<td><button id="82" onclick="buyTimeStudy(82)">Dimensional boosts affect Infinity Dimensions<span id="82desc">Currently: 1x</span>Cost: 6 Time Theorems</button></td>
<td><button id="83" onclick="buyTimeStudy(83)">Dimensional boosts are 0.04% more effective for each tick upgrade gained from Time Dimensions<span>Cost: 5 Time Theorems</button></td>
</tr>
<tr>
<td><button id="91" onclick="buyTimeStudy(91)">Normal dimensions gain a multiplier based on time spent this eternity<span id="91desc">Currently: 1x</span>Cost: 4 Time Theorems</button></td>
<td><button id="92" onclick="buyTimeStudy(92)">Infinity dimensions gain a multiplier based on fastest eternity time<span id="92desc">Currently: 1x</span>Cost: 5 Time Theorems</button></td>
<td><button id="93" onclick="buyTimeStudy(93)">Time dimensions gain a multiplier based on tick upgrades gained<span id="93desc">Currently: 1x</span>Cost: 7 Time Theorems</button></td>
</tr>
<tr>
<td><button id="101" onclick="buyTimeStudy(101)">Replicantis give multiplier to normal dims equal to their amount.<span>Cost: 4 Time Theorems</button></td>
<td><button id="102" onclick="buyTimeStudy(102)">Replicanti galaxies power replicanti multiplier<span>Cost: 6 Time Theorems</button></td>
<td><button id="103" onclick="buyTimeStudy(103)">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><button class="eternitychallengestudy" id="ec7unl">Eternity Challenge 7<span>Requirement: 1e550,000 antimatter<span>Cost: 115 Time Theorems</button></td>
<td><button id="111" onclick="buyTimeStudy(111, 12)">Make the IP formula better<span>Cost: 12 Time Theorems</button></td>
<td style="opacity: 0;"><button class="timestudylocked"></button></td>
</tr>
</table>
<br>
<table class="table" id="studytable">
<tr>
<td><button id="121" onclick="buyTimeStudy(121)">The worse your average EP/min is, the more EP you get<span id="121desc">Currently: 1x</span>Cost: 9 Time Theorems</button></td>
<td><button id="122" onclick="buyTimeStudy(122)">You gain 35x more EP<span>Cost: 9 Time Theorems</button></td>
<td><button id="123" onclick="buyTimeStudy(123)">You gain more EP based on time spent this eternity<span id="123desc">Currently: 1x</span>Cost: 9 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="eternitychallengestudy" id="ec6unl">Eternity Challenge 6<span>Requirement: 40 replicanti galaxies<span>Cost: 100 Time Theorems</button></td>
<td><button id="131" onclick="buyTimeStudy(131)">Automatic replicanti galaxies are disabled, but you can get 50% more<span>Cost: 5 Time Theorems</button></td>
<td><button id="132" onclick="buyTimeStudy(132)">Replicanti galaxies are 40% more effective<span>Cost: 5 Time Theorems</button></td>
<td><button id="133" onclick="buyTimeStudy(133)">Replicanti are 10x slower until infinity, but their galaxies are 50% stronger<span>Cost: 5 Time Theorems</button></td>
<td><button class="eternitychallengestudy" id="ec8unl">Eternity Challenge 8<span>Cost: 100 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button id="141" onclick="buyTimeStudy(141)">Multiplier to IP, decaying over this infinity<span id="141desc">Currently 1x</span>Cost: 4 Time Theorems</button></td>
<td><button id="142" onclick="buyTimeStudy(142)"><span id="142desc">You gain 1e25x more IP</span>Cost: 4 Time Theorems</button></td>
<td><button id="143" onclick="buyTimeStudy(143)">Multiplier to IP, increasing over this infinity<span id="143desc">Currently 1x</span>Cost: 4 Time Theorems</button></td>
</tr>
</table>
<br>
<table class="table" id="studytable">
<tr>
<td style="opacity: 0;"><button class="timestudylocked"></button></td>
<td><button class="eternitychallengestudy" id="ec9unl">Eternity Challenge 9<span>Requirement: 1e6000 infinity power<span>Cost: 100 Time Theorems</button></td>
<td><button id="151" onclick="buyTimeStudy(151)"><span id="151desc">1e4x multiplier on all Time Dimensions</span>Cost: 8 Time Theorems</button></td>
<td style="opacity: 0;"><button class="timestudylocked"></button></td>
<td><button class="eternitychallengestudy" id="ec4unl">Eternity Challenge 4<span>Requirement: 100,000,000 infinities<span>Cost: 85 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button id="161" onclick="buyTimeStudy(161)"><span id="161desc">1e616x multiplier on all normal dimensions</span>Cost: 7 Time Theorems</button></td>
<td><button id="162" onclick="buyTimeStudy(162)"><span id="162desc">1e11x multiplier on all Infinity Dimensions</span>Cost: 7 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button id="171" onclick="buyTimeStudy(171)">Time shard requirement for the next tickspeed upgrade goes up slower<span>Cost: 15 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="eternitychallengestudy" id="ec1unl">Eternity Challenge 1<span>Requirement: 25,000 Eternities<span>Cost: 20 Time Theorems</button></td>
<td><button class="eternitychallengestudy" id="ec2unl" style="font-size: 10px;">Eternity Challenge 2<span>Requirement: 1,300 Time upgrades gained from time dimensions<span>Cost: 25 Time Theorems</button></td>
<td><button class="eternitychallengestudy" id="ec3unl"></button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button id="181" onclick="buyTimeStudy(181)">You gain 1% of your IP gained on crunch each second.<span>Cost: 200 Time Theorems</button></td>
</tr>
<tr>
<td><button class="eternitychallengestudy" id="ec10unl">Eternity Challenge 10<span>Requirement: 1e100 EP<span>Cost: 200 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button id="191" onclick="buyTimeStudy(191)">After eternity you permanently keep 5% of your infinities<span>Cost: 400 Time Theorems</button></td>
<td><button id="192" onclick="buyTimeStudy(192)" style="font-size: 10px;"><span id="192desc">You can get beyond 1.8e308 replicantis, but the interval is increased the more you have</span>Cost: 730 Time Theorems</button></td>
<td><button id="193" onclick="buyTimeStudy(193)">Normal dimension boost based on eternities<span id="193desc">Currently: 1x</span>Cost: 300 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button id="201" onclick="buyTimeStudy(201)">Pick another path from the first split<span>Cost: 900 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button id="211" onclick="buyTimeStudy(211)">Dimensional boost requirement scaling is reduced by 5<span>Cost: 120 Time Theorems</button></td>
<td><button id="212" onclick="buyTimeStudy(212)">Galaxies are more effective based on your timeshards<span id="212desc">Currently: 1x</span>Cost: 150 Time Theorems</button></td>
<td><button id="213" onclick="buyTimeStudy(213)">You gain replicanti 20 times faster<span>Cost: 200 Time Theorems</button></td>
<td><button id="214" onclick="buyTimeStudy(214)">Sacrifice boosts the 8th dimension even more.<span id="214desc">Currently: 1x</span>Cost: 120 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr class="wideRow">
<td><button id="221" onclick="buyTimeStudy(221)">Dimensional boosts affect time dimensions with reduced power.<span id="221desc"></span><span>Cost: 900 Time Theorems</button></td>
<td><button id="222" onclick="buyTimeStudy(222)">Dimensional boost costs scale by another 2 less.<span>Cost: 900 Time Theorems</button></td>
<td><button id="223" onclick="buyTimeStudy(223)">Galaxy cost scaling starts 7 galaxies later.<span>Cost: 900 Time Theorems</button></td>
<td><button id="224" onclick="buyTimeStudy(224)">Galaxy cost scaling starts 1 galaxy later for every 2000 dimensional boosts.<span>Cost: 900 Time Theorems</button></td>
<td><button id="225" onclick="buyTimeStudy(225)">You gain extra RGs based on how high above infinity your replicanti are.<span>Cost: 900 Time Theorems</button></td>
<td><button id="226" onclick="buyTimeStudy(226)">You gain extra RGs based on your max RGs.<span>Cost: 900 Time Theorems</button></td>
<td><button id="227" onclick="buyTimeStudy(227)">Sacrifice affects the 4th Time Dimension with reduced effect.<span id="227desc"></span><span>Cost: 900 Time Theorems</button></td>
<td><button id="228" onclick="buyTimeStudy(228)">Sacrifice scales better.<span>Cost: 900 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button id="231" onclick="buyTimeStudy(231)">Dimensional boosts are more effective based on their amount.<span id="231desc"></span><span>Cost: 500 Time Theorems</button></td>
<td><button id="232" onclick="buyTimeStudy(232)">Galaxies are more effective based on non-replicated galaxies.<span id="232desc"></span><span>Cost: 500 Time Theorems</button></td>
<td><button id="233" onclick="buyTimeStudy(233)">Max replicanti galaxy upgrade cost is reduced based on replicanti amount.<span>Cost: 500 Time Theorems</button></td>
<td><button id="234" onclick="buyTimeStudy(234)">Sacrifice boosts First Dimension.<span>Cost: 500 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="eternitychallengestudy" id="ec11unl">Eternity Challenge 11<span>Requirement: Use only the Normal Dimension path<span>Cost: 1 Time Theorem</button></td>
<td><button class="eternitychallengestudy" id="ec12unl">Eternity Challenge 12<span>Requirement: Use only the Infinity Dimension path<span>Cost: 1 Time Theorem</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudylocked" id="dilstudy1" onclick="buyDilationStudy(1, 5e3)">Unlock time dilation<span>Requirement: 5 Eternity Challenge 11 and 12 completions<span>Cost: 5000 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudylocked" id="dilstudy2" onclick="buyDilationStudy(2, 1e6)">Unlock the 5th Time Dimension<span>Cost: 1,000,000 Time Theorems</button></td>
<td><button class="timestudylocked" id="dilstudy3" onclick="buyDilationStudy(3, 1e7)">Unlock the 6th Time Dimension<span>Cost: 10,000,000 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudylocked" id="dilstudy4" onclick="buyDilationStudy(4, 1e8)">Unlock the 7th Time Dimension<span>Cost: 100,000,000 Time Theorems</button></td>
<td><button class="timestudylocked" id="dilstudy5" onclick="buyDilationStudy(5, 1e9)">Unlock the 8th Time Dimension<span>Cost: 1,000,000,000 Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudylocked" id="dilstudy6" onclick="buyDilationStudy(6, getMetaUnlCost())">Unlock Meta Dimensions<span>Cost: <span id="metaCost" style="display: inline;">1e24</span> Time Theorems</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="dilationupg" id="masteryportal" onclick="portal()"></button></td>
</tr>
</table>
<div style="height: 60px;"></div>
<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" onclick="giveAchievement('A sound financial decision')" target="_newtab">About </a> |
<a href="changelog/" target="_newtab">Changelog </a>
</div>
</td>
</tr>
</table>
</div>
</div>
<div class="eternitytab" id="ers_timestudies" style="font-size: 15px">
<button class="storebtn" onclick="exportStudyTree()" style="width:150px; height: 40px; font-size: 10px; margin: auto">Export spec</button>
<button class="storebtn" onclick="respecToggle()" id="respec2" style="width:150px; height: 40px; font-size: 10px; margin: auto">Respec time studies on next Eternity</button>
<button class="storebtn" onclick="importStudyTree()" style="width:150px; height: 40px; font-size: 10px; margin: auto">Import spec</button>
<p id="nextstudy" style="margin: 0 auto;"></p>
<table class="table" style="margin: 0 auto;">
<tr id="tsrow1">
<td>
<button id="ts1" class="eternityttbtn" onclick="buyTimeStudy(1)">Sacrifice is stronger (roughly 15% first time, total effect double-logarithmic in times bought)<br>Bought: <span id="ts1bought">x</span><br>Cost: <span id="ts1cost">x</span> TT<br>Total sacrifice multiplier<br><span id='ts1desc'></span></button>
</td>
<td>
<button id="ts2" class="eternityttbtn" onclick="buyTimeStudy(2)">You get 10% more tickspeed upgrades from time dimensions (not considering multiplier increase)<br>Bought: <span id="ts2bought">x</span><br>Cost: <span id="ts2cost">x</span> TT<br>Current tickspeed upgrades<br><span id='ts2desc'></span></button>
</td>
</tr>
</table>
<table class="table" style="margin: 0 auto;">
<tr id="tsrow2">
<td>
<button id="ts3" class="eternityttbtn" onclick="buyTimeStudy(3)">Replicanti multiplier to ID is 25% stronger<br>Bought: <span id="ts3bought">x</span><br>Cost: <span id="ts3cost">x</span> TT<br>Replicanti multiplier<br><span id='ts3desc'></span></button>
</td>
<td>
<button id="ts4" class="eternityttbtn" onclick="buyTimeStudy(4)">Dimension boost multiplier is incremented<br>Bought: <span id="ts4bought">x</span><br>Cost: <span id="ts4cost">x</span> TT<br>Multiplier per dimension boost<br><span id='ts4desc'></span></button>
</td>
</tr>
</table>
<table class="table" style="margin: 0 auto;">
<tr id="tsrow3">
<td>
<button id="ts5" class="eternityttbtn" onclick="buyTimeStudy(5)">Decreasing multiplier to IP (1e5 / seconds in infinity)<br>Bought: <span id="ts5bought">x</span><br>Cost: <span id="ts5cost">x</span> TT<br>Current IP multiplier<br><span id='ts5desc'></span></button>
</td>
<td>
<button id="ts6" class="eternityttbtn" onclick="buyTimeStudy(6)">Increasing multiplier to IP (seconds in infinity)<br>Bought: <span id="ts6bought">x</span><br>Cost: <span id="ts6cost">x</span> TT<br>Current IP multiplier<br><span id='ts6desc'></span></button>
</td>
</tr>
</table>
<div style="height: 60px;"></div>
<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" onclick="giveAchievement('A sound financial decision')" target="_newtab">About </a> |
<a href="changelog/" target="_newtab">Changelog </a>
</div>
</td>
</tr>
</table>
</div>
</div>
<div class="eternitytab" id="masterystudies" style="font-size: 15px">
<canvas id="studyTreeCanvas2"></canvas>
Mastery study cost multiplier: <text id='costmult'></text>x<br>
Total TT spent to mastery studies: <text id='totalspent'></text><br>
<tr>
<td><button class="storebtn" onclick="exportStudyTree()" style="width:150px; height: 40px; font-size: 10px; margin: auto">Export tree</button><td>
<td><button class="storebtn" onclick="respecToggle()" id="respec3" style="width:150px; height: 40px; font-size: 10px; margin: auto">Respec time studies on next Eternity</button><td>
<td><button class="storebtn" onclick="importStudyTree()" style="width:150px; height: 40px; font-size: 10px; margin: auto">Import tree</button><td>
</tr>
<button class="storebtn" onclick="respecMasteryToggle()" id="respecMastery2" style="width:150px; height: 40px; font-size: 10px; margin: auto">Respec mastery studies on next Eternity</button>
<button class="storebtn" onclick="fillAll()" id="fillAll2" style="width:150px; height: 40px; font-size: 10px; margin: auto">Buy all time studies</button>
<table class="table" id="studytable">
<tr>
<td><button class="dilationupg" id="back" onclick="portalBack()">Lead back to time studies.</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudylocked" id="timestudy241" onclick='buyMasteryStudy("t", 241)'>The IP mult multiplies IP gain by 2.2x per upgrade.</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudylocked" id="timestudy251" style='font-size:10px' onclick='buyMasteryStudy("t", 251)'>Remote cost scaling starts 1 galaxy later per 3,000 dimension boosts.<br><span id="ts251Current"></span></button></td>
<td><button class="timestudylocked" id="timestudy252" style='font-size:10px' onclick='buyMasteryStudy("t", 252)'>Remote cost scaling starts 1 galaxy later per 7 free galaxies.<br><span id="ts252Current"></span></button></td>
<td><button class="timestudylocked" id="timestudy253" style='font-size:10px' onclick='buyMasteryStudy("t", 253)'>Remote cost scaling starts 20 galaxies later per 9 extra replicated galaxies.<br><span id="ts253Current"></span></button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr class="wideRow">
<td><button class="timestudylocked" id="timestudy261" onclick='buyMasteryStudy("t", 261)'>Dimensional boost costs scale by another 1 less.</button></td>
<td><button class="timestudylocked" id="timestudy262" onclick='buyMasteryStudy("t", 262)'>Dimensional boosts affect Meta Dimensions at reduced rate.<br><span id="ts262Current"></span></button></td>
<td><button class="timestudylocked" id="timestudy263" onclick='buyMasteryStudy("t", 263)'>Meta-dimension boosts affect dilated time production.<br><span id="ts263Current"></span></button></td>
<td><button class="timestudylocked" id="timestudy264" onclick='buyMasteryStudy("t", 264)'>You gain more tachyon particles based on your galaxies.<br><span id="ts264Current"></span></button></td>
<td><button class="timestudylocked" id="timestudy265" onclick='buyMasteryStudy("t", 265)'>You can buy replicate chance upgrades over 100%.</button></td>
<td><button class="timestudylocked" id="timestudy266" onclick='buyMasteryStudy("t", 266)'>Post-400 max replicated galaxy cost scaling is reduced.</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="eternitychallengestudy" id="ec13unl" onclick='buyMasteryStudy("ec", 13)'>Eternity Challenge 13<span id="ec13Req"></span><span id="ec13Cost" style="display: block;"></span></button></td>
<td><button class="eternitychallengestudy" id="ec14unl" onclick='buyMasteryStudy("ec", 14)'>Eternity Challenge 14<span id="ec14Req"></span><span id="ec14Cost" style="display: block;"></span></button></td>
</tr>
</table>
<div id='quantumstudies'>
<table class="table" id="studytable">
<tr>
<td><button class="timestudylocked" id="dilstudy7" onclick='buyMasteryStudy("d", 7)'>Unlock Electrons</span><br><span id="ds7Cost"></span></button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudylocked" id="timestudy271" style='font-size:10px' onclick='buyMasteryStudy("t", 271)'>You can buy beyond 1ms interval upgrades but the cost starts to increase faster.</button></td>
<td><button class="timestudylocked" id="timestudy272" onclick='buyMasteryStudy("t", 272)'>Pick all paths on all 3-way splits in time studies.</button></td>
<td><button class="timestudylocked" id="timestudy273" onclick='buyMasteryStudy("t", 273)'>Replicate chance boosts itself.<br><span id="ts273Current"></span></button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudylocked" id="timestudy281" style='font-size:10px' onclick='buyMasteryStudy("t", 281)'>Replicanti multiplier boosts DT production at greatly reduced rate.<br><span id="ts281Current"></span></button></td>
<td><button class="timestudylocked" id="dilstudy8" onclick='buyMasteryStudy("d", 8)'>Unlock Quantum Challenges<br><span id="ds8Cost"></span><span id="ds8Req"></span></button></td>
<td><button class="timestudylocked" id="timestudy282" style='font-size:10px' onclick='buyMasteryStudy("t", 282)'>Replicanti multiplier boosts Meta Dimensions at greatly reduced rate.<br><span id="ts282Current"></span></button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudylocked" id="dilstudy9" onclick='buyMasteryStudy("d", 9)'>Unlock Paired Challenges<br><span id="ds9Cost"></span><span id="ds9Req"></span></button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudylocked" id="timestudy291" onclick='buyMasteryStudy("t", 291)'>You gain 1% of your EP gained on eternity each second.</button></td>
<td><button class="timestudylocked" id="timestudy292" onclick='buyMasteryStudy("t", 292)'>You can gain tachyon particles without disabling dilation.</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudylocked" id="timestudy301" style='font-size:10px' onclick='buyMasteryStudy("t", 301)'>Remote cost scaling starts 1 galaxy later per 4.15 extra replicated galaxies.<br><span id="ts301Current"></span></button></td>
<td><button class="timestudylocked" id="timestudy302" onclick='buyMasteryStudy("t", 302)'>Pick all time studies before mastery studies.</button></td>
<td><button class="timestudylocked" id="timestudy303" style='font-size:10px' onclick='buyMasteryStudy("t", 303)'>Meta Dimensions are stronger based on your galaxies.<br><span id="ts303Current"></span></button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudylocked" id="timestudy311" onclick='buyMasteryStudy("t", 311)'>Replicanti multiplier to Infinity Dimensions is 17.3x stronger.</button></td>
<td><button class="timestudylocked" id="dilstudy10" onclick='buyMasteryStudy("d", 10)'>Unlock Replicants<br><span id="ds10Cost"></span><span id="ds10Req"></span></button></td>
<td><button class="timestudylocked" id="timestudy312" onclick='buyMasteryStudy("t", 312)'>Meta-dimension boosts are 4.5% stronger and cost scale by 1 less.</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudylocked" id="timestudy321" onclick='buyMasteryStudy("t", 321)'>If the multiplier per ten normal dimensions is 1x, then change it to <span id='321effect'></span>x.</button></td>
<td style='width:368px; text-align: center'><button class="timestudylocked" id="timestudy322" style='font-size:10px' onclick='buyMasteryStudy("t", 322)'>Tickspeed boosts DT production at greatly reduced rate.<br><span id="ts322Current"></span></button></td>
<td><button class="timestudylocked" id="timestudy323" style='font-size:10px' onclick='buyMasteryStudy("t", 323)'>Cancel dilation penalty for Normal Dimensions boost from replicanti.</button></td>
</tr>
</table>
</div>
<div id="replicantsstudies">
<table class="table" id="studytable">
<tr>
<td><button class="timestudylocked" id="timestudy331" style='font-size:10px' onclick='buyMasteryStudy("t", 331)'>Dimension Supersonic scaling starts 340,000 later and increases cost slower by 3 less.</button></td>
<td><button class="timestudylocked" id="timestudy332" onclick='buyMasteryStudy("t", 332)'>You gain replicanti faster based on your normal galaxies.<br><span id="ts332Current"></span></button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudylocked" id="timestudy341" style='font-size:10px' onclick='buyMasteryStudy("t", 341)'>Preons boost DT production at reduced rate.<br><span id="ts341Current"></span></button></td>
<td><button class="timestudylocked" id="timestudy342" onclick='buyMasteryStudy("t", 342)'>All replicated galaxies are stronger and use the same formula.</button></td>
<td><button class="timestudylocked" id="timestudy343" onclick='buyMasteryStudy("t", 343)'>Free galaxies are as strong as a normal replicated galaxy.</button></td>
<td><button class="timestudylocked" id="timestudy344" style='font-size:10px' onclick='buyMasteryStudy("t", 344)'>Replicated galaxies are more effective based on your preons.<br><span id="ts344Current"></span></button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudylocked" id="timestudy351" onclick='buyMasteryStudy("t", 351)'>Time Shards boost all Meta Dimensions.<br><span id="ts351Current"></span></button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudylocked" id="timestudy361" style='font-size:10px' onclick='buyMasteryStudy("t", 361)'>Hatch speed is faster based on your tachyon particles.<br><span id="ts361Current"></span></button></td>
<td><button class="timestudylocked" id="dilstudy11" onclick='buyMasteryStudy("d", 11)'>Unlock Emperor Dimensions<br><span id="ds11Cost"></span><span id="ds11Req"></span></button></td>
<td><button class="timestudylocked" id="timestudy362" onclick='buyMasteryStudy("t", 362)'><span id="362desc"></span></button></td>
</tr>
</table>
</div>
<div id="empstudies">
<table class="table" id="studytable">
<tr>
<td><button class="timestudylocked" id="timestudy371" style='font-size:10px' onclick='buyMasteryStudy("t", 371)'>Hatch speed is faster based on your extra replicated galaxies.<br><span id="ts371Current"></span></button></td>
<td><button class="timestudylocked" id="timestudy372" style='font-size:10px' onclick='buyMasteryStudy("t", 372)'>Hatch speed is faster based on your time shards.<br><span id="ts372Current"></span></button></td>
<td><button class="timestudylocked" id="timestudy373" style='font-size:10px' onclick='buyMasteryStudy("t", 373)'>You get more preons based on your galaxies.<br><span id="ts373Current"></span></button></button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudylocked" id="timestudy381" style='font-size:10px' onclick='buyMasteryStudy("t", 381)'>Hatch speed is faster based on your tickspeed reduction multiplier.<br><span id="ts381Current"></span></button></td>
<td><button class="timestudylocked" id="timestudy382" onclick='buyMasteryStudy("t", 382)'>Eighth Dimensions boost Meta Dimensions.<br><span id="ts382Current"></span></button></td>
<td><button class="timestudylocked" id="timestudy383" onclick='buyMasteryStudy("t", 383)'>Blue power boosts Meta Dimensions.<br><span id="ts383Current"></span></button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudylocked" id="timestudy391" style='font-size:10px' onclick='buyMasteryStudy("t", 391)'>Hatch speed is faster based on your meta-antimatter.<br><span id="ts391Current"></span></button></td>
<td><button class="timestudylocked" id="timestudy392" onclick='buyMasteryStudy("t", 392)'>Preons boost all Emperor Dimensions.<br><span id="ts392Current"></span></button></td>
<td><button class="timestudylocked" id="timestudy393" onclick='buyMasteryStudy("t", 393)'>Workers boost Meta Dimensions.<br><span id="ts393Current"></span></button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudylocked" id="dilstudy12" onclick='buyMasteryStudy("d", 12)'>Unlock Nanofield<br><span id="ds12Cost"></span><span id="ds12Req"></span></button></td>
</tr>
</table>
</div>
<div id="nfstudies">
<table class="table" id="studytable">
<tr>
<td><button class="timestudylocked" id="timestudy401" style='font-size:10px' onclick='buyMasteryStudy("t", 401)'>The production of preon anti-energy is slower based on your preons.<br><span id="ts401Current"></span></button></td>
<td><button class="timestudylocked" id="timestudy402" onclick='buyMasteryStudy("t", 402)'>Emperor Dimensions and hatch speed are faster by 25x.</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudylocked" id="timestudy411" style='font-size:10px' onclick='buyMasteryStudy("t", 411)'>The production of preon energy is faster based on your replicants.<br><span id="ts411Current"></span></button></td>
<td><button class="timestudylocked" id="timestudy412" onclick='buyMasteryStudy("t", 412)'>Preon effect is 25% stronger.</button></td>
</tr>
</table>
<table class="table" id="studytable">
<tr>
<td><button class="timestudylocked" id="timestudy421" style='font-size:10px' onclick='buyMasteryStudy("t", 421)'>Tickspeed boosts preon energy production.<br><span id="ts421Current"></span></button></td>
<td><button class="timestudylocked" id="dilstudy13" onclick='buyMasteryStudy("d", 13)'>Unlock Tree of Decay<br><span id="ds13Cost"></span><span id="ds13Req"></span></button></td>
</tr>
</table>
</div>
<div id="todstudies">
<table class="table" id="studytable">
<tr>
<td><button class="timestudylocked" id="timestudy431" style='font-size:10px' onclick='buyMasteryStudy("t", 431)'>Branches are faster based on your free galaxies.<br><span id="ts431Current"></span></button></td>
<td><button class="timestudylocked" id="dilstudy14" onclick='buyMasteryStudy("d", 14)'>Unlock Big Rip<br><span id="ds14Cost"></span><span id="ds14Req"></span></button></td>
</tr>
</table>
</div>
<div style="height: 60px;"></div>
<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" onclick="giveAchievement('A sound financial decision')" target="_newtab">About </a> |
<a href="changelog/" target="_newtab">Changelog </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="eternityupbtn" 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="eternityupbtn" 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>
<tr id="eterrow2">
<td>
<button id="eter4" class="eternityupbtn" onclick="buyEternityUpgrade(4, 1e16)">Your achievement bonus affects Time Dimensions<br>Cost: 1e16 EP</button>
</td>
<td>
<button id="eter5" class="eternityupbtn" onclick="buyEternityUpgrade(5, 1e40)">Time Dimensions are multiplied by your unspent time theorems<br>Cost: 1e40 EP</button>
</td>
<td>
<button id="eter6" class="eternityupbtn" onclick="buyEternityUpgrade(6, 1e50)">Time Dimensions are multiplied by days played<br>Cost: 1e50 EP</button>
</td>
</tr>
<tr id="dilationeterupgrow">
<td>
<button id="eter7" class="eternityupbtn" onclick="buyEternityUpgrade(7, new Decimal('1e1500'))">Dilated time gain is boosted by antimatter<br>Currently: Xx<br>Cost: 1e1500 EP</button>
</td>
<td>
<button id="eter8" class="eternityupbtn" onclick="buyEternityUpgrade(8, new Decimal('1e2000'))">Dilated time gain is boosted by infinity points<br>Currently: Xx<br>Cost: 1e2000 EP</button>
</td>
<td>
<button id="eter9" class="eternityupbtn" onclick="buyEternityUpgrade(9, new Decimal('1e3000'))">Dilated time gain is boosted by eternity points<br>Currently: Xx<br>Cost: 1e3000 EP</button>
</td>
</tr>
<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><button class="storebtn" onclick="buyMaxEPMult()" style="height: 25px; width: 190px; font-size:10px; margin-top: -3px;">Max EP mult</button></div>
<div><button id="epmultauto" class="storebtn" onclick="toggleAutoEter('epmult')" style="height: 25px; width: 190px; font-size:10px; margin-top: 3px;"></button></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" onclick="giveAchievement('A sound financial decision')" target="_newtab">About </a> |
<a href="changelog/" target="_newtab">Changelog </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 class="milestoneText">2 Eternities:</td>
</tr>
<tr>
<td><button class="milestonerewardlocked" id="reward0">Unlock IP multiplier autobuyer</button></td>
<td><button class="milestonerewardlocked" id="reward1">You keep your autobuyers on Eternity</button></td>
</tr>
<tr>
<td class="milestoneText">3 Eternities:</td>
<td class="milestoneText">4 Eternities:</td>
</tr>
<tr>
<td><button class="milestonerewardlocked" id="reward2">Unlock replicanti galaxy autobuyer</button></td>
<td><button class="milestonerewardlocked" id="reward3">You keep your infinity upgrades on Eternity</button></td>
</tr>
<tr>
<td class="milestoneText">5 Eternities:</td>
<td class="milestoneText">7 Eternities:</td>
</tr>
<tr>
<td><button class="milestonerewardlocked" id="reward4" style="font-size: 12px">Unlock more big crunch autobuyer options.</button></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 class="milestoneText">10 Eternities:</td>
</tr>
<tr>
<td><button class="milestonerewardlocked" id="reward6">Unlock autobuy max galaxies</button></td>
<td><button class="milestonerewardlocked" id="reward7">Unlock autobuy max Dimensional Boosts</button></td>
</tr>
<tr>
<td class="milestoneText">11 Eternities:</td>
<td class="milestoneText">12 Eternities:</td>
</tr>
<tr>
<td><button class="milestonerewardlocked" id="reward8">Unlock autobuyer for First Infinity Dimension</button></td>
<td><button class="milestonerewardlocked" id="reward9">Unlock autobuyer for Second Infinity Dimension</button></td>
</tr>
<tr>
<td class="milestoneText">13 Eternities:</td>
<td class="milestoneText">14 Eternities:</td>
</tr>
<tr>
<td><button class="milestonerewardlocked" id="reward10">Unlock autobuyer for Third Infinity Dimension</button></td>
<td><button class="milestonerewardlocked" id="reward11">Unlock autobuyer for Fourth Infinity Dimension</button></td>
</tr>
<tr>
<td class="milestoneText">15 Eternities:</td>
<td class="milestoneText">16 Eternities:</td>
</tr>
<tr>
<td><button class="milestonerewardlocked" id="reward12">Unlock autobuyer for Fifth Infinity Dimension</button></td>
<td><button class="milestonerewardlocked" id="reward13">Unlock autobuyer for Sixth Infinity Dimension</button></td>
</tr>
<tr>
<td class="milestoneText">17 Eternities:</td>
<td class="milestoneText">18 Eternities:</td>
</tr>
<tr>
<td><button class="milestonerewardlocked" id="reward14">Unlock autobuyer for Seventh Infinity Dimension</button></td>
<td><button class="milestonerewardlocked" id="reward15">Unlock autobuyer for Eighth Infinity Dimension</button></td>
</tr>
<tr>
<td class="milestoneText">20 Eternities:</td>
<td class="milestoneText">25 Eternities:</td>
</tr>
<tr>
<td><button class="milestonerewardlocked" id="reward16">You keep your Breaking infinity upgrades on Eternity</button></td>
<td><button class="milestonerewardlocked" id="reward17">You automatically unlock Infinity Dimensions upon reaching them</button></td>
</tr>
<tr>
<td class="milestoneText">30 Eternities:</td>
<td class="milestoneText">40 Eternities:</td>
</tr>
<tr>
<td><button class="milestonerewardlocked" id="reward18">Start with all normal dimensions available for purchase</button></td>
<td><button class="milestonerewardlocked" id="reward19">Unlock autobuyer for replicanti chance upgrade</button></td>
</tr>
<tr>
<td class="milestoneText">50 Eternities:</td>
<td class="milestoneText">60 Eternities:</td>
</tr>
<tr>
<td><button class="milestonerewardlocked" id="reward20">You start with replicanti unlocked</button></td>
<td><button class="milestonerewardlocked" id="reward21">Unlock autobuyer for replicanti interval upgrade</button></td>
</tr>
<tr>
<td class="milestoneText">80 Eternities:</td>
<td class="milestoneText">100 Eternities:</td>
</tr>
<tr>
<td><button class="milestonerewardlocked" id="reward22">Unlock autobuyer for replicanti galaxy upgrade</button></td>
<td><button class="milestonerewardlocked" id="reward23">Unlock autobuyer for Eternities</button></td>
</tr>
<tr id='mdmilestonesrow1a'>
<td class="milestoneText" id='milestone24'></td>
<td class="milestoneText" id='milestone25'></td>
</tr>
<tr id='mdmilestonesrow1b'>
<td><button class="milestonerewardlocked" id="reward24">When you dimension boost, you keep your antimatter and dimensions</button></td>
<td><button class="milestonerewardlocked" id="reward25">Start eternities with 100% replicanti chance and 1 ms replicanti interval upgrades</button></td>
</tr>
<tr id='mdmilestonesrow2a'>
<td class="milestoneText" id='milestone26'></td>
<td class="milestoneText" id='milestone27'></td>
</tr>
<tr id='mdmilestonesrow2b'>
<td><button class="milestonerewardlocked" id="reward26">Unlock replicanti amount mode for eternity autobuyer</button></td>
<td><button class="milestonerewardlocked" id="reward27">Unlock time since peak changed mode for eternity autobuyer</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" onclick="giveAchievement('A sound financial decision')" target="_newtab">About </a> |
<a href="changelog/" target="_newtab">Changelog </a>
</div>
</td>
</tr>
</table>
</div>
</div>
<div class="eternitytab" id="dilation" style="font-size: 11px">
<canvas id="dilationCanvas"></canvas>
<div>
<p>You have <span id="tachyonParticleAmount" style="font-size:35px; color: black">0</span> tachyon particles.</p>
<p id="xdp">You have <span id="exDilationAmount" style="font-size:35px; color: black">0</span> ex-dilation, <span id="exDilationDesc"></span></p>
</div>
<p id='bestTP'></p>
<p id='bestTPOverGhostifies'></p>
<table>
<tr>
<td>
<button id="enabledilation" class="dilationbtn" onclick="startDilatedEternity()">Dilate time.</button>
</td>
<td id="reversedilationdiv" style='display:none'>
<button id="reversedilation" class="dilationbtn" style='font-size: 0.7rem' onclick="reverseDilation()"></button>
</td>
</tr>
</table>
<p>You have <span id="dilatedTimeAmount" style="font-size:35px; color: black">0</span> dilated time <span id="dilatedTimePerSecond" style="font-size:25px; color: black">0</span></p>
<p>Next <span id="freeGalaxyMult">free galaxy</span> at <span id="galaxyThreshold" style="font-size:25px; color: black">1000</span> dilated time, gained total of <span id="dilatedGalaxies" style="font-size:25px; color: black">0</span></p>
<button id="rebuyupgmax" style="width:210px; height: 30px; font-size: 12px" onclick="maxAllDilUpgs()" class="storebtn">Max all dilation upgrades</button>
<button id="rebuyupgauto" style="width:210px; height: 30px; font-size: 12px" onclick="toggleAutoEter('rebuyupg')" class="storebtn"></button>
<button id="dilUpgsauto" style="width:240px; height: 30px; font-size: 12px" onclick="toggleAutoEter('dilUpgs')" class="storebtn"></button>
<button id="distribEx" style="width:180px; height: 30px; font-size: 12px" onclick="distribEx()" class="storebtn">Distribute ex-dilation</button>
<table>
<tr>
<td>
<button id="dil1" onclick="buyDilationUpgrade(1)">Double the dilated time production.<br><span id="dil1cost">Cost: 1e5 dilated time</span></button>
</td>
<td>
<button id="dil2" onclick="buyDilationUpgrade(2)">Decrease the galaxy threshold multiplier, but resets free galaxies and dilated time.<br><span id="dil2cost">Cost: 1e6 dilated time</span></button>
</td>
<td>
<button id="dil3" onclick="buyDilationUpgrade(3)"><span id="dil3desc"></span><br><span id="dil3cost">Cost: 1e7 dilated time</span></button>
</td>
<td id="n1">
<button id="dil11" onclick="buyDilationUpgrade(11)"><span id="dil11effect"></span><br><span id="dil11cost">Cost: 1e8 dilated time</span></button>
</td>
</tr>
<tr id="xdrow">
<td>
<button id="xd1" style="height: 50px;" onclick="boostDilationUpgrade(1)">Boost the upgrade above with ex-dilation<br><span id="xd1span">1x -> 1.5x</span></button>
</td>
<td>
<button id="xd2" style="height: 50px;" onclick="boostDilationUpgrade(2)">Boost the upgrade above with ex-dilation<br><span id="xd2span">1x -> 1.5x</span></button>
</td>
<td>
<button id="xd3" style="height: 50px;" onclick="boostDilationUpgrade(3)">Boost the upgrade above with ex-dilation<br><span id="xd3span">1x -> 1.5x</span></button>
</td>
<td>
<button id="xd4" style="height: 50px;" onclick="boostDilationUpgrade(4)">Boost the upgrade above with ex-dilation<br><span id="xd4span">1x -> 1.5x</span></button>
</td>
</tr>
<tr>
<td>
<button id="dil4" onclick="buyDilationUpgrade(4)">Gain twice as many free galaxies.<br><span id="dil4cost">Cost: 5e6 dilated time</span></button>
</td>
<td>
<button id="dil5" onclick="buyDilationUpgrade(5)">Time Dimensions are affected by replicanti multiplier ^ 0.1.<br><span id="dil5cost">Cost: 1e9 dilated time</span></button>
</td>
<td>
<button id="dil6" onclick="buyDilationUpgrade(6)">Normal dimensions gain a multiplier based on dilated time, unaffected by time dilation.<br><span id="dil6cost">Cost: 5e7 dilated time</span></button>
</td>
<td id="n2">
<button id="dil12" onclick="buyDilationUpgrade(12)">Replicanti increases faster based on dilated time.<br><span id="dil12cost">Cost: 1e20 dilated time</span></button>
</td>
</tr>
<tr>
<td>
<button id="dil7" onclick="buyDilationUpgrade(7)">Gain a multiplier to IP based on dilated time.<br><span id="dil7desc"></span><br><span id="dil7cost"></span></button>
</td>
<td>
<button id="dil8" onclick="buyDilationUpgrade(8)">Pick all the study paths from the first split.<br><span id="dil8cost"></span></button>
</td>
<td>
<button id="dil9" onclick="buyDilationUpgrade(9)">Reduce the dilation penalty. (^ 1.05 after reduction)<br><span id="dil9cost"></span></button>
</td>
<td id="n3">
<button id="dil13" onclick="buyDilationUpgrade(13)">Eternities and dilated time power up each other.<br><span id="dil13cost"></span></button>
</td>
</tr>
<tr id="mddilupg">
<td>
<button id="dil14" onclick="buyDilationUpgrade(14)" style='font-size:10px'>Gain a multiplier to meta-dimensions based on tickspeed.<br>(1+log(1+log(x)))<br><span id="dil14desc"></span><br><span id="dil14cost"></span></button>
</td>
<td>
<button id="dil15" onclick="buyDilationUpgrade(15)" style='font-size:10px'>Meta-dimension shifts, boosts, and per-ten upgrades are boosted by dilated time.<span id="dil15formula"> (log(log(x))+1)</span><br><span id="dil15desc"></span><br><span id="dil15cost"></span></button>
</td>
<td>
<button id="dil16" onclick="buyDilationUpgrade(16)">Meta-antimatter effect on dimension boosts is stronger.<br>(8x -> 9x)<br><span id="dil16cost"></span></button>
</td>
<td>
<button id="dil17" onclick="buyDilationUpgrade(17)" style='font-size:10px'>Dilated time production is boosted based on best meta-antimatter.<br><span id="dil17formula"></span><br><span id="dil17desc"></span><br><span id="dil17cost"></span></button>
</td>
</tr>
</table>
<table>
<tr>
<td>
<button class="timestudy" id="dil10" onclick="buyDilationUpgrade(10)">Generate time theorems based on tachyon particles.<br><span id="dil10desc"></span><br><span id="dil10cost"></span></button>
</td>
<td id="n4">
<button class="timestudy" id="dil18" onclick="buyDilationUpgrade(18)">Gain 5% more Tachyon particles for each <span id="dil18oom"></span>x replicanti.<br><span id="dil18desc"></span><br><span id="dil18cost"></span></button>
</td>
<td id="n5">
<button class="timestudy" id="dil19" onclick="buyDilationUpgrade(19)">Eternities and dilated time boost each other by ^0.1.<br><span id="dil19cost"></span></button>
</td>
<td id="n6">
<button class="timestudy" id="dil20" onclick="buyDilationUpgrade(20)">Boost the ex-dilation gain.<br><span id="dil20cost"></span></button>
</td>
<td id="n7">
<button class="timestudy" id="dil21" onclick="buyDilationUpgrade(21)" style='font-size:10px'>Buff the black hole upgrade effect based on your Eternity points.<br><span id="dil21desc"></span><br><span id="dil21cost"></span></button>
</td>
</tr>
</table>
<table id="n8">
<tr>
<td>
<button class="timestudy" id="dil22" onclick="buyDilationUpgrade(22)" style='font-size:10px'>You gain more dilated time based on your meta-antimatter.<br><span id="dil22desc"></span><br><span id="dil22cost"></span></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" onclick="giveAchievement('A sound financial decision')" target="_newtab">About </a> |
<a href="changelog/" target="_newtab">Changelog </a>
</div>
</td>
</tr>
</table>
</div>
</div>
<div class="eternitytab" id="breakEternity" style="font-size: 11px">
<div id="breakEternityReq"></div>
<div id="breakEternityNoBigRip">Break Eternity only works if you big rip the universe again.</div>
<div id="breakEternityShop">
You have <span id="eternalMatter" style="font-size:35px"></span> Eternal Matter.<br>
<table class="table" style="margin: 0 auto">
<tr>
<td></td>
<td>
<button id="breakEternityBtn" class="eternityupbtn" onclick="breakEternity()" ach-tooltip="Remove the disabilities of normal galaxies and Time Dimensions, but all TD boosts do not work except TS11, TS181, and 'Infinite Time' reward. You can gain Eternal Matter (based on your Time Shards) by Eternitying. Normal tickspeed upgrades do nothing if you are not in EC10. Normal galaxies don’t get cancelled, but its costs are way higher.">BREAK ETERNITY</button>
</td>
<td></td>
</tr>
<tr>
<td>
<button id="breakUpg1" class="eternityupbtnlocked" onclick="buyBreakUpg(1)">Boost first 4 Time Dimensions based on your Eternity Points and Eternal Matter.<br>Currently: <span id="breakUpg1Mult">1.0</span>x<br>Cost: <span id="breakUpg1Cost"></span> Eternal Matter</button>
</td>
<td>
<button id="breakUpg2" class="eternityupbtnlocked" onclick="buyBreakUpg(2)">Divide the normal galaxy cost based on your Eternity Points.<br>Currently: <span id="breakUpg2Mult">1.0</span>x<br>Cost: <span id="breakUpg2Cost"></span> Eternal Matter</button>
</td>
<td>
<button id="breakUpg3" class="eternityupbtnlocked" onclick="buyBreakUpg(3)">You gain more Space Shards based on your Eternity Points.<br>Currently: <span id="breakUpg3Mult">1.0</span>x<br>Cost: <span id="breakUpg3Cost"></span> Eternal Matter</button>
</td>
</tr>
<tr>
<td>
<button id="breakUpg4" class="eternityupbtnlocked" onclick="buyBreakUpg(4)">Boost Time Dimensions 4 - 6 based on your Eternity Points and Space Shards.<br>Currently: <span id="breakUpg4Mult">1.0</span>x<br>Cost: <span id="breakUpg4Cost"></span> Eternal Matter</button>
</td>
<td>
<button id="breakUpg5" class="eternityupbtnlocked" onclick="buyBreakUpg(5)">Boost tickspeed reduction based on your Eternity Points and Time Shards.<br>Currently: <span id="breakUpg5Mult">1.0</span>x<br>Cost: <span id="breakUpg5Cost"></span> Eternal Matter</button>
</td>
<td>
<button id="breakUpg6" class="eternityupbtnlocked" onclick="buyBreakUpg(6)">You gain more Space Shards based on your Eternity Points and Eternal Matter.<br>Currently: <span id="breakUpg6Mult">1.0</span>x<br>Cost: <span id="breakUpg6Cost"></span> Eternal Matter</button>
</td>
</tr>
<tr id="breakUpgR3">
<td>
<button id="breakUpg8" class="eternityupbtnlocked" onclick="buyBreakUpg(8)">Infinite Time reward is stronger in non-Dilation runs based on your Tachyon Particles.<br>Currently: <span id="breakUpg8Mult">???</span>%<br>Cost: <span id="breakUpg8Cost"></span> Eternal Matter</button>
</td>
<td>
<button id="breakUpg9" class="eternityupbtnlocked" onclick="buyBreakUpg(9)">Divide normal galaxy cost in Eternity Challenge 10 based on your Eternal Matter.<br>Currently: /<span id="breakUpg9Mult">???</span><br>Cost: <span id="breakUpg9Cost"></span> Eternal Matter</button>
</td>
<td>
<button id="breakUpg10" class="eternityupbtnlocked" onclick="buyBreakUpg(10)">Eternity Points multiply normal galaxy amount in "Intergalactic" in Dilation runs.<br>Currently: <span id="breakUpg10Mult">???</span>x<br>Cost: <span id="breakUpg10Cost"></span> Eternal Matter</button>
</td>
</tr>
<tr id="breakUpgRS">
<td>
<button class="eternityupbtn" onclick="eternity()">Eternal Matter: <span id="eterShortcutEM"></span><br>Start a normal Eternity run.</button>
</td>
<td>