forked from PabloMikes/Projekt-na-grafice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
131 lines (131 loc) · 4.68 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Koral's Quest</title>
<link rel="stylesheet" href="./res/css/style.css" />
<link rel="icon" type="image/x-icon" href="./res/img/favicon.ico" />
</head>
<body>
<div id="gameMenu">
<button id="play">Play!</button>
<button id="tutorial">What should i do?</button>
</div>
<div id="saveObal">
<img id="saveMenu" src="./res/img/menu.png" alt="" />
<div id="saveObalObal">
<div id="resume">Resume</div>
<div id="unsave">TRUE RESET</div>
<div id="quit">Quit</div>
</div>
</div>
<div id="mainObal">
<div id="mainMenu">
<div id="menu">Battle!</div>
<button id="music">🔇</button>
<button id="mutedMusic">🔊</button>
</div>
<div id="phoneMenuObal">
<button id="phoneMenu">📜</button>
</div>
<div id="main">
<div id="obal">
<div id="flex1">
<img src="./res/img/mainChar.jpg" alt="" id="mainChar" />
</div>
<div id="flex2">
<img id="enemy" src="./res/img/negr.png" alt="" />
<img src="./res/img/negr2.png" alt="" id="deadEnemy" />
<img src="./res/img/boss1.png" alt="" id="boss1" />
<img src="./res/img/deadBoss1.png" alt="" id="deadBoss1" />
</div>
</div>
<div id="hpObal">
<p id="hpCounter">
<img id="hp" src="./res/img/hp.png" alt="" />: 20/20
</p>
<p id="counter">
<img id="hp2" src="./res/img/hp.png" alt="" />: 20/20
</p>
</div>
<div id="buttons">
<div id="attack"><img id="att" src="./res/img/att.jpg" alt="" /></div>
<div id="heal"><img id="pott" src="./res/img/pott.jpg" alt="" /></div>
<div id="potionCounter">0</div>
</div>
<audio src="./res/img/tutututu.mp3" id="audio" loop="loop"></audio>
<audio id="audio3" src="./res/img/kostel.mp3"></audio>
<audio id="audio4" src="./res/img/hit.mp3"></audio>
<audio src="./res/img/death.mp3" id="audio5"></audio>
<audio src="./res/img/hit.mp3" id="audio6"></audio>
</div>
<div id="earnings">+10G</div>
<div id="verzeRes">
<div id="verze">
<div>Verze 1.9.2</div>
<div>Made by: Pavel Mík</div>
<div>Graphics and music: Tadeáš Mejzlík a Matěj Landa</div>
<div>Podobnost postav s učiteli je čistě náhodná</div>
</div>
</div>
<div id="mesto">
<div id="church">To Church</div>
<div id="goInside">Go inside</div>
<div id="goBack">Go back</div>
<div id="enchant">Enchant: 5000G</div>
<div id="typeOfEnchantment">+</div>
<div id="moneyCounter2">Gold: 0</div>
<div id="hospoda">QUESTS</div>
<div id="back">Back to Elektropolis</div>
<audio id="audio2" src="./res/img/hospodafinal.mp3" loop="loop"></audio>
<div id="nextUpdate">QUESTS IN UPDATE 2.0</div>
<div id="thr">SHOP</div>
<div id="backButton2">Back to Elektropolis</div>
<div id="oball">
<div class="stats">
<p id="damage">Damage: 1</p>
</div>
<div class="stats">
<p id="money">Gold: 0</p>
<p id="deathCounter">Kills: 0</p>
</div>
<div class="shop1"></div>
<div class="shop2">
<button id="sword">Sharpness: 1 Gold: 10</button><br />
<button id="MaxHealth">Muskles: 1 Gold: 10</button><br />
<button id="potion">Poťáček: 0 Gold: 500</button><br />
</div>
<div class="shop3">
<img id="club" src="./res/img/club1.png" alt="" />
<div id="description">
Club: 100G <br />
Kills: 5 <br />
+20 dmg
</div>
<img id="spear" src="./res/img/spear.png" alt="" />
<div id="description2">
Spear: 1000G <br />
Kills: 25<br />
+50 dmg
</div>
<img id="mace" src="./res/img/mace.png" alt="" />
<div id="description3">
Mace: 10000G <br />
Kills: 50<br />
+100 dmg
</div>
<img id="swordd" src="./res/img/sword.png" alt="" />
<div id="description4">
Sword: 30000G <br />
Kills: 100<br />
+200 dmg
</div>
</div>
</div>
</div>
</div>
<script src="./res/js/main.js"></script>
</body>
</html>