-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
96 lines (74 loc) · 4 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="/images/hat.png"/>
<title>Oťancoin Clicker</title>
</head>
<body id="body">
<div id="stocks">
<p style="border-bottom: white solid 3px; font-size: xx-large;">Welcome to Stonks</p>
<div id="coinPrice">Oťancoin is currently valued at: <span class="dollarValueThing">[number]</span> $.</div>
<div>
<div id="myCoinPrice">You have <span class="coinCounter">[number]</span>, you can sell them all for <span id="dollarValueForAll">[number]</span> $.</div>
<input style="color: black" type="button" value="Sell All" id="sellAllButton">
</div>
<div>
<div id="customCoinPrice">Or you can sell <span id="coinInput">0</span> coins for <span id="dollarInput">0</span> $</div>
<input type="number" style="color: black" id="sellInput"> <input type="button" style="color: black" value="Sell" id="sellInputButton">
</div>
<div>You can close this menu by clicking on the button again.</div>
</div>
<div id="shop">
<div style="border-bottom: white solid 3px; font-size: xx-large;">Welcome to Le Grafiko Storo</div>
<div id="storeThings">
</div>
<div>You can close this menu by clicking on the button again.</div>
</div>
<div id="market">
<div style="border-bottom: white solid 3px; font-size: xx-large;">Welcome to the Black Market</div>
<div id="marketThings">
</div>
<div>You can close this menu by clicking on the button again.</div>
</div>
<div id="settings">
<div style="border-bottom: white solid 3px; font-size: xx-large;">Settings</div>
<img src="images/title lmao.png">
<div>Total coins made: <span id="coinCounterTotal">[number]</span>. (<span id="coinCounterAscention">[number]</span> this ascention)</div>
<div>Total $ made: <span id="dollarCounterTotal">[number]</span>. (<span id="dollarCounterAscention">[number]</span> this ascention)</div>
<div>Current CPS: <span class="CPScounter">[number]</span>. (<span id="ascentionBoost">[number]</span>x ascention boost)</div>
<div>Ascended <span id="ascentionCounter">[number]</span> times.</div>
<div style="margin-top: 5%;">Is something bugged? Reset your progress: <button id="resetButton" style="color:black">Click to reset progress.</button></div>
<div>You can close this menu by clicking on the button again.</div>
</div>
<img id="title" src="images/title lmao.png" draggable="false">
<div id="counter">
<div class="stat" id="dollarCounter">
0 $
</div>
<div class="stat coinCounter" style="width: 34%;">
0 coins
</div>
<div class="stat CPScounter">
0 CPS
</div>
</div>
<div id="promptSave">
Game saved.
</div>
<div id="promptLoad">
Game loaded.
</div>
<img id="hatclicker" src="images/hat.png" draggable="false">
<div id="bottomMenu">
<img id="stocksButton" class="bottomMenuButton" src="images/stonks.png" draggable="false">
<img id="shopButton" class="bottomMenuButton" src="images/shop.png" draggable="false">
<img id="marketButton" class="bottomMenuButton" src="images/market.png" draggable="false">
<img id="settingsButton" class="bottomMenuButton" src="images/settings.png" draggable="false">
</div>
<script type="module" src="js/main.js"></script>
<script type="text/javascript" src="things.json"></script>
<script type="module" src="js/js.cookie.mjs"></script>
</body>
</html>