-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworks.html
More file actions
88 lines (82 loc) · 4.88 KB
/
works.html
File metadata and controls
88 lines (82 loc) · 4.88 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<title>Works | Tom Fasham</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<ul class="inline-list">
<li class="li"><button class="hidden-button" onclick="window.location.href = `index.html`"><strong>HOME</strong></button></li>
<li class="li"><button class="hidden-button" onclick="window.location.href = `works.html`"><strong>MY WORK</strong></button></li>
<li class="li"><button class="hidden-button" onclick="window.location.href = `contact.html`"><strong>CONTACT ME</strong></button></li>
</ul>
</nav>
</header>
<div class="content">
<div class="banner">
<div class="works-title">
<h1>MY WORKS</h1>
</div>
</div>
<div class="article" style="padding: 30px;">
<ul class="inline-list">
<h2>PONGDEMONIUM</h2>
<p>Pongdemonium is a two-player party game, which sees players go head-to-head in rounds of Pong, but with a twist: each round, crazy new mechanics are added to shake up the game. </p>
<p>Pongdemonium is currently being developed solo as a side project outside of university, and has been in development for ~6 months.</p>
<p>In the project, I've handled all aspects of design, programming, & art.</p>
<p>There's currently no available builds, but check back shortly for more news!</p> </p>
<img src="Images/Pongdemonium-2.png"/>
</ul>
</div>
<div class="article" style="padding: 30px;">
<ul class="inline-list">
<h2>ELLE'S ADVENTURE</h2>
<p>Elle's Adventure is a single-player adventure game in which players explore a construction yard learning about safe construction and help various members around the construction site with their odd jobs.</p>
<p>Elle's Adventure was developed with three other students across the span of 13 weeks as a part of a university project for the unit IGB200, in partnership with Awesome Women in Construction. </p>
<p>In the project, I was responsible for Game & Level Design.</p>
<p>Play it <a href="https://jamiecarmichael.itch.io/elles-adventure">here</a>.</p>
<img src="Images/EllesAdventure-1.png"/>
</ul>
</div>
<div class="article" style="padding: 30px;">
<ul class="inline-list">
<h2>DUNGEONS OF TAERSPYRE</h2>
<p>Dungeons of Taerspyre is an ARPG prototype about a necromancer's quest to escape from a castle's dungeon, which sees players raising an army of the dead to destroy waves of enemy forces.</p>
<p>Dungeons of Taerspyre was developed individually across the span of 5 weeks as a part of a university project for the unit IGB190, based on a small provided project. </p>
<p>In the project, I handled all aspects of design, programming, & art.</p>
<p>Play it <a href="https://largeknome.itch.io/dungeons-of-taerspyre">here</a>.</p>
<img src="Images/Taerspyre-1.png"/>
</ul>
</div>
<div class="article" style="padding: 30px;">
<ul class="inline-list">
<h2>HUNTED VR</h2>
<p>Hunted VR is a VR stealth game adapting the popular reality TV series Hunted. It sees players escaping from a train station by avoiding police & security caneras, as well as using objects in the environment to their advantage. </p>
<p>Hunted VR was developed with two other students as a part of a university project for the unit IGB388. We also collaborated with students at BUAS in The Netherlands who helped with developing the pitch, and with Banijay Benelux, who produce Hunted. </p>
<p>In the project, I was responsible for systems design & some aspects of programming.</p>
<p>There's currently no available builds.</p>
<img src="Images/huntedvr-1.png"/>
</ul>
</div>
<div class="article" style="padding: 30px;">
<ul class="inline-list">
<h2>PAINT-EM-UP</h2>
<p>Paint Em Up is a single-player arena shoot-em-up in which players fight waves of enemies by switching colours to match their enemies, and then blasting them. Players can also release powerful abilities to wipe out waves of enemies.</p>
<p>Paint-em-up was developed individually across the span of 5 weeks as a part of a university project for the unit IGB100. </p>
<p>In the project, I handled all aspects of design, programming, & art.</p>
<p>Play it <a href="https://largeknome.itch.io/paintemup-v05">here</a>.</p>
<img src="Images/PaintEmUp-1.png"/>
</ul>
</div>
</div>
<footer>
<ul class="inline-list">
<li> Developed by Tom Fasham for DXB111.</li>
<li> All images & works shown are my own.</li>
<li> Contact me <a href="contact.html">here</a> for questions & concerns. </li>
</ul>
</footer>
</body>
</html>