-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
64 lines (60 loc) · 2.75 KB
/
main.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Gacha-Game V0.1.1</title>
<meta charset="utf-8">
<meta name="viewport" content="minimal-ui, width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="assets/icon.png">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="gameContainer" class="main">
<div id="big">
<noscript>
<h2>Where js go???</h2>
<h3>it not here...</h3>
<h3>pls js or no game:(</h3>
<p>
<strong>Objective:</strong><br>
• Enable Javascript <br>
• Reload the site <br>
<strong>Controls:</strong><br>
• click around <br>
<strong>Bugs:</strong><br>
• Game requires javascript to run<br>
</p>
</noscript>
<script>
document.getElementById('big').innerHTML += `<button onclick="startGame()"><h3>Start Game</h3></button><br>
<button onclick="clearData()"><h3>Clear Data</h3></button><br>
<button onclick="forceMobile()"><h3>Force Mobile Version</h3></button><br>
<button onclick="forceDesktop()"><h3>Force Desktop Version</h3></button><br>
<button onclick="altMobile()"><h3>Mobile version not working properly? Try this</h3></button><br>
<p>
<strong>Objective:</strong><br>
• Pull good characters <br>
• Battle enemies and win <br>
• Waste your life savings <br>
• Conquer all the dungeons <br>
• Defeat the final boss <br>
<strong>Controls:</strong><br>
• click around <br>
• keybinds? never heard of them! <br>
<strong>Bugs:</strong><br>
• microtransactions are currently not supported :( I want money.<br>
• Dungeon completed / failed / retreated text is still a placeholder.<br>
• Items still do not drop from enemies. (not implemented)<br>
• Enemy AI is stupid. Really shows for support type enemies.<br>
• Pulls is missing many animations and has some placeholders (will fix later).<br>
• Mobile is no longer supported very well...<br>
<strong>Latest Update:</strong><br>
• Missing assets have been fixed<br>
• If they don't show up or something breaks, clear data then try again.<br>
</p>`;
</script>
</div>
</div>
<div id="data">
</div>
</body>
<script type="module" src="game.js"></script>