-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (71 loc) · 3.41 KB
/
index.html
File metadata and controls
71 lines (71 loc) · 3.41 KB
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
<!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">
<title>What Doesn't Kill Me | Trijam #174</title>
<link href="styles/style.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Covered+By+Your+Grace&family=Source+Code+Pro:wght@400;700&display=swap" rel="stylesheet">
<link rel="icon" href="favicon.ico" type="image/x-icon" />
</head>
<body>
<header>
<a href="https://github.com/thecodingcouple/trijam-174">What Doesn't Kill Me | Trijam #174</a>
</header>
<main>
<!-- Start Scene -->
<section id="start-scene" class="">
<div class="game-scene">
<h1>What Doesn't Kill Me</h1>
<p>
You are a scientist conduting an antibiotic experiment on a bacteria. Each round you will use antibiotics to weaken the bacteria with the objective of not killing it.
<br><br>
If you kill the bacteria the game is over. If you manage to weaken it just enough, the bacteria survives, stronger than ever for the next round.
</p>
<button id="start-button" class="game-state-button">Start Game</button>
</div>
</section>
<!-- Game Scene -->
<section id="play-scene" class="hidden">
<div class="game-scene">
<section id="game-stats">
<div>
<label>Time Remaining: <span id="time-counter">30</span></label>
<label>Bacteria Health: <span id="health-counter">09</span></label>
</div>
<div>
<label class="align-right">Experiment <span class="round-counter">001</span></label>
<section class="antibiotic-markers-container">
</section>
</div>
</section>
<section id="petri-dish">
</section>
</div>
<!-- Round Overlay -->
<section id="round-overlay" class="hidden">
<div>
<h2>Experiment <span class="round-counter">001</span></h2>
<section id="legend">
</section>
</div>
</section>
</section>
<!-- End Scene -->
<section id="end-scene" class="hidden">
<div class="game-scene">
<h1>Game Over</h1>
<button id="retry-button" class="game-state-button game-state-secondary-button">Restart Level</button>
<button id="restart-button" class="game-state-button">Restart Game</button>
</div>
</section>
</main>
<footer>
<a href="https://twitter.com/thecodingcouple">A game by Michael & Ashley | @thecodingcouple</a>
</footer>
<script type="module" src="scripts/main.js"></script>
</body>
</html>