forked from KrisTheDog/archiveofprojectecho
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
405 lines (353 loc) · 12.7 KB
/
Copy pathindex.html
File metadata and controls
405 lines (353 loc) · 12.7 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
<!-- Looking for secrets? You ain't Flowey! Get the hell out of here or i'll send you back to Tartarus... -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Project Echo - a port of UNDERTALE and DELTARUNE to Wii U</title>
<link rel="icon" type="image/png" href="https://undertale.wiki/images/Echo_Flower_overworld.png?cb=trphc8&h=thumb.php&f=Echo_Flower_overworld.png">
<style>
@font-face {
font-family: 'Determination';
src: url('https://raw.githubusercontent.com/projectechou/projectecho.github.io/main/determination.ttf') format('truetype');
font-display: swap;
}
*, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--bg: #000000;
--text: #ffffff;
--accent-red: #ff0000;
--accent-yellow: #ffff00;
--accent-gray: #555555;
--nav-bg: #2a2a2a;
}
body {
background-color: var(--bg);
color: var(--text);
font-family: 'Determination', monospace;
min-height: 100vh;
overflow-x: hidden;
}
nav {
background-color: var(--nav-bg);
padding: 14px 0;
display: flex;
justify-content: center;
gap: clamp(10px, 3vw, 48px);
position: sticky;
top: 0;
z-index: 100;
}
nav a {
color: var(--text);
text-decoration: none;
font-size: 15px;
letter-spacing: 2px;
text-transform: uppercase;
transition: color 0.2s;
}
nav a:hover {
color: var(--accent-yellow);
}
.hero {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 80px 20px 40px;
text-align: center;
}
.hero-title {
font-size: clamp(52px, 10vw, 100px);
letter-spacing: 6px;
line-height: 1.1;
margin-bottom: 10px;
}
.playtest-box {
margin-top: 40px;
display: flex;
flex-direction: column;
align-items: center;
gap: 15px;
}
.playtest-subtitle {
font-size: 14px;
color: var(--accent-gray);
letter-spacing: 1px;
}
.playtest-cta {
padding: 15px 35px;
border: 2px solid var(--accent-yellow);
background: transparent;
color: var(--accent-yellow);
text-decoration: none;
font-size: 18px;
letter-spacing: 2px;
text-transform: uppercase;
transition: all 0.3s ease;
display: inline-block;
line-height: 1;
}
.playtest-cta:hover {
background: var(--accent-yellow);
color: var(--bg);
box-shadow: 0 0 15px var(--accent-yellow);
}
.games-section {
text-align: center;
padding: 60px 20px;
}
.games-section h2 {
font-size: clamp(22px, 4vw, 32px);
letter-spacing: 3px;
margin-bottom: 36px;
}
.game-cards {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 24px;
max-width: 1000px;
margin: 0 auto;
}
.game-card {
border: 2px solid var(--accent-gray);
border-radius: 4px;
padding: 20px;
width: 280px;
background: #111;
transition: border-color 0.25s, transform 0.2s;
cursor: pointer;
display: flex;
flex-direction: column;
align-items: center;
}
.game-card:hover {
border-color: var(--accent-yellow);
transform: translateY(-4px);
}
.game-card img {
width: 100%;
height: 160px;
object-fit: cover;
border-radius: 2px;
margin-bottom: 16px;
border: 1px solid #333;
}
.game-card .card-title {
font-size: 20px;
letter-spacing: 2px;
margin-bottom: 8px;
text-transform: uppercase;
}
.game-card .card-status {
font-size: 12px;
letter-spacing: 2px;
color: var(--accent-yellow);
margin-bottom: 4px;
}
.game-card .card-engine {
font-size: 11px;
color: var(--accent-gray);
font-style: italic;
letter-spacing: 1px;
}
.disclaimer-section {
max-width: 800px;
margin: 40px auto;
padding: 20px;
border: 1px solid #222;
background-color: #0a0a0a;
border-radius: 4px;
text-align: center;
}
.raid-notice {
max-width: 800px;
margin: 40px auto 60px;
padding: 24px;
border: 2px solid var(--accent-red);
background-color: #0a0a0a;
border-radius: 4px;
text-align: center;
}
.raid-notice-title {
color: var(--accent-red);
font-size: 16px;
letter-spacing: 2px;
text-transform: uppercase;
margin-bottom: 14px;
}
.raid-notice-text {
font-size: 13px;
color: var(--text);
line-height: 2;
letter-spacing: 1.2px;
}
.raid-notice-text span {
color: var(--accent-yellow);
}
.disclaimer-title {
color: var(--accent-red);
font-size: 14px;
letter-spacing: 2px;
text-transform: uppercase;
margin-bottom: 10px;
}
.disclaimer-text {
font-size: 11px;
color: var(--accent-gray);
line-height: 1.8;
letter-spacing: 1px;
}
.about-section {
text-align: center;
padding: 70px 20px;
max-width: 700px;
margin: 0 auto;
}
.about-section h2 {
font-size: clamp(20px, 3.5vw, 28px);
letter-spacing: 3px;
margin-bottom: 24px;
}
.about-section p {
font-size: 13px;
color: var(--accent-gray);
line-height: 2;
letter-spacing: 1.2px;
}
.about-section p span {
color: var(--text);
}
footer {
border-top: 1px solid #222;
text-align: center;
padding: 40px 20px;
}
footer p {
font-size: 11px;
color: #444;
letter-spacing: 2px;
line-height: 2;
}
footer a {
color: var(--accent-gray);
text-decoration: none;
transition: color 0.2s;
}
footer a:hover {
color: var(--accent-yellow);
}
@media (max-width: 600px) {
nav { gap: 15px; flex-wrap: wrap; justify-content: center; padding: 10px; }
nav a { font-size: 10px; letter-spacing: 1px; }
.game-card { width: 100%; max-width: 320px; }
.hero-title { font-size: 40px; }
.playtest-cta { font-size: 14px; padding: 10px 20px; }
}
</style>
</head>
<body>
<nav>
<a href="#about">About</a>
<a href="#games">Games</a>
<a href="#playtest">Discord</a>
<a href="#how-its-made">How it's Made</a>
<a href="#faq">FAQ</a>
<a href="#contact">Contact</a>
</nav>
<section class="hero">
<div style="display:flex; align-items:center; justify-content:center; gap:24px; flex-wrap:wrap;">
<img src="https://github.com/projectechou/projectecho.github.io/blob/main/echo.png?raw=true" alt="Project Echo Icon" style="width:clamp(60px, 10vw, 100px); height:auto; image-rendering:pixelated;">
<h1 class="hero-title">Project Echo</h1>
</div>
<div id="playtest" class="playtest-box">
<a href="https://discord.gg/bVSvffJEQD" target="_blank" class="playtest-cta">Join Discord! (People who join before February 20th gets FREE playtester!)</a>
</div>
</section>
<section style="text-align:center; padding: 20px 20px 50px; max-width:680px; margin:0 auto;">
<p style="font-size:13px; color: var(--accent-gray); line-height:2; letter-spacing:1.2px;">
<span style="color:var(--accent-yellow);">Project Echo</span> is a fanmade port of
<span style="color:var(--accent-yellow);">Undertale</span>, <span style="color:var(--accent-yellow);">Deltarune</span>, and <span style="color:var(--accent-yellow);">OneShot</span>
to the <span style="color:var(--accent-yellow);">Wii U</span>!
</p>
</section>
<section class="raid-notice">
<div class="raid-notice-title">⚠ Important Notice</div>
<div class="raid-notice-text">
Our Discord server was recently raided and nuked, and i'm working hard to recover our old members back.
<span>Playtesters will receive their UNDERTALE ports once we've recovered our member count.</span>
Thank you for your patience and understanding.
</div>
</section>
<section class="games-section" id="games">
<h2>Ports</h2>
<div class="game-cards">
<div class="game-card">
<img src="https://github.com/projectechou/projectecho.github.io/blob/main/undertale.png?raw=true" alt="Undertale">
<div class="card-status">In Development</div>
<div class="card-title">Undertale</div>
<div class="card-engine">Ported using Nintendo Web Framework</div>
</div>
<div class="game-card">
<img src="https://github.com/projectechou/projectecho.github.io/blob/main/deltarune.jpg?raw=true" alt="Deltarune">
<div class="card-status">In Development</div>
<div class="card-title">Deltarune</div>
<div class="card-engine">Ported using Nintendo Web Framework</div>
</div>
<div class="game-card">
<img src="https://github.com/projectechou/projectecho.github.io/blob/main/oneshot.webp?raw=true" alt="Oneshot">
<div class="card-status">Planned</div>
<div class="card-title">Oneshot</div>
<div class="card-engine">Will be ported using EasyRPG</div>
</div>
</div>
</section>
<section class="disclaimer-section">
<div class="disclaimer-title">Legal Disclaimer</div>
<div class="disclaimer-text">
The people making this port does not support piracy in any way. In order to patch Project Echo onto your Wii U, you'll need a real copy of Undertale and the data.win file. OneShot does not apply to this because that port is using the 2014 freeware verison.
</div>
</section>
<section id="how-its-made" style="text-align:center; padding:70px 20px; max-width:720px; margin:0 auto;">
<h2 style="font-size: clamp(20px, 3.5vw, 28px); letter-spacing:3px; margin-bottom:24px;">How it's Made</h2>
<p style="font-size:13px; color:var(--accent-gray); line-height:2; letter-spacing:1.2px;">
I use a tool called Nintendo Web Framework to bring Undertale and Deltarune to the Wii U. Because gamemaker lacks a native Wii U port, we instead export undertale to HTML, and then use Nintendo Web Framework to pack it into a Wii U File. OneShot will be based off of the EasyRPG Wii port by cmaster25. You can find their source code here: https://github.com/cmaster25/Oneshot-For-Wii
</p>
</section>
<section id="faq" style="text-align:center; padding:70px 20px; max-width:720px; margin:0 auto;">
<h2 style="font-size: clamp(20px, 3.5vw, 28px); letter-spacing:3px; margin-bottom:36px;">FAQ</h2>
<div style="text-align:left; display:flex; flex-direction:column; gap:28px;">
<div>
<p style="font-size:15px; color:var(--text); letter-spacing:1.5px; margin-bottom:8px;">When will this be complete?</p>
<p style="font-size:12px; color:var(--accent-gray); line-height:1.9; letter-spacing:1px;">I don't know. This project has no eta yet - but i believe it will be this year. </p>
</div>
<div>
<p style="font-size:15px; color:var(--text); letter-spacing:1.5px; margin-bottom:8px;">What about fangames (Undertale Yellow, Undertale Plus etc)</p>
<p style="font-size:12px; color:var(--accent-gray); line-height:1.9; letter-spacing:1px;">It would require complete recompilation of the NWF software as a whole to add mods and fangames. I'm interested in doing them too - but my focus is on those ports at the moment.</p>
</div>
<div>
<p style="font-size:15px; color:var(--text); letter-spacing:1.5px; margin-bottom:8px;">How can i contact you / help out with the port?</p>
<p style="font-size:12px; color:var(--accent-gray); line-height:1.9; letter-spacing:1px;">Join the discord. I plan on recruiting people who's knowledgable in the Wii U Homebrew and GameMaker scene to help. DELTARUNE in particlar has frame rate issues that i need to fix. </p>
</div>
<div>
<p style="font-size:15px; color:var(--text); letter-spacing:1.5px; margin-bottom:8px;">Do you plan on porting other games to the Wii U?</p>
<p style="font-size:12px; color:var(--accent-gray); line-height:1.9; letter-spacing:1px;">Absloutely! It may take time, however.</p>
</div>
</div>
</section>
<footer id="contact">
<p>
<a href="https://www.youtube.com/channel/UC-G4RHK3pCbcdlMhfk7TDGA/" target="_blank">YouTube</a> |
<a href="https://discord.gg/bVSvffJEQD" target="_blank">Discord</a>
</p>
<br>
<p>Not affiliated with Toby Fox or Future Cat LLC. Ports by Ventura J.S.C. I DO NOT HAVE ANY ALTERNATE ACCOUNTS OR SOCIAL MEDIA ASIDE FROM YOUTUBE</p>
</footer>
</body>
</html>
<!-- ok fine my biggest darkest secret is that i spent over 1k dollars on Wii Us. Happy now? -->