-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (38 loc) · 2.08 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
<!DOCTYPE html>
<html>
<head>
<title>Rocky Paper Survivors - HyperGamesDev</title>
<link rel="icon" href="src/img/iconV2.png">
<link rel="stylesheet" href="style.css">
<meta charset="utf-8">
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="main.js" defer></script>
<script src="assets.js"></script>
</head>
<body>
<div id="mainMenuCont">
<div id="logoCont">
<img src="src/img/iconV2.png" id="logo"></img><br>
<h3 id="title">Rocky Paper Survivors -<br>
<a href="https://hypergamesdev.github.io" target="_blank"> by HyperGamesDev</a></h3><br>
</div><br>
<h2>Main Menu / Options</h2>
<table id="optionsTable"><form>
<!--GameSpeed: <input type="range" id="gameSpeed-Input" value="1" min="1" max="99" onInput="this.nextElementSibling.value = this.value"></input><output>1</output><br>!-->
Craft Multiplier <span class="coloredDownText">[1]</span>: <input type="range" id="craftMult-Input" value="1" min="1" max="10" onInput="this.nextElementSibling.value = this.value"></input><output>1</output><br>
Drop Multiplier <span class="coloredDownText">[2]</span>: <input type="range" id="dropMult-Input" value="2" min="1" max="10" onInput="this.nextElementSibling.value = this.value"></input><output>2</output><br>
Start Item Count <span class="coloredDownText">[3]</span>: <input type="number" id="startItemCount-Input" value="3" min="1" max="999"></input><br>
CPU Complexity <span class="coloredDownText">[3]</span>: <select type="checkbox" id="cpuComplexity-List">
<option value="0">0 - Random</option>
<option value="1">1 - Basic</option>
<option value="2">2 - More advanced countering</option>
<option value="3" selected>3 - Full AI</option>
</select><br>
Discover All Items: <input type="checkbox" id="discoverAllItems-Checkbox"></input><br>
Unlock All Recipes: <input type="checkbox" id="unlockAllRecipes-Checkbox"></input><br>
Cheat All Items: <input type="checkbox" id="cheatAllItems-Checkbox"></input><br>
<br><input type="button" onClick="StartGame()" value="Start" id="startGameButton"></input><br>
</form></table>
</div>
</body>
</html>