wizdatcodes commited on
Commit
574bc78
·
verified ·
1 Parent(s): c82d4d0

Add 3 files

Browse files
Files changed (3) hide show
  1. README.md +6 -4
  2. index.html +444 -19
  3. prompts.txt +1 -0
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: A Cyberpunk Text Based Rpg Mmo
3
- emoji: 😻
4
  colorFrom: green
5
- colorTo: red
6
  sdk: static
7
  pinned: false
 
 
8
  ---
9
 
10
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
1
  ---
2
+ title: a-cyberpunk-text-based-rpg-mmo
3
+ emoji: 🐳
4
  colorFrom: green
5
+ colorTo: pink
6
  sdk: static
7
  pinned: false
8
+ tags:
9
+ - deepsite
10
  ---
11
 
12
+ Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
index.html CHANGED
@@ -1,19 +1,444 @@
1
- <!doctype html>
2
- <html>
3
- <head>
4
- <meta charset="utf-8" />
5
- <meta name="viewport" content="width=device-width" />
6
- <title>My static Space</title>
7
- <link rel="stylesheet" href="style.css" />
8
- </head>
9
- <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
18
- </body>
19
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="en">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>Genesis Neo - Cyberpunk RPG MMO</title>
7
+ <script src="https://cdn.tailwindcss.com"></script>
8
+ <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
9
+ <style>
10
+ @import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=Orbitron:wght@400;700&display=swap');
11
+
12
+ :root {
13
+ --neon-pink: #ff2a6d;
14
+ --neon-blue: #05d9e8;
15
+ --neon-purple: #d300c5;
16
+ --dark-bg: #0d0221;
17
+ --darker-bg: #05010f;
18
+ }
19
+
20
+ body {
21
+ font-family: 'Share Tech Mono', monospace;
22
+ background-color: var(--dark-bg);
23
+ color: #fff;
24
+ overflow-x: hidden;
25
+ }
26
+
27
+ .cyberpunk-scrollbar::-webkit-scrollbar {
28
+ width: 8px;
29
+ }
30
+
31
+ .cyberpunk-scrollbar::-webkit-scrollbar-track {
32
+ background: var(--darker-bg);
33
+ }
34
+
35
+ .cyberpunk-scrollbar::-webkit-scrollbar-thumb {
36
+ background: var(--neon-pink);
37
+ border-radius: 4px;
38
+ }
39
+
40
+ .cyberpunk-scrollbar::-webkit-scrollbar-thumb:hover {
41
+ background: var(--neon-purple);
42
+ }
43
+
44
+ .neon-text-pink {
45
+ color: var(--neon-pink);
46
+ text-shadow: 0 0 5px var(--neon-pink), 0 0 10px var(--neon-pink);
47
+ }
48
+
49
+ .neon-text-blue {
50
+ color: var(--neon-blue);
51
+ text-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue);
52
+ }
53
+
54
+ .neon-border-pink {
55
+ border: 1px solid var(--neon-pink);
56
+ box-shadow: 0 0 10px var(--neon-pink), inset 0 0 10px var(--neon-pink);
57
+ }
58
+
59
+ .neon-border-blue {
60
+ border: 1px solid var(--neon-blue);
61
+ box-shadow: 0 0 10px var(--neon-blue), inset 0 0 10px var(--neon-blue);
62
+ }
63
+
64
+ .terminal-line::before {
65
+ content: "> ";
66
+ color: var(--neon-blue);
67
+ }
68
+
69
+ .blink {
70
+ animation: blink 1s step-end infinite;
71
+ }
72
+
73
+ @keyframes blink {
74
+ from, to { opacity: 1; }
75
+ 50% { opacity: 0; }
76
+ }
77
+
78
+ .glow-effect {
79
+ position: relative;
80
+ }
81
+
82
+ .glow-effect::after {
83
+ content: '';
84
+ position: absolute;
85
+ top: 0;
86
+ left: 0;
87
+ right: 0;
88
+ bottom: 0;
89
+ background: radial-gradient(circle at center, transparent, var(--neon-blue) 70%);
90
+ opacity: 0.1;
91
+ pointer-events: none;
92
+ z-index: -1;
93
+ }
94
+
95
+ .scanlines {
96
+ position: relative;
97
+ overflow: hidden;
98
+ }
99
+
100
+ .scanlines::before {
101
+ content: "";
102
+ position: absolute;
103
+ top: 0;
104
+ left: 0;
105
+ right: 0;
106
+ bottom: 0;
107
+ background: linear-gradient(
108
+ to bottom,
109
+ rgba(255, 255, 255, 0.05) 50%,
110
+ transparent 50%
111
+ );
112
+ background-size: 100% 4px;
113
+ pointer-events: none;
114
+ z-index: 1;
115
+ }
116
+
117
+ .command-input {
118
+ caret-color: var(--neon-blue);
119
+ }
120
+ </style>
121
+ </head>
122
+ <body class="min-h-screen flex flex-col bg-[#0d0221] p-4">
123
+ <!-- Header with game title and status bars -->
124
+ <header class="mb-4 neon-border-pink p-3 rounded-lg">
125
+ <div class="flex justify-between items-center">
126
+ <h1 class="text-3xl md:text-4xl font-bold font-['Orbitron'] neon-text-pink">
127
+ NETRUNNER ONLINE <span class="text-sm neon-text-blue">v1.0.0</span>
128
+ </h1>
129
+ <div class="flex space-x-4">
130
+ <div class="text-right">
131
+ <div class="neon-text-blue text-sm">CONNECTION</div>
132
+ <div class="flex items-center">
133
+ <div class="w-24 h-2 bg-gray-800 rounded mr-2">
134
+ <div class="h-full bg-green-500 rounded" style="width: 95%"></div>
135
+ </div>
136
+ <span class="text-green-500 text-xs">SECURE</span>
137
+ </div>
138
+ </div>
139
+ <div class="text-right">
140
+ <div class="neon-text-blue text-sm">SERVER LOAD</div>
141
+ <div class="flex items-center">
142
+ <div class="w-24 h-2 bg-gray-800 rounded mr-2">
143
+ <div class="h-full bg-yellow-500 rounded" style="width: 65%"></div>
144
+ </div>
145
+ <span class="text-yellow-500 text-xs">MODERATE</span>
146
+ </div>
147
+ </div>
148
+ </div>
149
+ </div>
150
+ </header>
151
+
152
+ <div class="flex flex-col lg:flex-row flex-1 gap-4">
153
+ <!-- Main terminal area -->
154
+ <main class="flex-1 flex flex-col">
155
+ <div class="flex mb-2">
156
+ <div class="bg-[#05010f] text-white px-4 py-2 rounded-t-lg border-b border-[#ff2a6d] neon-text-pink">
157
+ <i class="fas fa-terminal mr-2"></i> MAIN TERMINAL
158
+ </div>
159
+ <div class="bg-[#05010f] text-gray-400 px-4 py-2 rounded-t-lg">
160
+ <i class="fas fa-chart-network mr-2"></i> NETWORK MAP
161
+ </div>
162
+ <div class="bg-[#05010f] text-gray-400 px-4 py-2 rounded-t-lg">
163
+ <i class="fas fa-database mr-2"></i> DATA VAULT
164
+ </div>
165
+ </div>
166
+
167
+ <div class="flex-1 bg-[#05010f] neon-border-pink rounded-b-lg rounded-tr-lg p-4 h-full flex flex-col scanlines">
168
+ <!-- Terminal output -->
169
+ <div id="terminal-output" class="flex-1 overflow-y-auto cyberpunk-scrollbar mb-4 font-mono text-sm text-gray-300 leading-relaxed">
170
+ <div class="terminal-line neon-text-blue">INITIALIZING NEON NEXUS INTERFACE...</div>
171
+ <div class="terminal-line">SYSTEM CHECK: COMPLETE</div>
172
+ <div class="terminal-line">SECURITY PROTOCOLS: ACTIVE</div>
173
+ <div class="terminal-line">NETWORK CONNECTION: ESTABLISHED</div>
174
+ <div class="terminal-line">USER AUTHENTICATION: VERIFIED</div>
175
+ <div class="terminal-line neon-text-pink">WELCOME TO NEON NEXUS, RUNNER</div>
176
+ <div class="terminal-line">ACTIVE PLAYERS: 2,847</div>
177
+ <div class="terminal-line">CURRENT SERVER TIME: <span id="server-time" class="neon-text-blue"></span></div>
178
+ <div class="terminal-line">----------------------------------------</div>
179
+ <div class="terminal-line neon-text-pink">LAST SYSTEM MESSAGE:</div>
180
+ <div class="terminal-line">> The megacorp Black ICE has deployed new security drones in the downtown sector.</div>
181
+ <div class="terminal-line">> Runners report increased NetWatch activity near the old data fortresses.</div>
182
+ <div class="terminal-line">> A new underground fighting ring has opened in the Red Light district.</div>
183
+ <div class="terminal-line">----------------------------------------</div>
184
+ <div class="terminal-line neon-text-pink">YOUR STATUS:</div>
185
+ <div class="terminal-line">> HANDLE: <span class="neon-text-blue">Ghost</span></div>
186
+ <div class="terminal-line">> REPUTATION: Street Legend (Tier 4)</div>
187
+ <div class="terminal-line">> CREDITS: 12,750</div>
188
+ <div class="terminal-line">> CURRENT LOCATION: Night Market</div>
189
+ <div class="terminal-line">> ACTIVE QUESTS: 3</div>
190
+ <div class="terminal-line">> CREW: Razor (Netrunner), Jinx (Tech), Smiley (Solo)</div>
191
+ <div class="terminal-line">> EQUIPMENT: Cyberdeck MK.3, Smart Pistol, Subdermal Armor</div>
192
+ <div class="terminal-line">----------------------------------------</div>
193
+ <div class="terminal-line neon-text-pink">NEARBY PLAYERS:</div>
194
+ <div class="terminal-line">> Nova (Netrunner) - Rating: 8/10 - Last seen: 2 min ago</div>
195
+ <div class="terminal-line">> Spectre (Solo) - Rating: 6/10 - Last seen: 5 min ago</div>
196
+ <div class="terminal-line">> Byte (Tech) - Rating: 7/10 - Last seen: 8 min ago</div>
197
+ <div class="terminal-line">----------------------------------------</div>
198
+ <div class="terminal-line neon-text-pink">TYPE 'HELP' FOR COMMAND LIST</div>
199
+ <div class="terminal-line blink">_</div>
200
+ </div>
201
+
202
+ <!-- Command input -->
203
+ <div class="relative">
204
+ <div class="absolute left-3 top-3 neon-text-blue">></div>
205
+ <input type="text" id="command-input" class="w-full bg-black bg-opacity-50 text-white p-2 pl-8 rounded command-input neon-border-blue focus:outline-none focus:ring-2 focus:ring-[#05d9e8]" placeholder="ENTER COMMAND..." autofocus>
206
+ </div>
207
+ </div>
208
+ </main>
209
+
210
+ <!-- Sidebar with player stats and quick actions -->
211
+ <aside class="w-full lg:w-80 flex flex-col">
212
+ <!-- Player stats card -->
213
+ <div class="bg-[#05010f] neon-border-blue rounded-lg p-4 mb-4 glow-effect">
214
+ <div class="flex items-center mb-4">
215
+ <div class="w-16 h-16 bg-[#ff2a6d] bg-opacity-20 rounded-full flex items-center justify-center neon-border-pink">
216
+ <i class="fas fa-user-secret text-2xl neon-text-pink"></i>
217
+ </div>
218
+ <div class="ml-4">
219
+ <h2 class="text-xl neon-text-pink">GHOST</h2>
220
+ <div class="text-xs neon-text-blue">NETRUNNER / TECH</div>
221
+ </div>
222
+ </div>
223
+
224
+ <div class="grid grid-cols-2 gap-3 text-xs mb-4">
225
+ <div>
226
+ <div class="neon-text-blue">LEVEL</div>
227
+ <div class="text-white">24</div>
228
+ </div>
229
+ <div>
230
+ <div class="neon-text-blue">REP</div>
231
+ <div class="text-white">Street Legend</div>
232
+ </div>
233
+ <div>
234
+ <div class="neon-text-blue">CREDITS</div>
235
+ <div class="text-white">12,750</div>
236
+ </div>
237
+ <div>
238
+ <div class="neon-text-blue">LOCATION</div>
239
+ <div class="text-white">Night Market</div>
240
+ </div>
241
+ </div>
242
+
243
+ <div class="mb-2">
244
+ <div class="flex justify-between text-xs mb-1 neon-text-blue">
245
+ <span>CYBERWARE INTEGRITY</span>
246
+ <span>87%</span>
247
+ </div>
248
+ <div class="w-full bg-gray-800 rounded-full h-2">
249
+ <div class="bg-[#05d9e8] h-2 rounded-full" style="width: 87%"></div>
250
+ </div>
251
+ </div>
252
+
253
+ <div class="mb-2">
254
+ <div class="flex justify-between text-xs mb-1 neon-text-blue">
255
+ <span>NEURAL STABILITY</span>
256
+ <span>72%</span>
257
+ </div>
258
+ <div class="w-full bg-gray-800 rounded-full h-2">
259
+ <div class="bg-[#d300c5] h-2 rounded-full" style="width: 72%"></div>
260
+ </div>
261
+ </div>
262
+ </div>
263
+
264
+ <!-- Quick actions -->
265
+ <div class="bg-[#05010f] neon-border-pink rounded-lg p-4 mb-4">
266
+ <h3 class="neon-text-pink text-sm mb-3">QUICK ACTIONS</h3>
267
+ <div class="grid grid-cols-2 gap-2">
268
+ <button class="bg-[#ff2a6d] bg-opacity-20 hover:bg-opacity-30 text-white p-2 rounded text-xs neon-border-pink transition">
269
+ <i class="fas fa-map-marker-alt mr-1"></i> MAP
270
+ </button>
271
+ <button class="bg-[#05d9e8] bg-opacity-20 hover:bg-opacity-30 text-white p-2 rounded text-xs neon-border-blue transition">
272
+ <i class="fas fa-network-wired mr-1"></i> NET
273
+ </button>
274
+ <button class="bg-[#ff2a6d] bg-opacity-20 hover:bg-opacity-30 text-white p-2 rounded text-xs neon-border-pink transition">
275
+ <i class="fas fa-briefcase mr-1"></i> INVENTORY
276
+ </button>
277
+ <button class="bg-[#05d9e8] bg-opacity-20 hover:bg-opacity-30 text-white p-2 rounded text-xs neon-border-blue transition">
278
+ <i class="fas fa-users mr-1"></i> CREW
279
+ </button>
280
+ <button class="bg-[#ff2a6d] bg-opacity-20 hover:bg-opacity-30 text-white p-2 rounded text-xs neon-border-pink transition">
281
+ <i class="fas fa-tasks mr-1"></i> QUESTS
282
+ </button>
283
+ <button class="bg-[#05d9e8] bg-opacity-20 hover:bg-opacity-30 text-white p-2 rounded text-xs neon-border-blue transition">
284
+ <i class="fas fa-store mr-1"></i> MARKET
285
+ </button>
286
+ </div>
287
+ </div>
288
+
289
+ <!-- Active quests -->
290
+ <div class="bg-[#05010f] neon-border-blue rounded-lg p-4 flex-1">
291
+ <h3 class="neon-text-blue text-sm mb-3">ACTIVE QUESTS <span class="text-white">(3)</span></h3>
292
+ <div class="space-y-3">
293
+ <div class="bg-black bg-opacity-30 p-2 rounded border-l-4 border-[#ff2a6d]">
294
+ <div class="text-xs neon-text-pink">DATA HEIST</div>
295
+ <div class="text-xs text-gray-300">Infiltrate Arasaka subnet and extract payroll data</div>
296
+ <div class="w-full bg-gray-800 rounded-full h-1 mt-1">
297
+ <div class="bg-[#ff2a6d] h-1 rounded-full" style="width: 45%"></div>
298
+ </div>
299
+ </div>
300
+ <div class="bg-black bg-opacity-30 p-2 rounded border-l-4 border-[#05d9e8]">
301
+ <div class="text-xs neon-text-blue">WETWORK</div>
302
+ <div class="text-xs text-gray-300">Eliminate the rogue AI "Wintermute"</div>
303
+ <div class="w-full bg-gray-800 rounded-full h-1 mt-1">
304
+ <div class="bg-[#05d9e8] h-1 rounded-full" style="width: 20%"></div>
305
+ </div>
306
+ </div>
307
+ <div class="bg-black bg-opacity-30 p-2 rounded border-l-4 border-[#d300c5]">
308
+ <div class="text-xs text-[#d300c5]">SIDE JOB</div>
309
+ <div class="text-xs text-gray-300">Deliver package to the Red Light district</div>
310
+ <div class="w-full bg-gray-800 rounded-full h-1 mt-1">
311
+ <div class="bg-[#d300c5] h-1 rounded-full" style="width: 80%"></div>
312
+ </div>
313
+ </div>
314
+ </div>
315
+ </div>
316
+ </aside>
317
+ </div>
318
+
319
+ <!-- Footer with system info -->
320
+ <footer class="mt-4 text-xs text-gray-500 flex justify-between items-center">
321
+ <div>
322
+ <span class="neon-text-pink">NEON NEXUS</span> - A Cyberpunk Text-Based RPG MMO
323
+ </div>
324
+ <div class="flex space-x-4">
325
+ <div>PLAYERS ONLINE: <span class="neon-text-blue">2,847</span></div>
326
+ <div>UPTIME: <span class="neon-text-blue">99.87%</span></div>
327
+ <div>LATENCY: <span class="neon-text-blue">32ms</span></div>
328
+ </div>
329
+ </footer>
330
+
331
+ <script>
332
+ // Update server time
333
+ function updateServerTime() {
334
+ const now = new Date();
335
+ const timeString = now.toLocaleTimeString('en-US', {
336
+ hour12: false,
337
+ hour: '2-digit',
338
+ minute: '2-digit',
339
+ second: '2-digit'
340
+ });
341
+ document.getElementById('server-time').textContent = timeString;
342
+ }
343
+
344
+ setInterval(updateServerTime, 1000);
345
+ updateServerTime();
346
+
347
+ // Terminal functionality
348
+ const terminalOutput = document.getElementById('terminal-output');
349
+ const commandInput = document.getElementById('command-input');
350
+
351
+ commandInput.addEventListener('keypress', function(e) {
352
+ if (e.key === 'Enter') {
353
+ const command = commandInput.value.trim();
354
+ if (command) {
355
+ // Add command to terminal
356
+ addTerminalLine(`> ${command}`, 'text-gray-400');
357
+
358
+ // Process command
359
+ processCommand(command);
360
+
361
+ // Clear input
362
+ commandInput.value = '';
363
+ }
364
+ }
365
+ });
366
+
367
+ function addTerminalLine(text, colorClass = 'text-gray-300') {
368
+ const line = document.createElement('div');
369
+ line.className = `terminal-line ${colorClass}`;
370
+ line.textContent = text;
371
+ terminalOutput.appendChild(line);
372
+ terminalOutput.scrollTop = terminalOutput.scrollHeight;
373
+ }
374
+
375
+ function processCommand(command) {
376
+ const cmd = command.toLowerCase();
377
+
378
+ // Simple command processing
379
+ if (cmd === 'help') {
380
+ addTerminalLine('AVAILABLE COMMANDS:', 'neon-text-pink');
381
+ addTerminalLine('help - Show this help message');
382
+ addTerminalLine('status - Show your character status');
383
+ addTerminalLine('map - Show current location map');
384
+ addTerminalLine('move [location] - Move to another location');
385
+ addTerminalLine('inventory - Show your inventory');
386
+ addTerminalLine('quests - List active quests');
387
+ addTerminalLine('crew - Show your crew members');
388
+ addTerminalLine('scan - Scan for nearby players');
389
+ addTerminalLine('chat [message] - Send message to nearby players');
390
+ addTerminalLine('clear - Clear the terminal');
391
+ }
392
+ else if (cmd === 'status') {
393
+ addTerminalLine('CHARACTER STATUS:', 'neon-text-pink');
394
+ addTerminalLine('HANDLE: Ghost');
395
+ addTerminalLine('CLASS: Netrunner/Tech');
396
+ addTerminalLine('LEVEL: 24');
397
+ addTerminalLine('REPUTATION: Street Legend (Tier 4)');
398
+ addTerminalLine('CREDITS: 12,750');
399
+ addTerminalLine('LOCATION: Night Market');
400
+ addTerminalLine('CYBERWARE INTEGRITY: 87%');
401
+ addTerminalLine('NEURAL STABILITY: 72%');
402
+ }
403
+ else if (cmd === 'scan') {
404
+ addTerminalLine('SCANNING FOR NEARBY PLAYERS...', 'neon-text-blue');
405
+ setTimeout(() => {
406
+ addTerminalLine('NEARBY PLAYERS:', 'neon-text-pink');
407
+ addTerminalLine('> Nova (Netrunner) - Rating: 8/10 - Last seen: 1 min ago');
408
+ addTerminalLine('> Spectre (Solo) - Rating: 6/10 - Last seen: 4 min ago');
409
+ addTerminalLine('> Byte (Tech) - Rating: 7/10 - Last seen: 7 min ago');
410
+ }, 1000);
411
+ }
412
+ else if (cmd === 'clear') {
413
+ terminalOutput.innerHTML = '';
414
+ addTerminalLine('TERMINAL CLEARED', 'neon-text-blue');
415
+ }
416
+ else if (cmd.startsWith('move ')) {
417
+ const location = cmd.substring(5);
418
+ addTerminalLine(`ATTEMPTING TO MOVE TO ${location.toUpperCase()}...`, 'neon-text-blue');
419
+ setTimeout(() => {
420
+ addTerminalLine(`ARRIVED AT ${location.toUpperCase()}`, 'neon-text-pink');
421
+ // In a real game, you would update the player's location here
422
+ }, 1500);
423
+ }
424
+ else {
425
+ addTerminalLine(`ERROR: UNKNOWN COMMAND '${command}'`, 'text-red-400');
426
+ addTerminalLine('TYPE "HELP" FOR A LIST OF COMMANDS', 'neon-text-blue');
427
+ }
428
+
429
+ // Add blinking cursor after processing
430
+ const cursor = document.createElement('div');
431
+ cursor.className = 'terminal-line blink';
432
+ cursor.textContent = '_';
433
+ terminalOutput.appendChild(cursor);
434
+ terminalOutput.scrollTop = terminalOutput.scrollHeight;
435
+ }
436
+
437
+ // Initial blinking cursor
438
+ const initialCursor = document.createElement('div');
439
+ initialCursor.className = 'terminal-line blink';
440
+ initialCursor.textContent = '_';
441
+ terminalOutput.appendChild(initialCursor);
442
+ </script>
443
+ <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=wizdatcodes/a-cyberpunk-text-based-rpg-mmo" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
444
+ </html>
prompts.txt ADDED
@@ -0,0 +1 @@
 
 
1
+ create a complete and professionally designed UI to accentuate the Text Based Cyberpunk themed RPG MMO that will be played here through a cool CLI interface. I think it can be really cool, if we can figure out how to make it work right. So anything it requires or anything you think it should have to make it better go ahead and do that as well.