Dragunflie-420's picture
Update index.html
dbdafab verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> Dark Horror Mod</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Creepster&display=swap');
body {
background-color: #111;
color: #eee;
font-family: 'Courier New', monospace;
padding: 20px;
background-image:
radial-gradient(circle at 10% 20%, rgba(70, 0, 70, 0.1) 0%, transparent 20%),
radial-gradient(circle at 90% 80%, rgba(0, 70, 70, 0.1) 0%, transparent 20%);
min-height: 100vh;
}
header {
text-align: center;
margin-bottom: 30px;
}
h1 {
color: #f54291;
font-family: 'Creepster', cursive;
font-size: 2.5rem;
margin-bottom: 1rem;
}
h2 {
color: #42f5b3;
font-size: 1.8rem;
margin-bottom: 1rem;
}
ul {
list-style-type: "☠️ ";
padding-left: 1.5rem;
}
section {
margin-bottom: 30px;
}
footer {
text-align: center;
color: #888;
font-size: 0.8em;
margin-top: 2rem;
}
.creepster-font {
font-family: 'Creepster', cursive;
}
.glow-text {
text-shadow: 0 0 5px #ff00ff, 0 0 10px #ff00ff;
}
.pulse {
animation: pulse 2s infinite;
}
@keyframes pulse {
0% { opacity: 0.8; }
50% { opacity: 1; }
100% { opacity: 0.8; }
}
.monster-card {
transition: all 0.3s ease;
border-left: 3px solid transparent;
background-color: rgba(17, 17, 17, 0.8);
padding: 1.5rem;
border-radius: 0.5rem;
}
.monster-card:hover {
transform: translateY(-5px);
border-left: 3px solid #f54291;
box-shadow: 0 10px 15px -5px rgba(245, 66, 145, 0.3);
}
.corrupted-flower {
filter: drop-shadow(0 0 5px #42f5b3);
animation: sway 3s ease-in-out infinite alternate;
}
@keyframes sway {
0% { transform: rotate(-5deg); }
100% { transform: rotate(5deg); }
}
.footer-link:hover {
color: #f54291;
text-decoration: underline;
}
.section-divider {
height: 1px;
background: linear-gradient(90deg, transparent, #42f5b3, transparent);
margin: 2rem 0;
}
#downloadBtn {
background-color: #f54291;
color: white;
font-weight: bold;
padding: 0.75rem 1.5rem;
border-radius: 9999px;
transition: all 0.3s ease;
}
#downloadBtn:hover {
background-color: #d43a7d;
transform: scale(1.05);
}
</style>
</head>
<body class="flex flex-col min-h-screen">
<header class="py-8 px-4 sm:px-6 lg:px-8 border-b border-purple-900">
<div class="max-w-4xl mx-auto">
<h1 class="text-4xl md:text-5xl mb-4 glow-text">
<i class="fas fa-ghost mr-2"></i>TraVon's Minecraft Horror & Infection Mod
</h1>
<p class="text-xl md:text-2xl text-gray-300 italic pulse">
"Where the darkness watches... and waits."
</p>
</div>
</header>
<main class="flex-grow container mx-auto px-4 sm:px-6 lg:px-8 py-12 max-w-4xl">
<section class="mb-16">
<div class="flex items-center mb-8">
<i class="fas fa-skull text-3xl text-red-500 mr-4"></i>
<h2>Phase One: The Three Monsters</h2>
</div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6 mb-8">
<div class="monster-card">
<div class="flex items-center mb-4">
<i class="fas fa-user-secret text-2xl text-purple-400 mr-3"></i>
<h3 class="text-xl font-bold text-purple-300">Mimicker</h3>
</div>
<p>Breaks light sources, mimics sounds of players and friendly mobs, tricks the player into false security. It learns from your behavior.</p>
<div class="mt-4">
<span class="inline-block bg-purple-900 text-purple-200 text-xs px-2 py-1 rounded">Stealth</span>
<span class="inline-block bg-purple-900 text-purple-200 text-xs px-2 py-1 rounded ml-1">Psychological</span>
</div>
</div>
<div class="monster-card">
<div class="flex items-center mb-4">
<i class="fas fa-mask text-2xl text-blue-400 mr-3"></i>
<h3 class="text-xl font-bold text-blue-300">Illusionist</h3>
</div>
<p>Spawns fake mobs with creepy behaviors. They look normal at first but gradually reveal their true nature through disturbing animations.</p>
<div class="mt-4">
<span class="inline-block bg-blue-900 text-blue-200 text-xs px-2 py-1 rounded">Deception</span>
<span class="inline-block bg-blue-900 text-blue-200 text-xs px-2 py-1 rounded ml-1">Hallucination</span>
</div>
</div>
<div class="monster-card">
<div class="flex items-center mb-4">
<i class="fas fa-angry text-2xl text-red-400 mr-3"></i>
<h3 class="text-xl font-bold text-red-300">The Screamer</h3>
</div>
<p>Final form that appears when you're most vulnerable. Indestructible, deals real damage, and causes auditory hallucinations.</p>
<div class="mt-4">
<span class="inline-block bg-red-900 text-red-200 text-xs px-2 py-1 rounded">Boss</span>
<span class="inline-block bg-red-900 text-red-200 text-xs px-2 py-1 rounded ml-1">Terror</span>
</div>
</div>
</div>
<div class="bg-gray-900 p-6 rounded-lg border-l-4 border-red-500">
<h3 class="text-xl font-bold text-red-300 mb-3">Progression System</h3>
<p>Monsters evolve based on player actions. The more you interact with them, the smarter and more dangerous they become. They remember your tactics.</p>
</div>
</section>
<div class="section-divider"></div>
<section class="mt-16">
<div class="flex items-center mb-8">
<i class="fas fa-biohazard text-3xl text-green-500 mr-4"></i>
<h2>Phase Two: The Surface Infection</h2>
</div>
<div class="flex flex-col md:flex-row gap-8 items-center">
<div class="md:w-2/3">
<p class="text-lg mb-4">
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.
</p>
<p class="text-lg mb-6 italic">
<i class="fas fa-exclamation-triangle text-yellow-500 mr-2"></i> No cure. No escape. Just survival.
</p>
<div class="bg-gray-900 p-4 rounded-lg border-l-4 border-green-500">
<h3 class="text-lg font-bold text-green-300 mb-2">Key Features:</h3>
<ul class="space-y-1">
<li>Dynamic infection spread based on time and player location</li>
<li>Mutated creatures with enhanced abilities</li>
<li>Environmental hazards like toxic rain and corrupted soil</li>
<li>Underground remains safe... for now</li>
</ul>
</div>
</div>
<div class="md:w-1/3 flex justify-center">
<img src="https://i.imgur.com/JqYeZvL.png" alt="Corrupted Flower" class="corrupted-flower w-48 h-48 object-contain">
</div>
</div>
</section>
<div class="mt-16 bg-black bg-opacity-50 p-6 rounded-lg border border-purple-900">
<h3 class="text-2xl font-bold text-center text-purple-300 mb-4 creepster-font">Are You Ready?</h3>
<p class="text-center mb-6">
This mod is designed for horror enthusiasts who want a truly terrifying Minecraft experience. Not for the faint of heart.
</p>
<div class="flex justify-center">
<button id="downloadBtn" class="flex items-center">
<i class="fas fa-download mr-2"></i> Download Now (v1.0.3)
</button>
</div>
</div>
</main>
<footer class="py-8 px-4 sm:px-6 lg:px-8 border-t border-purple-900">
<div class="max-w-4xl mx-auto">
<p class="mb-4">
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>
</p>
<div class="flex justify-center space-x-6">
<a href="#" class="text-gray-400 hover:text-purple-400 transition-colors duration-200">
<i class="fab fa-twitter text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-purple-400 transition-colors duration-200">
<i class="fab fa-youtube text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-purple-400 transition-colors duration-200">
<i class="fab fa-github text-xl"></i>
</a>
<a href="#" class="text-gray-400 hover:text-purple-400 transition-colors duration-200">
<i class="fab fa-discord text-xl"></i>
</a>
</div>
<p class="text-gray-500 text-sm mt-4">
© 2023 TraVon's Horror Mod. Not affiliated with Mojang or Microsoft.
</p>
</div>
</footer>
<script>
// Add interactive elements
document.getElementById('downloadBtn').addEventListener('click', function() {
alert('The download will begin shortly... Prepare for terror!');
// In a real implementation, this would trigger a download
});
// Add spooky effect to monster cards
const monsterCards = document.querySelectorAll('.monster-card');
monsterCards.forEach(card => {
card.addEventListener('mouseenter', function() {
const icon = this.querySelector('i');
if (icon) {
icon.classList.add('fa-bounce');
setTimeout(() => {
icon.classList.remove('fa-bounce');
}, 1000);
}
});
});
// Add creepy sound on header hover
const header = document.querySelector('header');
header.addEventListener('mouseenter', function() {
// In a real implementation, we'd play a subtle creepy sound
console.log('Play creepy ambient sound...');
});
</script>
<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>
</html>