-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathabout.html
41 lines (40 loc) · 1.98 KB
/
about.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
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Gotham Shadow</title>
<meta name="description" content="Gotham Shadow - Batman">
<meta name="author" content="Gaël Moliner">
<link href="./fonts/bungee/stylesheet.css" rel="stylesheet">
<link rel="shortcut icon" type="image/png" href="./assets/elements/favicon.jpg"/>
</head>
<body>
<div id="main">
<div class="border-area"></div>
<div class="main-content flex">
<div class="text-content">
<h2 class="main-title">About Gotham Shadow</h2>
<p>Gotham Shadow is a personal development project, i'm a big fan of the Dark Knight and this game is a tribute.
I wanted to learn basics of a 2D game, it was really enjoying to build a game engine from the bottom to something playable. Last but not least, i'm not done with this game : there will be some awesome updates !</p>
<ul><li>Update 1 : More level and more enemies</li><li>Update 2 : Differents AI enemies depending on the level</li><li>Update 3 : Level creator (a desire)</li></ul>
<h2 class="main-title">Credits</h2>
<p>Big thanks to <a target="_blank" href="https://www.deviantart.com/artemxvx/gallery">@ArtemxVx</a> and <a target="_blank" href="https://www.deviantart.com/genestarwolf/gallery/">@GeneStarwolf</a> for batman and enemies sprites</p>
<p>Big thanks to <a target="_blank" href="https://github.com/bgrins/javascript-astar">@bgrins</a> for the A* Search algorithm (AI enemies)</p>
</br>
<p>Technologies : Javascript, CSS3, Browserify, Photoshop, Tiled.</p>
<p>Gaël Moliner - 2018</p>
<div class="gui-container bottom flex space-between">
<div class="gui-element">
<a href="index.html">Home</a>
</div>
<div class="gui-element">
<a href="instructions.html">Play</a>
</div>
</div>
</div>
</div>
<div class="border-area"></div>
</div>
<script src="build/style.min.js"></script>
</body>
</html>