Add 2 files
Browse files- index.html +67 -6
- prompts.txt +3 -1
index.html
CHANGED
|
@@ -40,6 +40,10 @@
|
|
| 40 |
transform: translateY(-5px);
|
| 41 |
box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
|
| 42 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
.banner {
|
| 44 |
background: linear-gradient(135deg, rgba(20, 30, 40, 0.9) 0%, rgba(50, 60, 70, 0.8) 100%);
|
| 45 |
border-bottom: 3px solid #f59e0b;
|
|
@@ -55,7 +59,7 @@
|
|
| 55 |
<!-- Banner at the top -->
|
| 56 |
<div class="banner w-full py-4 text-center">
|
| 57 |
<div class="container mx-auto px-4">
|
| 58 |
-
<h2 class="text-2xl md:text-3xl font-bold text-amber-400">THE
|
| 59 |
<p class="text-gray-300 mt-2">Future pirates of the seven seas</p>
|
| 60 |
</div>
|
| 61 |
</div>
|
|
@@ -93,6 +97,7 @@
|
|
| 93 |
<div class="hidden md:flex space-x-6">
|
| 94 |
<a href="#personality" class="nav-link text-white hover:text-amber-400">Personality</a>
|
| 95 |
<a href="#crew" class="nav-link text-white hover:text-amber-400">Crew</a>
|
|
|
|
| 96 |
<a href="#quotes" class="nav-link text-white hover:text-amber-400">Quotes</a>
|
| 97 |
</div>
|
| 98 |
<button class="md:hidden text-white focus:outline-none" id="mobileMenuButton">
|
|
@@ -102,6 +107,7 @@
|
|
| 102 |
<div class="md:hidden hidden py-2" id="mobileMenu">
|
| 103 |
<a href="#personality" class="block py-2 text-white hover:text-amber-400">Personality</a>
|
| 104 |
<a href="#crew" class="block py-2 text-white hover:text-amber-400">Crew</a>
|
|
|
|
| 105 |
<a href="#quotes" class="block py-2 text-white hover:text-amber-400">Quotes</a>
|
| 106 |
</div>
|
| 107 |
</div>
|
|
@@ -196,7 +202,7 @@
|
|
| 196 |
<section id="crew" class="py-16 bg-gray-800 parallax">
|
| 197 |
<div class="container mx-auto px-4">
|
| 198 |
<div class="text-center mb-12">
|
| 199 |
-
<h2 class="text-3xl md:text-4xl font-bold text-white mb-4">The
|
| 200 |
<div class="w-24 h-1 bg-amber-500 mx-auto"></div>
|
| 201 |
<p class="text-gray-300 mt-4 max-w-2xl mx-auto">
|
| 202 |
The future crew that will sail the seven seas.
|
|
@@ -204,13 +210,16 @@
|
|
| 204 |
</div>
|
| 205 |
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
|
| 206 |
<!-- First Mate Finbar -->
|
| 207 |
-
<div class="crew-card bg-gray-900 bg-opacity-80 p-6 rounded-lg shadow-lg transition duration-300
|
| 208 |
<div class="text-center mb-4">
|
| 209 |
<img src="https://media.discordapp.net/attachments/1286321273718313022/1376324312293965834/OIP_2.jpg?ex=6834e966&is=683397e6&hm=326e900591d327df63707b417c63c8cbfc7699bea244aa492dda8875b613e7b4&=&format=webp"
|
| 210 |
alt="Finbar" class="w-32 h-32 mx-auto rounded-full border-4 border-amber-500 object-cover">
|
| 211 |
</div>
|
| 212 |
-
<h3 class="text-xl font-bold text-amber-400 mb-2">FINBAR</h3>
|
| 213 |
-
<p class="text-gray-400 text-sm text-center mb-4">First Mate</p>
|
|
|
|
|
|
|
|
|
|
| 214 |
</div>
|
| 215 |
|
| 216 |
<!-- More empty positions -->
|
|
@@ -237,8 +246,60 @@
|
|
| 237 |
</div>
|
| 238 |
</section>
|
| 239 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 240 |
<!-- Quotes Section -->
|
| 241 |
-
<section id="quotes" class="py-16 bg-gray-
|
| 242 |
<div class="container mx-auto px-4">
|
| 243 |
<div class="text-center mb-12">
|
| 244 |
<h2 class="text-3xl md:text-4xl font-bold text-amber-400 mb-4">Legendary Quotes</h2>
|
|
|
|
| 40 |
transform: translateY(-5px);
|
| 41 |
box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
|
| 42 |
}
|
| 43 |
+
.enemy-card:hover {
|
| 44 |
+
transform: translateY(-5px);
|
| 45 |
+
box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
|
| 46 |
+
}
|
| 47 |
.banner {
|
| 48 |
background: linear-gradient(135deg, rgba(20, 30, 40, 0.9) 0%, rgba(50, 60, 70, 0.8) 100%);
|
| 49 |
border-bottom: 3px solid #f59e0b;
|
|
|
|
| 59 |
<!-- Banner at the top -->
|
| 60 |
<div class="banner w-full py-4 text-center">
|
| 61 |
<div class="container mx-auto px-4">
|
| 62 |
+
<h2 class="text-2xl md:text-3xl font-bold text-amber-400">THE DREAMERS</h2>
|
| 63 |
<p class="text-gray-300 mt-2">Future pirates of the seven seas</p>
|
| 64 |
</div>
|
| 65 |
</div>
|
|
|
|
| 97 |
<div class="hidden md:flex space-x-6">
|
| 98 |
<a href="#personality" class="nav-link text-white hover:text-amber-400">Personality</a>
|
| 99 |
<a href="#crew" class="nav-link text-white hover:text-amber-400">Crew</a>
|
| 100 |
+
<a href="#enemies" class="nav-link text-white hover:text-amber-400">Enemies</a>
|
| 101 |
<a href="#quotes" class="nav-link text-white hover:text-amber-400">Quotes</a>
|
| 102 |
</div>
|
| 103 |
<button class="md:hidden text-white focus:outline-none" id="mobileMenuButton">
|
|
|
|
| 107 |
<div class="md:hidden hidden py-2" id="mobileMenu">
|
| 108 |
<a href="#personality" class="block py-2 text-white hover:text-amber-400">Personality</a>
|
| 109 |
<a href="#crew" class="block py-2 text-white hover:text-amber-400">Crew</a>
|
| 110 |
+
<a href="#enemies" class="block py-2 text-white hover:text-amber-400">Enemies</a>
|
| 111 |
<a href="#quotes" class="block py-2 text-white hover:text-amber-400">Quotes</a>
|
| 112 |
</div>
|
| 113 |
</div>
|
|
|
|
| 202 |
<section id="crew" class="py-16 bg-gray-800 parallax">
|
| 203 |
<div class="container mx-auto px-4">
|
| 204 |
<div class="text-center mb-12">
|
| 205 |
+
<h2 class="text-3xl md:text-4xl font-bold text-white mb-4">The Dreamers</h2>
|
| 206 |
<div class="w-24 h-1 bg-amber-500 mx-auto"></div>
|
| 207 |
<p class="text-gray-300 mt-4 max-w-2xl mx-auto">
|
| 208 |
The future crew that will sail the seven seas.
|
|
|
|
| 210 |
</div>
|
| 211 |
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
|
| 212 |
<!-- First Mate Finbar -->
|
| 213 |
+
<div class="crew-card bg-gray-900 bg-opacity-80 p-6 rounded-lg shadow-lg transition duration-300">
|
| 214 |
<div class="text-center mb-4">
|
| 215 |
<img src="https://media.discordapp.net/attachments/1286321273718313022/1376324312293965834/OIP_2.jpg?ex=6834e966&is=683397e6&hm=326e900591d327df63707b417c63c8cbfc7699bea244aa492dda8875b613e7b4&=&format=webp"
|
| 216 |
alt="Finbar" class="w-32 h-32 mx-auto rounded-full border-4 border-amber-500 object-cover">
|
| 217 |
</div>
|
| 218 |
+
<h3 class="text-xl font-bold text-amber-400 mb-2 text-center">FINBAR</h3>
|
| 219 |
+
<p class="text-gray-400 text-sm text-center mb-4">First Mate & Right Hand Man</p>
|
| 220 |
+
<p class="text-gray-300 text-center">
|
| 221 |
+
Nice humble person, Captain's first mate and best friend. He is the best mate one could wish for - very very nice person who likes helping poor people. Free spirited, care free and naughty sometimes, but always loyal to the crew.
|
| 222 |
+
</p>
|
| 223 |
</div>
|
| 224 |
|
| 225 |
<!-- More empty positions -->
|
|
|
|
| 246 |
</div>
|
| 247 |
</section>
|
| 248 |
|
| 249 |
+
<!-- Enemies Section -->
|
| 250 |
+
<section id="enemies" class="py-16 bg-gray-900">
|
| 251 |
+
<div class="container mx-auto px-4">
|
| 252 |
+
<div class="text-center mb-12">
|
| 253 |
+
<h2 class="text-3xl md:text-4xl font-bold text-red-500 mb-4">Sworn Enemies</h2>
|
| 254 |
+
<div class="w-24 h-1 bg-red-500 mx-auto"></div>
|
| 255 |
+
<p class="text-gray-300 mt-4 max-w-2xl mx-auto">
|
| 256 |
+
Those who dare stand against Captain Dreamer and his crew.
|
| 257 |
+
</p>
|
| 258 |
+
</div>
|
| 259 |
+
<div class="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
|
| 260 |
+
<!-- TaRaNtUla WeeZurd -->
|
| 261 |
+
<div class="enemy-card bg-gray-800 p-6 rounded-lg shadow-lg transition duration-300">
|
| 262 |
+
<div class="text-center mb-4">
|
| 263 |
+
<img src="https://media.discordapp.net/attachments/1376326854625202326/1376327331282550925/d75043f74b72d40d27d1fb3b9600ed392.jpg?ex=6834ec36&is=68339ab6&hm=3dca474af59914ed442f6b82f38267e93883646200c57495e298422a3da6568e&=&format=webp"
|
| 264 |
+
alt="TaRaNtUla WeeZurd" class="w-32 h-32 mx-auto rounded-full border-4 border-red-500 object-cover">
|
| 265 |
+
</div>
|
| 266 |
+
<h3 class="text-xl font-bold text-red-400 mb-2 text-center">TaRaNtUla WeeZurd</h3>
|
| 267 |
+
<p class="text-gray-400 text-sm text-center mb-4">The Venomous Trickster</p>
|
| 268 |
+
<p class="text-gray-300 text-center">
|
| 269 |
+
A cunning and unpredictable foe who strikes from the shadows. Known for his deceptive tactics and poisonous words that can turn allies against each other. His web of lies ensnares the weak-willed, making him a dangerous adversary despite his unassuming appearance.
|
| 270 |
+
</p>
|
| 271 |
+
<div class="mt-4 text-center">
|
| 272 |
+
<span class="inline-block bg-red-900 text-red-300 text-xs px-3 py-1 rounded-full">Danger Level: High</span>
|
| 273 |
+
<span class="inline-block bg-gray-700 text-gray-300 text-xs px-3 py-1 rounded-full ml-2">Specialty: Psychological Warfare</span>
|
| 274 |
+
</div>
|
| 275 |
+
</div>
|
| 276 |
+
|
| 277 |
+
<!-- Empty enemy slots -->
|
| 278 |
+
<div class="enemy-card bg-gray-800 p-6 rounded-lg shadow-lg transition duration-300 text-center">
|
| 279 |
+
<div class="text-red-500 text-5xl mb-4">
|
| 280 |
+
<i class="fas fa-question"></i>
|
| 281 |
+
</div>
|
| 282 |
+
<h3 class="text-xl font-bold text-red-400 mb-2">Unknown Enemy</h3>
|
| 283 |
+
<p class="text-gray-300">
|
| 284 |
+
More foes will reveal themselves as Captain Dreamer's legend grows.
|
| 285 |
+
</p>
|
| 286 |
+
</div>
|
| 287 |
+
|
| 288 |
+
<div class="enemy-card bg-gray-800 p-6 rounded-lg shadow-lg transition duration-300 text-center">
|
| 289 |
+
<div class="text-red-500 text-5xl mb-4">
|
| 290 |
+
<i class="fas fa-skull"></i>
|
| 291 |
+
</div>
|
| 292 |
+
<h3 class="text-xl font-bold text-red-400 mb-2">Future Rival</h3>
|
| 293 |
+
<p class="text-gray-300">
|
| 294 |
+
The seas are vast and filled with those who would oppose freedom.
|
| 295 |
+
</p>
|
| 296 |
+
</div>
|
| 297 |
+
</div>
|
| 298 |
+
</div>
|
| 299 |
+
</section>
|
| 300 |
+
|
| 301 |
<!-- Quotes Section -->
|
| 302 |
+
<section id="quotes" class="py-16 bg-gray-800">
|
| 303 |
<div class="container mx-auto px-4">
|
| 304 |
<div class="text-center mb-12">
|
| 305 |
<h2 class="text-3xl md:text-4xl font-bold text-amber-400 mb-4">Legendary Quotes</h2>
|
prompts.txt
CHANGED
|
@@ -2,4 +2,6 @@ can you remove capetain dreamers legend for now?
|
|
| 2 |
remove Brilliant Strategist Captain Dreamer's mind is as sharp as his cutlass. He can outmaneuver any navy, predict storms days in advance, and always has three escape plans ready before attacking. Loyal to His Crew While feared by enemies, Dreamer is beloved by his crew. He shares all plunder equally, never leaves a man behind, and would rather walk the plank himself than see his crew suffer. Charismatic Rogue With a wink and a smile, Dreamer can charm his way out of (or into) any situation. His quick wit and silver tongue are as legendary as his swordsmanship. and put this in one box "Goofy and dumb and weak on the outside tho inside he deeply loves his crew he is sharp minded and he wont bow nor listen to any commands from anyone only ones he will listen to are God and His mother he is also very powerfull in battles
|
| 3 |
maake crew section and put banner on the top
|
| 4 |
remove quotes for now and all crew members for now and change The Most Legendary Pirate of the Seven Seas to The Future Pirate of the Seven Seas as my flag put https://media.discordapp.net/attachments/1362545726881665367/1376320714612805632/sketch1745906777033.jpg?ex=6834e60d&is=6833948d&hm=bc158d14b04326841057595dbe15eb32351adb2d9b68ec795cc071fbb1db9bcd&=&format=webp&width=687&height=701 if image link doesnt work than dont use it and remove wwhole gallery and all quotes leave quotes tab there though
|
| 5 |
-
remove option to change flag/banner and under the CAPTAIN DREAMER add the https://media.discordapp.net/attachments/1362545726881665367/1376320714612805632/sketch1745906777033.jpg?ex=6834e60d&is=6833948d&hm=bc158d14b04326841057595dbe15eb32351adb2d9b68ec795cc071fbb1db9bcd&=&format=webp&width=687&height=701 as a flag also add Finbar as my first mate aka my right hand man use this as his pfp https://media.discordapp.net/attachments/1286321273718313022/1376324312293965834/OIP_2.jpg?ex=6834e966&is=683397e6&hm=326e900591d327df63707b417c63c8cbfc7699bea244aa492dda8875b613e7b4&=&format=webp do not add description to him
|
|
|
|
|
|
|
|
|
| 2 |
remove Brilliant Strategist Captain Dreamer's mind is as sharp as his cutlass. He can outmaneuver any navy, predict storms days in advance, and always has three escape plans ready before attacking. Loyal to His Crew While feared by enemies, Dreamer is beloved by his crew. He shares all plunder equally, never leaves a man behind, and would rather walk the plank himself than see his crew suffer. Charismatic Rogue With a wink and a smile, Dreamer can charm his way out of (or into) any situation. His quick wit and silver tongue are as legendary as his swordsmanship. and put this in one box "Goofy and dumb and weak on the outside tho inside he deeply loves his crew he is sharp minded and he wont bow nor listen to any commands from anyone only ones he will listen to are God and His mother he is also very powerfull in battles
|
| 3 |
maake crew section and put banner on the top
|
| 4 |
remove quotes for now and all crew members for now and change The Most Legendary Pirate of the Seven Seas to The Future Pirate of the Seven Seas as my flag put https://media.discordapp.net/attachments/1362545726881665367/1376320714612805632/sketch1745906777033.jpg?ex=6834e60d&is=6833948d&hm=bc158d14b04326841057595dbe15eb32351adb2d9b68ec795cc071fbb1db9bcd&=&format=webp&width=687&height=701 if image link doesnt work than dont use it and remove wwhole gallery and all quotes leave quotes tab there though
|
| 5 |
+
remove option to change flag/banner and under the CAPTAIN DREAMER add the https://media.discordapp.net/attachments/1362545726881665367/1376320714612805632/sketch1745906777033.jpg?ex=6834e60d&is=6833948d&hm=bc158d14b04326841057595dbe15eb32351adb2d9b68ec795cc071fbb1db9bcd&=&format=webp&width=687&height=701 as a flag also add Finbar as my first mate aka my right hand man use this as his pfp https://media.discordapp.net/attachments/1286321273718313022/1376324312293965834/OIP_2.jpg?ex=6834e966&is=683397e6&hm=326e900591d327df63707b417c63c8cbfc7699bea244aa492dda8875b613e7b4&=&format=webp do not add description to him
|
| 6 |
+
change The Golden Revenge Crew to The Dreamers add finbars description like this: Nice humble person Capetains first mate and best friend he is best mate one could wish for he is very very nice person and likes helping poor people he is free spirited care free and naughty sometimes
|
| 7 |
+
add enemies tab under the crew and put guy named TaRaNtUla wEeZurd in enemy tab his profile pic is https://media.discordapp.net/attachments/1376326854625202326/1376327331282550925/d75043f74b72d40d27d1fb3b9600ed392.jpg?ex=6834ec36&is=68339ab6&hm=3dca474af59914ed442f6b82f38267e93883646200c57495e298422a3da6568e&=&format=webp
|