-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.html
62 lines (57 loc) · 1.83 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
<link rel="stylesheet" href="./Css/game.css" />
<script src="./js/gameLogic/game.js" type="module"></script>
</head>
<body>
<div id="game">
<div id="inv-btn" class="inv-buttons">III</div>
<div id="menu-card">
<div class="row">
<div id="close-btn" class="inv-buttons">X</div>
<h1>Inventory</h1>
</div>
<div id="placements">
<p id="statlvl"></p>
<p id="gold-el">gold: 0</p>
<p id="xp-el">XP 0/0</p>
</div>
<div id="inventory"></div>
<h1>Stats</h1>
<div id="stats-el">
<div id="player-health"><p></p></div>
<div id="player-damage"><p></p></div>
<div id="player-healing"><p></p></div>
</div>
</div>
<button id="forth">venture forth</button>
<progress id="enemy-bar" max="" value=""></progress>
<div id="enemy">
<img src="" alt="" id="enemy-img" />
</div>
<div id="boss-fight2">Start mini boss</div>
<div id="boss-fight">Start Boss</div>
<div id="debug-menu">
<button id="godmode">GodMode</button>
<button id="instant-kill">Instant kill</button>
</div>
<div id="actions">
<div class="column">
<div>
<progress id="health-bar" max="100" value="100"></progress>
<p id="bar-health"></p>
</div>
<div class="row">
<div class="action-btn" id="attack"><p>Attack</p></div>
<div class="action-btn" id="run"><p>Run</p></div>
<div class="action-btn" id="heal"><p>Heal</p></div>
</div>
</div>
</div>
</div>
</body>
</html>