-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (39 loc) · 959 Bytes
/
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
<html>
<head>
<title>Dice Wars Reloaded</title>
<style>
body {
background-color: black;
color: white;
font-family: sans; }
a { color: yellow; }
</style>
</head>
<body>
<h1>Dice Wars Reloaded</h1>
<p>This repository contains my modifications to gamedesign.jp's
DICEWARS game.</p>
<ul>
<li>
Play
<a href='https://www.gamedesign.jp/games/dicewars/'
>DICEWARS</a> (the original)</li>
<li>
Play
<a href='https://parke.github.io/dicewars/gamedesign.jp/'
>DICEWARS</a> (the original, archived)</li>
<li>
Play
<a href='https://parke.github.io/dicewars/reloaded/'
>Dice Wars Reloaded</a> (my modified version)</li>
</ul>
<p>The original DICEWARS game is copyright by gamedesign.jp.</p>
<p>My modifications:
<ul>
<li>Changed most colors to a dark theme.</li>
<li>Removed the dice roll animation to speed up the game.</li>
<li>Disabled sound effects.</li>
</ul>
</p>
</body>
</html>