-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgame-intro.html
103 lines (101 loc) · 5.02 KB
/
game-intro.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
<!--
* Ministry of Futility
* Copyright (C) 2024 Mathew Mytka - m3metix
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*-->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ministry of Futility - Welcome</title>
<link rel="stylesheet" href="static/css/style.css">
<script>
// Check for touch events (to detect mobile)
if ('ontouchstart' in document.documentElement) {
document.querySelectorAll('.redacted').forEach(function(element) {
element.addEventListener('click', function() {
// Toggle the active state on click
element.classList.toggle('active');
});
});
}
</script>
</head>
<body>
<div class="container">
<h1>Welcome to the Ministry of Futility</h1>
<p><em>Where every step forward is two steps back.</em></p>
<div class="brutalist-box">
<div class="classified">TOP SECRET</div>
<h2 class="OpInstructions">Operative Instructions: How to Navigate the Ministry</h2>
<div class="document">
<div class="instruction">
<span class="instruction-title">1. Decision Making Protocol:</span>
<div class="redacted-content">
<span class="redacted">Navigate through the Ministry by making decisions at every turn. Each choice may lead to unforeseen consequences.</span>
</div>
</div>
<div class="instruction">
<span class="instruction-title">2. Metric Observation:</span>
<div class="redacted-content">
<span class="redacted">Monitor your futility and wisdom meters vigilantly. These metrics fluctuate with each action taken within the Ministry.</span>
</div>
</div>
<div class="instruction">
<span class="instruction-title">3. Error Analysis:</span>
<div class="redacted-content">
<span class="redacted">Mistakes are opportunities for growth. Wrong choices may inadvertently lead to the correct path. Embrace the inherent chaos of the system.</span>
</div>
</div>
<div class="instruction">
<span class="instruction-title">4. Confidential Information Retrieval:</span>
<div class="redacted-content">
<span class="redacted">Uncover hidden pathways and decipher the enigmatic mysteries that permeate the Ministry's structure.</span>
</div>
</div>
<div class="instruction">
<span class="instruction-title">5. Absurdity Acceptance Protocol:</span>
<div class="redacted-content">
<span class="redacted">The Ministry operates on principles that defy conventional logic. Embrace the futility because the only way through is through.</span>
</div>
</div>
<div class="instruction">
<span class="instruction-title">6. Self-Reflection Mandate:</span>
<div class="redacted-content">
<span class="redacted">Contemplate the nature of your roles and explore the philosophical underpinnings of wisdom, woo and futility within Ministry.</span>
</div>
</div>
<div class="instruction">
<span class="instruction-title">7. Equilibrium Maintenance:</span>
<div class="redacted-content">
<span class="redacted">Strive to achieve a precarious balance between accumulating wisdom and managing futility. Or just fully embrace the chaotic nature of the system and observe it unfurl.</span>
</div>
</div>
<div class="instruction">
<span class="instruction-title">8. Mission Completion:</span>
<div class="redacted-content">
<span class="redacted">Persist until you reach the culmination of your journey. Your choices throughout will shape your Ministry experience. May the Woo be with you!</span>
</div>
</div>
<div class="button-container">
<a href="index.html?visited=true">
<button class="start-button">Start Game</button>
</a>
</div>
</div>
</div>
</body>
</html>