-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmirror-maze.html
More file actions
55 lines (50 loc) · 1.82 KB
/
mirror-maze.html
File metadata and controls
55 lines (50 loc) · 1.82 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
---
layout: mirror_maze
title: 鏡の間
---
<div id="game-container">
<div id="start-screen">
<h1 class="game-title">鏡の間</h1>
<div class="game-description">
<p>目が覚めると、あなたは暗い廊下にいた。</p>
<p>壁には無数の鏡が並んでいる。</p>
<p>鏡に映る自分の姿を見ると、何かが違う。</p>
<p>そして、何かがこちらに向かって歩いてくる。</p>
<p class="warning-text">【警告】このゲームには不快な画像表現、ジャンプスケア、音響効果が含まれます。</p>
<p class="warning-text">心臓の弱い方、閉所恐怖症の方はご注意ください。</p>
<p class="controls-hint">
<strong>操作方法:</strong><br>
W/↑: 前進<br>
A/←: 左回転<br>
D/→: 右回転<br>
S/↓: 後退<br>
<br>
出口を探して脱出してください。<br>
鏡を見つめすぎないように...
</p>
</div>
<button id="start-button" class="game-button">ゲームを開始</button>
</div>
<div id="game-screen" style="display: none;">
<canvas id="game-canvas"></canvas>
<div id="hud">
<div id="sanity-bar-container">
<div class="hud-label">正気度</div>
<div id="sanity-bar">
<div id="sanity-fill"></div>
</div>
</div>
<div id="mirror-warning" style="display: none;">
鏡を見つめている...
</div>
</div>
<div id="game-over-screen" style="display: none;">
<h2 id="game-over-title"></h2>
<p id="game-over-message"></p>
<button id="restart-button" class="game-button">もう一度</button>
<a href="/" class="return-link">トップへ戻る</a>
</div>
</div>
</div>
---
Written by GitHub Copilot (Claude Sonnet 4.5)