Dragunflie-420 commited on
Commit
e63e904
·
verified ·
1 Parent(s): 280a896

Add 2 files

Browse files
Files changed (2) hide show
  1. README.md +7 -5
  2. index.html +235 -19
README.md CHANGED
@@ -1,10 +1,12 @@
1
  ---
2
- title: Travons Minecraft Horror Infection Mod
3
- emoji: 📊
4
- colorFrom: pink
5
- colorTo: gray
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: travons-minecraft-horror-infection-mod
3
+ emoji: 🐳
4
+ colorFrom: purple
5
+ colorTo: red
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,235 @@
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>TraVon's Minecraft Horror Mod</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=Creepster&family=Roboto:wght@400;700&display=swap');
11
+
12
+ body {
13
+ font-family: 'Roboto', sans-serif;
14
+ background-color: #0a0a0a;
15
+ color: #e0e0e0;
16
+ background-image:
17
+ radial-gradient(circle at 10% 20%, rgba(70, 0, 70, 0.1) 0%, transparent 20%),
18
+ radial-gradient(circle at 90% 80%, rgba(0, 70, 70, 0.1) 0%, transparent 20%);
19
+ min-height: 100vh;
20
+ }
21
+
22
+ .creepster-font {
23
+ font-family: 'Creepster', cursive;
24
+ }
25
+
26
+ .glow-text {
27
+ text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff;
28
+ }
29
+
30
+ .pulse {
31
+ animation: pulse 2s infinite;
32
+ }
33
+
34
+ @keyframes pulse {
35
+ 0% { opacity: 0.8; }
36
+ 50% { opacity: 1; }
37
+ 100% { opacity: 0.8; }
38
+ }
39
+
40
+ .monster-card {
41
+ transition: all 0.3s ease;
42
+ border-left: 3px solid transparent;
43
+ }
44
+
45
+ .monster-card:hover {
46
+ transform: translateY(-5px);
47
+ border-left: 3px solid #ff00ff;
48
+ box-shadow: 0 10px 15px -5px rgba(255, 0, 255, 0.3);
49
+ }
50
+
51
+ .corrupted-flower {
52
+ filter: drop-shadow(0 0 5px #ff00ff);
53
+ animation: sway 3s ease-in-out infinite alternate;
54
+ }
55
+
56
+ @keyframes sway {
57
+ 0% { transform: rotate(-5deg); }
58
+ 100% { transform: rotate(5deg); }
59
+ }
60
+
61
+ .footer-link:hover {
62
+ color: #ff00ff;
63
+ text-decoration: underline;
64
+ }
65
+
66
+ .section-divider {
67
+ height: 1px;
68
+ background: linear-gradient(90deg, transparent, #ff00ff, transparent);
69
+ }
70
+ </style>
71
+ </head>
72
+ <body class="flex flex-col min-h-screen">
73
+ <header class="bg-black bg-opacity-70 py-8 px-4 sm:px-6 lg:px-8 text-center border-b border-purple-900">
74
+ <div class="max-w-4xl mx-auto">
75
+ <h1 class="text-4xl md:text-5xl lg:text-6xl font-bold mb-4 creepster-font glow-text text-purple-400">
76
+ <i class="fas fa-ghost mr-2"></i>TraVon's Minecraft Horror & Infection Mod
77
+ </h1>
78
+ <p class="text-xl md:text-2xl text-gray-300 italic pulse">
79
+ "Where the darkness watches... and waits."
80
+ </p>
81
+ </div>
82
+ </header>
83
+
84
+ <main class="flex-grow container mx-auto px-4 sm:px-6 lg:px-8 py-12 max-w-4xl">
85
+ <section class="mb-16">
86
+ <div class="flex items-center mb-8">
87
+ <i class="fas fa-skull text-3xl text-red-500 mr-4"></i>
88
+ <h2 class="text-3xl md:text-4xl font-bold text-red-400 creepster-font">Phase One: The Three Monsters</h2>
89
+ </div>
90
+
91
+ <div class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-8">
92
+ <div class="monster-card bg-gray-900 bg-opacity-70 p-6 rounded-lg">
93
+ <div class="flex items-center mb-4">
94
+ <i class="fas fa-user-secret text-2xl text-purple-400 mr-3"></i>
95
+ <h3 class="text-xl font-bold text-purple-300">Mimicker</h3>
96
+ </div>
97
+ <p class="text-gray-300">Breaks light sources, mimics sounds of players and friendly mobs, tricks the player into false security. It learns from your behavior.</p>
98
+ <div class="mt-4">
99
+ <span class="inline-block bg-purple-900 text-purple-200 text-xs px-2 py-1 rounded">Stealth</span>
100
+ <span class="inline-block bg-purple-900 text-purple-200 text-xs px-2 py-1 rounded ml-1">Psychological</span>
101
+ </div>
102
+ </div>
103
+
104
+ <div class="monster-card bg-gray-900 bg-opacity-70 p-6 rounded-lg">
105
+ <div class="flex items-center mb-4">
106
+ <i class="fas fa-mask text-2xl text-blue-400 mr-3"></i>
107
+ <h3 class="text-xl font-bold text-blue-300">Illusionist</h3>
108
+ </div>
109
+ <p class="text-gray-300">Spawns fake mobs with creepy behaviors. They look normal at first but gradually reveal their true nature through disturbing animations.</p>
110
+ <div class="mt-4">
111
+ <span class="inline-block bg-blue-900 text-blue-200 text-xs px-2 py-1 rounded">Deception</span>
112
+ <span class="inline-block bg-blue-900 text-blue-200 text-xs px-2 py-1 rounded ml-1">Hallucination</span>
113
+ </div>
114
+ </div>
115
+
116
+ <div class="monster-card bg-gray-900 bg-opacity-70 p-6 rounded-lg">
117
+ <div class="flex items-center mb-4">
118
+ <i class="fas fa-angry text-2xl text-red-400 mr-3"></i>
119
+ <h3 class="text-xl font-bold text-red-300">The Screamer</h3>
120
+ </div>
121
+ <p class="text-gray-300">Final form that appears when you're most vulnerable. Indestructible, deals real damage, and causes auditory hallucinations.</p>
122
+ <div class="mt-4">
123
+ <span class="inline-block bg-red-900 text-red-200 text-xs px-2 py-1 rounded">Boss</span>
124
+ <span class="inline-block bg-red-900 text-red-200 text-xs px-2 py-1 rounded ml-1">Terror</span>
125
+ </div>
126
+ </div>
127
+ </div>
128
+
129
+ <div class="bg-gray-900 bg-opacity-60 p-6 rounded-lg border-l-4 border-red-500">
130
+ <h3 class="text-xl font-bold text-red-300 mb-3">Progression System</h3>
131
+ <p class="text-gray-300">Monsters evolve based on player actions. The more you interact with them, the smarter and more dangerous they become. They remember your tactics.</p>
132
+ </div>
133
+ </section>
134
+
135
+ <div class="section-divider my-12"></div>
136
+
137
+ <section class="mt-16">
138
+ <div class="flex items-center mb-8">
139
+ <i class="fas fa-biohazard text-3xl text-green-500 mr-4"></i>
140
+ <h2 class="text-3xl md:text-4xl font-bold text-green-400 creepster-font">Phase Two: The Surface Infection</h2>
141
+ </div>
142
+
143
+ <div class="flex flex-col md:flex-row gap-8 items-center">
144
+ <div class="md:w-2/3">
145
+ <p class="text-lg text-gray-300 mb-4">
146
+ Activated by discovering a <strong class="text-green-400">Corrupted Flower</strong>. The infection spreads rapidly, transforming the overworld into a nightmarish landscape. Structures decay, animals mutate, and the very air becomes toxic.
147
+ </p>
148
+ <p class="text-lg text-gray-300 mb-6 italic">
149
+ <i class="fas fa-exclamation-triangle text-yellow-500 mr-2"></i> No cure. No escape. Just survival.
150
+ </p>
151
+ <div class="bg-gray-900 bg-opacity-60 p-4 rounded-lg border-l-4 border-green-500">
152
+ <h3 class="text-lg font-bold text-green-300 mb-2">Key Features:</h3>
153
+ <ul class="list-disc pl-5 text-gray-300 space-y-1">
154
+ <li>Dynamic infection spread based on time and player location</li>
155
+ <li>Mutated creatures with enhanced abilities</li>
156
+ <li>Environmental hazards like toxic rain and corrupted soil</li>
157
+ <li>Underground remains safe... for now</li>
158
+ </ul>
159
+ </div>
160
+ </div>
161
+
162
+ <div class="md:w-1/3 flex justify-center">
163
+ <img src="https://i.imgur.com/JqYeZvL.png" alt="Corrupted Flower" class="corrupted-flower w-48 h-48 object-contain">
164
+ </div>
165
+ </div>
166
+ </section>
167
+
168
+ <div class="mt-16 bg-black bg-opacity-50 p-6 rounded-lg border border-purple-900">
169
+ <h3 class="text-2xl font-bold text-center text-purple-300 mb-4 creepster-font">Are You Ready?</h3>
170
+ <p class="text-center text-gray-300 mb-6">
171
+ This mod is designed for horror enthusiasts who want a truly terrifying Minecraft experience. Not for the faint of heart.
172
+ </p>
173
+ <div class="flex justify-center">
174
+ <button id="downloadBtn" class="bg-purple-900 hover:bg-purple-800 text-white font-bold py-3 px-6 rounded-full transition-all duration-300 transform hover:scale-105 flex items-center">
175
+ <i class="fas fa-download mr-2"></i> Download Now (v1.0.3)
176
+ </button>
177
+ </div>
178
+ </div>
179
+ </main>
180
+
181
+ <footer class="bg-black bg-opacity-80 py-8 px-4 sm:px-6 lg:px-8 text-center border-t border-purple-900">
182
+ <div class="max-w-4xl mx-auto">
183
+ <p class="text-gray-400 mb-4">
184
+ Created with <i class="fas fa-heart text-red-500 mx-1"></i> by <span class="text-purple-300 font-bold">TraVon</span> & <span class="text-purple-300 font-bold">Maw Nikki</span>
185
+ </p>
186
+ <div class="flex justify-center space-x-6">
187
+ <a href="#" class="text-gray-400 hover:text-purple-400 transition-colors duration-200">
188
+ <i class="fab fa-twitter text-xl"></i>
189
+ </a>
190
+ <a href="#" class="text-gray-400 hover:text-purple-400 transition-colors duration-200">
191
+ <i class="fab fa-youtube text-xl"></i>
192
+ </a>
193
+ <a href="#" class="text-gray-400 hover:text-purple-400 transition-colors duration-200">
194
+ <i class="fab fa-github text-xl"></i>
195
+ </a>
196
+ <a href="#" class="text-gray-400 hover:text-purple-400 transition-colors duration-200">
197
+ <i class="fab fa-discord text-xl"></i>
198
+ </a>
199
+ </div>
200
+ <p class="text-gray-500 text-sm mt-4">
201
+ © 2023 TraVon's Horror Mod. Not affiliated with Mojang or Microsoft.
202
+ </p>
203
+ </div>
204
+ </footer>
205
+
206
+ <script>
207
+ // Add interactive elements
208
+ document.getElementById('downloadBtn').addEventListener('click', function() {
209
+ alert('The download will begin shortly... Prepare for terror!');
210
+ // In a real implementation, this would trigger a download
211
+ });
212
+
213
+ // Add spooky effect to monster cards
214
+ const monsterCards = document.querySelectorAll('.monster-card');
215
+ monsterCards.forEach(card => {
216
+ card.addEventListener('mouseenter', function() {
217
+ const icon = this.querySelector('i');
218
+ if (icon) {
219
+ icon.classList.add('fa-bounce');
220
+ setTimeout(() => {
221
+ icon.classList.remove('fa-bounce');
222
+ }, 1000);
223
+ }
224
+ });
225
+ });
226
+
227
+ // Add creepy sound on header hover
228
+ const header = document.querySelector('header');
229
+ header.addEventListener('mouseenter', function() {
230
+ // In a real implementation, we'd play a subtle creepy sound
231
+ console.log('Play creepy ambient sound...');
232
+ });
233
+ </script>
234
+ <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=Dragunflie-420/travons-minecraft-horror-infection-mod" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
235
+ </html>