-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
100 lines (89 loc) · 4.09 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
<!doctype html>
<html lang="en">
<head>
<title>Tokens of Victory</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="./assets/css/reset.css" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB"
crossorigin="anonymous">
<link rel="stylesheet" href="./assets/css/styles.css" />
<script src="https://code.jquery.com/jquery-3.3.1.js" integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60=" crossorigin="anonymous"></script>
<script src="./assets/javascript/game.js"></script>
<link rel="shortcut icon" href="./assets/images/sunlight_medal.png" type="image/x-icon" />
</head>
<body class="container">
<!-- =====HEADER===== -->
<header class="header text-center p-3">
<h1>Tokens of Victory</h1>
<h4>A Dark Souls Themed Collector Game</h4>
</header>
<div class="row">
<!-- =====GAME RULES===== -->
<div class="my-container col">
<p>
The game begins with a random number of Tokens you need to collect.
<br>
<br> There are four covenants you can join, each will grant you a random number of Tokens to add to your collection.
<br>
<br> Your goal to collect the exact same amount of Tokens as your target.
<br>
<br> Be careful. If you collect too many Tokens, you'll be the target of Black Phantoms, and you'll loose.
<br>
<br> Your Wins and Losses are tallied at the end of each game. When the game resets all covenant values and your
target value will change.
<!-- If you have no idea what any of this means, just ask Scott, he can explain it all. -->
</p>
</div>
<!-- =====COVENANTS===== -->
<div class="my-container col">
<div class="row">
<div class="col text-center">
<img class="cov-button" id="cov-1" src="./assets/images/blade_of_the_darkmoon.png" alt="Blade of the Darkmoon" value="" />
</div>
<div class="col text-center">
<img class="cov-button" id="cov-2" src="./assets/images/rosarias_fingers.png" alt="Rosarias Fingers" value="" />
</div>
</div>
<div class="row">
<div class="col text-center">
<img class="cov-button" id="cov-3" src="./assets/images/warrior_of_sunlight.png" alt="Warrior of Sunlight" value="" />
</div>
<div class="col text-center">
<img class="cov-button" id="cov-4" src="./assets/images/watchdogs_of_farron.png" alt="Watchdogs of Farron" value="" />
</div>
</div>
</div>
</div>
<div class="row">
<!-- =====CURRENT SCORE===== -->
<div class="my-container col text-center">
<h4>Your Collected Tokens:</h4>
<h2 id="current-score"></h2>
</div>
<!-- =====TARGET NUMBER===== -->
<div class="my-container col text-center">
<h4>Your Target:</h4>
<h2 id="target-number"></h2>
</div>
<!-- =====WIN/LOSS COUNTERS===== -->
<div class="my-container col text-center">
<ul class="list-inline mb-0">
<li class="list-inline-item mx-3">
<h6>Victories:</h6>
<h2 id="win-counter"></h2>
</li>
<li class="list-inline-item mx-3">
<h6>Deaths:</h6>
<h2 id="loss-counter"></h2>
</li>
<li class="list-inline-item mx-3">
<h6>Humanity:</h6>
<h2 id="humanity">00</h2>
<!-- This is a Dark Souls reference. Trust me, it's hilarious. -->
</li>
</ul>
</div>
</div>
</body>
</html>