1+ const XPButtonUnlockLevels = [ 0 , 2 , 3 , 6 , 10 , 15 , 20 , 30 , 40 , 60 , 90 , 150 , 200 , 300 , 400 , Infinity ] ;
2+ const XPButtonGains = [ 10 , 20 , 40 , 75 , 150 , 250 , 400 , 750 , 1200 , 1800 , 2400 , 4000 , 6000 , 9000 , 11500 ] ;
3+ const XPButtonCooldowns = [ 10 , 30 , 60 , 120 , 300 , 600 , 1200 , 2400 , 3600 , 5400 , 7200 , 14400 , 21600 , 32400 , 43200 , Infinity ] ;
4+ const XPButtonColors = [ "#00ffff" , "#0080ff" , "#0000ff" , "#8000ff" , "#ff00ff" , "#ff0080" , "#ff0000" , "#ff8000" , "#ffff00" , "#80ff00" , "#00ff00" , "#00ff80" ] ;
5+
6+ const chestButtonUnlockLevels = [ 0 , 3 , 5 , 10 , 20 , 50 , 100 , 200 , 300 , 500 , 750 , 1000 , 1500 , 2000 , 2500 , 3000 , 4000 , 5000 , 7500 , 10000 , Infinity ] ;
7+ const chestButtonCooldowns = [ 300 , 600 , 900 , 1200 , 1800 , 2700 , 3600 , 5400 , 5400 , 5400 , 5400 , 5400 , 5400 , 5400 , 5400 , 5400 , 5400 , 5400 , 5400 , 5400 ] ;
8+ const rarityColors = [ "#bbb" , "#0e0" , "#02f" , "#c3f" , "#fb0" , "#f00" , "#6cf" , "#306" , "#0a8" , "#222" , "#a08" , "#f88" , "#070" , "#f80" , "#0ff" , "#fff" , "#afa" , "#00f" , "#987" , "#b00" ] ;
9+ const rarityNames = [ "common" , "uncommon" , "rare" , "epic" , "legendary" , "mythical" , "celestial" , "void" , "life" , "infinite" , "eternal" , "rainbow" , "verdant" , "inferno" , "frutiger" , "anti" , "mint" , "vaporwave" , "dust" , "finality" ] ;
10+ const rarityChances = [ 524288 , 262144 , 131072 , 65536 , 32768 , 16384 , 8192 , 4096 , 2048 , 1024 , 512 , 256 , 128 , 64 , 32 , 16 , 8 , 4 , 2 , 1 ] ;
11+ /*
12+ const rarityChances = [
13+ [192,64, 32, 16, 8, 4, 2, 1], //Common chest
14+ [112,128,64, 24, 12, 6, 3, 1], //Uncommon chest
15+ [64, 128,96, 48, 16, 8, 4, 2], //Rare chest
16+ [48, 96, 128,72, 40, 16, 8, 4], //Epic chest
17+ [32, 64, 96, 128,80, 40, 16, 8], //Legendary chest
18+ [24, 48, 80, 112,112,72, 24, 12], //Mythical chest
19+ [16, 32, 64, 96, 128,96, 48, 16], //Celestial chest
20+ [8, 16, 32, 64, 96, 112,96, 48], //Void chest
21+ ]*/
22+ const potionNames = [ "tiny" , "basic" , "round" , "triangular" , "wide" , "rotund" , "large" , "tall round" , "tall triangular" , "tall wide" , "bulbous" , "massive" ] ;
23+ const potionChances = [ 15 , 12 , 9 , 7 , 5.5 , 4 , 3 , 2.5 , 2 , 1.5 , 1.2 , 1 ] ;
24+ const potionXPGains = [ 0 , 0.02 , 0.04 , 0.06 , 0.08 , 0.1 , 0.12 , 0.14 , 0.16 , 0.18 , 0.2 , 0.22 , 0.5 ] ;
25+ const potionRarityXPMultipliers = [ 1 , 1.5 , 2 , 2.5 , 3 , 3.5 , 4 , 5 , 6.5 , 8 , 10 , 15 , 20 , 30 , 40 , 50 , 75 , 100 , 150 , 200 ] ;
26+
27+ const romanNumerals = [
28+ [ "M" , 1000 ] ,
29+ [ "CM" , 900 ] ,
30+ [ "D" , 500 ] ,
31+ [ "CD" , 400 ] ,
32+ [ "C" , 100 ] ,
33+ [ "XC" , 90 ] ,
34+ [ "L" , 50 ] ,
35+ [ "XL" , 40 ] ,
36+ [ "X" , 10 ] ,
37+ [ "IX" , 9 ] ,
38+ [ "V" , 5 ] ,
39+ [ "IV" , 4 ] ,
40+ [ "I" , 1 ]
41+ ] ;
42+
43+ const ranks = [
44+ [ 1 , "Beginner" ] ,
45+ [ 2 , "Basic" ] ,
46+ [ 3 , "Unremarkable" ] ,
47+ [ 4 , "Mediocre" ] ,
48+ [ 5 , "Average" ] ,
49+ [ 6 , "Competent" ] ,
50+ [ 8 , "Respectable" ] ,
51+ [ 10 , "Proficient" ] ,
52+ [ 12 , "Skilled" ] ,
53+ [ 14 , "Talented" ] ,
54+ [ 16 , "Expert" ] ,
55+ [ 18 , "Exceptional" ] ,
56+ [ 20 , "Brilliant" ] ,
57+ [ 25 , "Master" ] ,
58+ [ 30 , "Extraordinary" ] ,
59+ [ 35 , "Renowned" ] ,
60+ [ 40 , "Unmatched" ] ,
61+ [ 45 , "Superior" ] ,
62+ [ 50 , "Legendary" ] ,
63+ [ 60 , "Mythical" ] ,
64+ [ 70 , "Extreme" ] ,
65+ [ 80 , "Insane" ] ,
66+ [ 90 , "Supreme" ] ,
67+ [ 100 , "Immortal" ] ,
68+ [ 120 , "Celestial" ] ,
69+ [ 140 , "Galactic" ] ,
70+ [ 160 , "Godly" ] ,
71+ [ 180 , "Transcendent" ] ,
72+ [ 200 , "Cosmic" ] ,
73+ [ 220 , "Demonic" ] ,
74+ [ 240 , "Eternal" ] ,
75+ [ 260 , "Voidborn" ] ,
76+ [ 280 , "Universal" ] ,
77+ [ 300 , "Multiversal" ] ,
78+ [ 350 , "Omniversal" ] ,
79+ [ 400 , "Omnipotent" ] ,
80+ [ 450 , "Incomprehensible" ] ,
81+ [ 500 , "Infinite" ] ,
82+ [ 550 , "Infinite+" ] ,
83+ [ 600 , "Infinite++" ] ,
84+ [ 650 , "Infinite+++" ] ,
85+ [ 700 , "Infinite++++" ] ,
86+ [ 750 , "Infinite+++++" ] ,
87+ [ 800 , "Mega" ] ,
88+ [ 850 , "Mega+" ] ,
89+ [ 900 , "Mega++" ] ,
90+ [ 950 , "Mega+++" ] ,
91+ [ 1000 , "Mega++++" ] ,
92+ [ 1050 , "Mega+++++" ] ,
93+ [ 1100 , "Giga" ] ,
94+ [ 1150 , "Giga+" ] ,
95+ [ 1200 , "Giga++" ] ,
96+ [ 1250 , "Giga+++" ] ,
97+ [ 1300 , "Giga++++" ] ,
98+ [ 1350 , "Giga+++++" ] ,
99+ [ 1400 , "Tera" ] ,
100+ [ 1450 , "Tera+" ] ,
101+ [ 1500 , "Tera++" ] ,
102+ [ 1550 , "Tera+++" ] ,
103+ [ 1600 , "Tera++++" ] ,
104+ [ 1650 , "Tera+++++" ] ,
105+ [ 1700 , "Peta" ] ,
106+ [ 1750 , "Peta+" ] ,
107+ [ 1800 , "Peta++" ] ,
108+ [ 1850 , "Peta+++" ] ,
109+ [ 1900 , "Peta++++" ] ,
110+ [ 1950 , "Peta+++++" ] ,
111+ [ 2000 , "Omega" ] ,
112+ [ Infinity , "Error" ] ,
113+ ]
0 commit comments