-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.html
48 lines (47 loc) · 1.68 KB
/
game.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
<!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="enemyAI.js" defer></script>
<script src="items.js" defer></script>
<script src="assets.js" defer></script>
</head>
<body>
<div id="mainCont">
<div id="logoCont">
<a href="index.html" onClick="PageRedirect('index.html')"><img src="src/img/iconV2.png" id="logo"></img><br></a>
<h3 id="title">Rocky Paper Survivors -<br>
<a href="https://hypergamesdev.github.io" target="_blank"> by HyperGamesDev</a></h3><br>
</div><br>
<table id="choicesTable"><tr>
<td id="choice-r"><button class="tdButton" id="move1">Rock</button></td>
<td id="choice-p"><button class="tdButton" id="move2">Paper</button></td>
<td id="choice-s"><button class="tdButton" id="move3">Scissors</button></td>
</tr></table>
<div id="outcomeData">
<table id='movesTable'><tr>
<td id='mMovePlayer'></td>
<td id='mVSicon'></td>
<td id='mMoveCPU'></td>
</tr></table>
<table id='mWinsLosses'><tr>
<td id='mPlayer'><div id='mWinPlayer_IMG'></div><span id='mWinsPlayer'></span></td>
<td id='mDraw'><span id='mDraws'></span><div id='mDraws_IMG'></div></td>
<td id='mCPU'><div id='mWinCPU_IMG'></div><span id='mWinsCPU'></span></td>
</tr></table>
</div>
<div id="itemsTablesContainer">
<div id="itemsTable"><h4>Materials</h4></div>
<div id="craftingContainer">
<div id="stationsTable"><h4>Stations / Tools</h4></div>
<div id="craftablesTable"></div>
</div>
</div>
</div>
</body>
</html>