diff --git a/src/assets/css/style.css b/src/assets/css/style.css
index b8af91c..bd0987a 100644
--- a/src/assets/css/style.css
+++ b/src/assets/css/style.css
@@ -14,6 +14,14 @@
--danger: #dc2626;
--card-shadow:
0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
+ /* Default Rarity Colors */
+ --rarity-common: #94a3b8;
+ --rarity-uncommon: #64748b; /* Adjusted from pure black for better theme compatibility */
+ --rarity-rare: #3b82f6;
+ --rarity-epic: #a855f7;
+ --rarity-legendary: #fbbf24;
+ --rarity-mythic: #ef4444;
+ --rarity-absolute: #ffffff;
}
.dark {
@@ -27,6 +35,14 @@
--accent-light: rgba(56, 189, 248, 0.1);
--danger: #f87171;
--card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
+ --rarity-absolute: #ffffff;
+ --rarity-uncommon: #cbd5e1;
+}
+
+/* Light Mode specific overrides if needed */
+.light {
+ --rarity-absolute: #0f172a; /* Make absolute dark on light themes so it's visible */
+ --rarity-uncommon: #1e293b;
}
html,
diff --git a/src/assets/js/script.js b/src/assets/js/script.js
index db52f93..34ab265 100644
--- a/src/assets/js/script.js
+++ b/src/assets/js/script.js
@@ -989,27 +989,103 @@ async function addExperience(amount) {
updateGameUI();
}
+function updateInventoryCounts(lvl) {
+ // Initialize counts
+ const counts = {
+ common: 0,
+ uncommon: 0,
+ rare: 0,
+ epic: 0,
+ legendary: 0,
+ mythic: 0,
+ absolute: 0,
+ };
+
+ // Loop through LEVELS array up to current unlocked level
+ // We use i <= lvl because currentLevel is the index reached
+ for (let i = 0; i <= lvl; i++) {
+ const levelEntry = LEVELS[i];
+ if (levelEntry && levelEntry.rarity) {
+ const r = levelEntry.rarity.toLowerCase();
+ if (counts.hasOwnProperty(r)) {
+ counts[r]++;
+ }
+ }
+ }
+
+ // Inject counts into the Tooltip DOM
+ const elements = {
+ 'count-common': counts.common,
+ 'count-uncommon': counts.uncommon,
+ 'count-rare': counts.rare,
+ 'count-epic': counts.epic,
+ 'count-legendary': counts.legendary,
+ 'count-mythic': counts.mythic,
+ 'count-absolute': counts.absolute,
+ };
+
+ for (const [id, val] of Object.entries(elements)) {
+ const el = document.getElementById(id);
+ if (el) el.innerText = val;
+ }
+}
+
+function updateLevelUI(levelData) {
+ // ... your existing code to update level-name and level-number ...
+
+ const tooltipDesc = document.getElementById('tooltip-desc');
+ const tooltipRarity = document.getElementById('tooltip-rarity');
+ const tooltipCard = document.getElementById('level-tooltip');
+
+ // Update Text
+ tooltipDesc.innerText = levelData.description;
+ tooltipRarity.innerText = levelData.rarity;
+
+ // Optional: Dynamic Color based on rarity
+ const rarityColors = {
+ common: "var(--rarity-common)",
+ uncommon: "var(--rarity-uncommon)",
+ rare: "var(--rarity-rare)",
+ epic: "var(--rarity-epic)",
+ legendary: "var(--rarity-legendary)",
+ mythic: "var(--rarity-mythic)",
+ absolute: "var(--rarity-absolute)"
+ };
+
+ const color = rarityColors[levelData.rarity] || "var(--accent)";
+ tooltipRarity.style.backgroundColor = `${color}20`; // 20 is hex alpha for transparency
+ tooltipRarity.style.color = color;
+ tooltipCard.style.borderColor = `${color}40`; // Subtle border glow
+}
+
function updateGameUI() {
const lvl = Number(currentLevel) || 0;
const rank = getRank(lvl);
+ // 1. Update the Description Tooltip
+ updateLevelUI(rank);
+
+ // 2. Calculate and Update the Inventory Tooltip
+ updateInventoryCounts(lvl);
+
// Update the Name and its Color
const nameLabel = document.getElementById("level-name");
if (nameLabel) {
nameLabel.innerText = rank.name;
- nameLabel.style.color = rank.color; // This applies the array color
+ nameLabel.style.color = rank.color;
}
- // Update the Badge Background
+ // Update the Badge
const badge = document.getElementById("level-badge");
if (badge) {
badge.innerText = rank.emoji;
badge.style.backgroundColor = rank.color;
+ // Set contrast text color for the emoji/background
+ badge.style.color = getContrastYIQ(rank.color);
}
- // Update the Number and XP
if (document.getElementById("level-number")) {
- document.getElementById("level-number").innerText = lvl;
+ document.getElementById("level-number").innerText = lvl.toString();
}
if (document.getElementById("total-xp-display")) {
@@ -1161,6 +1237,20 @@ document.addEventListener("DOMContentLoaded", () => {
devPanel.classList.remove("hidden");
}
+ const container = document.getElementById("matrix-console-container");
+ const reopenBtn = document.getElementById("reopen-console-btn");
+
+ // Force closed state on load
+ if (container) {
+ container.classList.add("hidden");
+ container.style.opacity = "0";
+ container.style.transform = "translateY(20px)";
+ }
+
+ if (reopenBtn) {
+ reopenBtn.classList.remove("hidden");
+ }
+
initDotEasterEgg();
initSkillMining();
// Initialize the profile counter
From 3b5eb1108df9bd19a78d09c6b98de5feff35c2ad Mon Sep 17 00:00:00 2001
From: John Bampton
Date: Wed, 28 Jan 2026 08:43:47 +1000
Subject: [PATCH 2/2] Fixups prettier
---
src/_data/levels.js | 10673 +++++++++++++++++++++++++++++---------
src/assets/js/script.js | 84 +-
2 files changed, 8271 insertions(+), 2486 deletions(-)
diff --git a/src/_data/levels.js b/src/_data/levels.js
index 9a58e0e..fb32d64 100644
--- a/src/_data/levels.js
+++ b/src/_data/levels.js
@@ -1,2486 +1,8271 @@
// _data/levels.js
module.exports = [
-// --- CODING & TECH ORIGINS (0-10) ---
-{
- level: 0,
- name: "Newbie",
- emoji: "๐ฃ",
- color: "#94a3b8",
- rarity: "common",
- description: "Hello World. You have no idea what you're doing yet."
-},
-{
- level: 1,
- name: "Script Kid",
- emoji: "๐น",
- color: "#10b981",
- rarity: "common",
- description: "You know how to copy-paste from Stack Overflow."
-},
-{
- level: 2,
- name: "Code Breaker",
- emoji: "๐ต๏ธโโ๏ธ",
- color: "#f59e0b",
- rarity: "common",
- description: "You deleted a semicolon and the whole site crashed."
-},
-{
- level: 3,
- name: "Void Walker",
- emoji: "๐",
- color: "#6366f1",
- rarity: "uncommon",
- description: "Staring into the console logs until they stare back."
-},
-{
- level: 4,
- name: "Bug Hunter",
- emoji: "๐",
- color: "#84cc16",
- rarity: "uncommon",
- description: "It's not a feature, it's a... wait, no, that's definitely a bug."
-},
-{
- level: 5,
- name: "Data Miner",
- emoji: "๐",
- color: "#06b6d4",
- rarity: "uncommon",
- description: "Sifting through JSON responses for digital gold."
-},
-{
- level: 6,
- name: "Sys Admin",
- emoji: "๐ ๏ธ",
- color: "#ec4899",
- rarity: "rare",
- description: "Have you tried turning it off and on again?"
-},
-{
- level: 7,
- name: "Terminal Pro",
- emoji: "โจ๏ธ",
- color: "#7c3aed",
- rarity: "rare",
- description: "You haven't touched a mouse in three days."
-},
-{
- level: 8,
- name: "Cloud Expert",
- emoji: "โ๏ธ",
- color: "#3b82f6",
- rarity: "rare",
- description: "There is no cloud, just someone else's computer."
-},
-{
- level: 9,
- name: "Full Stack",
- emoji: "๐ฅ",
- color: "#f97316",
- rarity: "epic",
- description: "Backend, frontend, and the mental breakdown in the middle."
-},
-{
- level: 10,
- name: "Architect",
- emoji: "๐",
- color: "#ef4444",
- rarity: "epic",
- description: "You dream in UML diagrams and serverless infrastructure."
-},
+ // --- CODING & TECH ORIGINS (0-10) ---
+ {
+ level: 0,
+ name: "Newbie",
+ emoji: "๐ฃ",
+ color: "#94a3b8",
+ rarity: "common",
+ description: "Hello World. You have no idea what you're doing yet.",
+ },
+ {
+ level: 1,
+ name: "Script Kid",
+ emoji: "๐น",
+ color: "#10b981",
+ rarity: "common",
+ description: "You know how to copy-paste from Stack Overflow.",
+ },
+ {
+ level: 2,
+ name: "Code Breaker",
+ emoji: "๐ต๏ธโโ๏ธ",
+ color: "#f59e0b",
+ rarity: "common",
+ description: "You deleted a semicolon and the whole site crashed.",
+ },
+ {
+ level: 3,
+ name: "Void Walker",
+ emoji: "๐",
+ color: "#6366f1",
+ rarity: "uncommon",
+ description: "Staring into the console logs until they stare back.",
+ },
+ {
+ level: 4,
+ name: "Bug Hunter",
+ emoji: "๐",
+ color: "#84cc16",
+ rarity: "uncommon",
+ description:
+ "It's not a feature, it's a... wait, no, that's definitely a bug.",
+ },
+ {
+ level: 5,
+ name: "Data Miner",
+ emoji: "๐",
+ color: "#06b6d4",
+ rarity: "uncommon",
+ description: "Sifting through JSON responses for digital gold.",
+ },
+ {
+ level: 6,
+ name: "Sys Admin",
+ emoji: "๐ ๏ธ",
+ color: "#ec4899",
+ rarity: "rare",
+ description: "Have you tried turning it off and on again?",
+ },
+ {
+ level: 7,
+ name: "Terminal Pro",
+ emoji: "โจ๏ธ",
+ color: "#7c3aed",
+ rarity: "rare",
+ description: "You haven't touched a mouse in three days.",
+ },
+ {
+ level: 8,
+ name: "Cloud Expert",
+ emoji: "โ๏ธ",
+ color: "#3b82f6",
+ rarity: "rare",
+ description: "There is no cloud, just someone else's computer.",
+ },
+ {
+ level: 9,
+ name: "Full Stack",
+ emoji: "๐ฅ",
+ color: "#f97316",
+ rarity: "epic",
+ description: "Backend, frontend, and the mental breakdown in the middle.",
+ },
+ {
+ level: 10,
+ name: "Architect",
+ emoji: "๐",
+ color: "#ef4444",
+ rarity: "epic",
+ description: "You dream in UML diagrams and serverless infrastructure.",
+ },
-// --- MAGIC: THE GATHERING (11-20) ---
-{
- level: 11,
- name: "Llanowar Elf",
- emoji: "๐น",
- color: "#2d5a27",
- rarity: "common",
- description: "Tap: Add one green mana to your mana pool."
-},
-{
- level: 12,
- name: "Scryer",
- emoji: "๐ฎ",
- color: "#1d4ed8",
- rarity: "uncommon",
- description: "Look at the top two cards of your library. Put them back."
-},
-{
- level: 13,
- name: "Trampler",
- emoji: "๐",
- color: "#15803d",
- rarity: "uncommon",
- description: "You deal excess damage to the player. It hurts."
-},
-{
- level: 14,
- name: "Flying Menace",
- emoji: "๐ฆ",
- color: "#4a044e",
- rarity: "uncommon",
- description: "Can only be blocked by creatures with flying or reach."
-},
-{
- level: 15,
- name: "Mana Leech",
- emoji: "๐ง",
- color: "#0ea5e9",
- rarity: "rare",
- description: "Draining resources before the turn even begins."
-},
-{
- level: 16,
- name: "Spellcounter",
- emoji: "๐ซ",
- color: "#2563eb",
- rarity: "rare",
- description: "Nope. That spell does not resolve."
-},
-{
- level: 17,
- name: "Goblin Guide",
- emoji: "๐บ",
- color: "#dc2626",
- rarity: "rare",
- description: "Haste. Attacks each turn if able. Chaos ensues."
-},
-{
- level: 18,
- name: "Serum Visionary",
- emoji: "๐งช",
- color: "#6366f1",
- rarity: "uncommon",
- description: "Draw a card. See the future."
-},
-{
- level: 19,
- name: "Mythic Rare",
- emoji: "๐ ",
- color: "#f97316",
- rarity: "epic",
- description: "1 in 8 packs. The foil shininess is blinding."
-},
-{
- level: 20,
- name: "Planeswalker",
- emoji: "โจ",
- color: "#fbbf24",
- rarity: "legendary",
- description: "You traverse the Blind Eternities. Your loyalty is high."
-},
+ // --- MAGIC: THE GATHERING (11-20) ---
+ {
+ level: 11,
+ name: "Llanowar Elf",
+ emoji: "๐น",
+ color: "#2d5a27",
+ rarity: "common",
+ description: "Tap: Add one green mana to your mana pool.",
+ },
+ {
+ level: 12,
+ name: "Scryer",
+ emoji: "๐ฎ",
+ color: "#1d4ed8",
+ rarity: "uncommon",
+ description: "Look at the top two cards of your library. Put them back.",
+ },
+ {
+ level: 13,
+ name: "Trampler",
+ emoji: "๐",
+ color: "#15803d",
+ rarity: "uncommon",
+ description: "You deal excess damage to the player. It hurts.",
+ },
+ {
+ level: 14,
+ name: "Flying Menace",
+ emoji: "๐ฆ",
+ color: "#4a044e",
+ rarity: "uncommon",
+ description: "Can only be blocked by creatures with flying or reach.",
+ },
+ {
+ level: 15,
+ name: "Mana Leech",
+ emoji: "๐ง",
+ color: "#0ea5e9",
+ rarity: "rare",
+ description: "Draining resources before the turn even begins.",
+ },
+ {
+ level: 16,
+ name: "Spellcounter",
+ emoji: "๐ซ",
+ color: "#2563eb",
+ rarity: "rare",
+ description: "Nope. That spell does not resolve.",
+ },
+ {
+ level: 17,
+ name: "Goblin Guide",
+ emoji: "๐บ",
+ color: "#dc2626",
+ rarity: "rare",
+ description: "Haste. Attacks each turn if able. Chaos ensues.",
+ },
+ {
+ level: 18,
+ name: "Serum Visionary",
+ emoji: "๐งช",
+ color: "#6366f1",
+ rarity: "uncommon",
+ description: "Draw a card. See the future.",
+ },
+ {
+ level: 19,
+ name: "Mythic Rare",
+ emoji: "๐ ",
+ color: "#f97316",
+ rarity: "epic",
+ description: "1 in 8 packs. The foil shininess is blinding.",
+ },
+ {
+ level: 20,
+ name: "Planeswalker",
+ emoji: "โจ",
+ color: "#fbbf24",
+ rarity: "legendary",
+ description: "You traverse the Blind Eternities. Your loyalty is high.",
+ },
-// --- GAME OF THRONES (21-40) ---
-{
- level: 21,
- name: "Night's Watch",
- emoji: "๐ฆ
",
- color: "#1e293b",
- rarity: "common",
- description: "And now your watch begins. It gets cold on the Wall."
-},
-{
- level: 22,
- name: "Wildling Scout",
- emoji: "โ๏ธ",
- color: "#94a3b8",
- rarity: "uncommon",
- description: "You know nothing, but you know the land."
-},
-{
- level: 23,
- name: "Ironborn",
- emoji: "โ",
- color: "#475569",
- rarity: "uncommon",
- description: "What is dead may never die."
-},
-{
- level: 24,
- name: "Dothraki Rider",
- emoji: "๐",
- color: "#b45309",
- rarity: "rare",
- description: "A Dothraki wedding without at least three deaths is dull."
-},
-{
- level: 25,
- name: "Kingslayer",
- emoji: "๐ก๏ธ",
- color: "#facc15",
- rarity: "epic",
- description: "There are no men like me. Only me."
-},
-{
- level: 26,
- name: "Winterfell Warden",
- emoji: "๐บ",
- color: "#cbd5e1",
- rarity: "rare",
- description: "Winter is coming. You are prepared."
-},
-{
- level: 27,
- name: "Dragonstone Guard",
- emoji: "๐",
- color: "#991b1b",
- rarity: "epic",
- description: "The night is dark and full of terrors."
-},
-{
- level: 28,
- name: "Faceless Man",
- emoji: "๐ญ",
- color: "#4b5563",
- rarity: "legendary",
- description: "Valar Morghulis. A girl has no name."
-},
-{
- level: 29,
- name: "Hand of the King",
- emoji: "๐๏ธ",
- color: "#d97706",
- rarity: "epic",
- description: "You drink and you know things."
-},
-{
- level: 30,
- name: "Iron Throne Heir",
- emoji: "โ๏ธ",
- color: "#111827",
- rarity: "legendary",
- description: "Chaos is a ladder. You climbed it."
-},
+ // --- GAME OF THRONES (21-40) ---
+ {
+ level: 21,
+ name: "Night's Watch",
+ emoji: "๐ฆ
",
+ color: "#1e293b",
+ rarity: "common",
+ description: "And now your watch begins. It gets cold on the Wall.",
+ },
+ {
+ level: 22,
+ name: "Wildling Scout",
+ emoji: "โ๏ธ",
+ color: "#94a3b8",
+ rarity: "uncommon",
+ description: "You know nothing, but you know the land.",
+ },
+ {
+ level: 23,
+ name: "Ironborn",
+ emoji: "โ",
+ color: "#475569",
+ rarity: "uncommon",
+ description: "What is dead may never die.",
+ },
+ {
+ level: 24,
+ name: "Dothraki Rider",
+ emoji: "๐",
+ color: "#b45309",
+ rarity: "rare",
+ description: "A Dothraki wedding without at least three deaths is dull.",
+ },
+ {
+ level: 25,
+ name: "Kingslayer",
+ emoji: "๐ก๏ธ",
+ color: "#facc15",
+ rarity: "epic",
+ description: "There are no men like me. Only me.",
+ },
+ {
+ level: 26,
+ name: "Winterfell Warden",
+ emoji: "๐บ",
+ color: "#cbd5e1",
+ rarity: "rare",
+ description: "Winter is coming. You are prepared.",
+ },
+ {
+ level: 27,
+ name: "Dragonstone Guard",
+ emoji: "๐",
+ color: "#991b1b",
+ rarity: "epic",
+ description: "The night is dark and full of terrors.",
+ },
+ {
+ level: 28,
+ name: "Faceless Man",
+ emoji: "๐ญ",
+ color: "#4b5563",
+ rarity: "legendary",
+ description: "Valar Morghulis. A girl has no name.",
+ },
+ {
+ level: 29,
+ name: "Hand of the King",
+ emoji: "๐๏ธ",
+ color: "#d97706",
+ rarity: "epic",
+ description: "You drink and you know things.",
+ },
+ {
+ level: 30,
+ name: "Iron Throne Heir",
+ emoji: "โ๏ธ",
+ color: "#111827",
+ rarity: "legendary",
+ description: "Chaos is a ladder. You climbed it.",
+ },
-// --- WHEEL OF TIME (31-40) ---
-{
- level: 31,
- name: "Two Rivers Archer",
- emoji: "๐น",
- color: "#166534",
- rarity: "uncommon",
- description: "Best longbows in the Westlands. Don't miss."
-},
-{
- level: 32,
- name: "Gleeman",
- emoji: "๐ถ",
- color: "#be185d",
- rarity: "uncommon",
- description: "A patch-covered cloak and a story for every inn."
-},
-{
- level: 33,
- name: "Borderlander",
- emoji: "๐ก๏ธ",
- color: "#991b1b",
- rarity: "rare",
- description: "Holding back the Blight since the Breaking."
-},
-{
- level: 34,
- name: "Warders Bond",
- emoji: "๐",
- color: "#1e293b",
- rarity: "rare",
- description: "Closer than a brother. You feel what she feels."
-},
-{
- level: 35,
- name: "Aes Sedai Novice",
- emoji: "๐ฏ๏ธ",
- color: "#f8fafc",
- rarity: "uncommon",
- description: "White clothes and a lot of scrubbing floors."
-},
-{
- level: 36,
- name: "Accepted",
- emoji: "๐",
- color: "#e2e8f0",
- rarity: "rare",
- description: "You have passed the arches. The ring is yours."
-},
-{
- level: 37,
- name: "Aiel Dreamwalker",
- emoji: "๐๏ธ",
- color: "#d97706",
- rarity: "epic",
- description: "Walking the dream in the flesh. Life is a dream."
-},
-{
- level: 38,
- name: "Asha'man",
- emoji: "โก",
- color: "#000000",
- rarity: "epic",
- description: "A living weapon. Kill."
-},
-{
- level: 39,
- name: "Amyrlin Seat",
- emoji: "๐",
- color: "#ffffff",
- rarity: "legendary",
- description: "The Watcher of the Seals. The Flame of Tar Valon."
-},
-{
- level: 40,
- name: "Ta'veren",
- emoji: "๐",
- color: "#6366f1",
- rarity: "legendary",
- description: "The Pattern weaves itself around you."
-},
+ // --- WHEEL OF TIME (31-40) ---
+ {
+ level: 31,
+ name: "Two Rivers Archer",
+ emoji: "๐น",
+ color: "#166534",
+ rarity: "uncommon",
+ description: "Best longbows in the Westlands. Don't miss.",
+ },
+ {
+ level: 32,
+ name: "Gleeman",
+ emoji: "๐ถ",
+ color: "#be185d",
+ rarity: "uncommon",
+ description: "A patch-covered cloak and a story for every inn.",
+ },
+ {
+ level: 33,
+ name: "Borderlander",
+ emoji: "๐ก๏ธ",
+ color: "#991b1b",
+ rarity: "rare",
+ description: "Holding back the Blight since the Breaking.",
+ },
+ {
+ level: 34,
+ name: "Warders Bond",
+ emoji: "๐",
+ color: "#1e293b",
+ rarity: "rare",
+ description: "Closer than a brother. You feel what she feels.",
+ },
+ {
+ level: 35,
+ name: "Aes Sedai Novice",
+ emoji: "๐ฏ๏ธ",
+ color: "#f8fafc",
+ rarity: "uncommon",
+ description: "White clothes and a lot of scrubbing floors.",
+ },
+ {
+ level: 36,
+ name: "Accepted",
+ emoji: "๐",
+ color: "#e2e8f0",
+ rarity: "rare",
+ description: "You have passed the arches. The ring is yours.",
+ },
+ {
+ level: 37,
+ name: "Aiel Dreamwalker",
+ emoji: "๐๏ธ",
+ color: "#d97706",
+ rarity: "epic",
+ description: "Walking the dream in the flesh. Life is a dream.",
+ },
+ {
+ level: 38,
+ name: "Asha'man",
+ emoji: "โก",
+ color: "#000000",
+ rarity: "epic",
+ description: "A living weapon. Kill.",
+ },
+ {
+ level: 39,
+ name: "Amyrlin Seat",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "The Watcher of the Seals. The Flame of Tar Valon.",
+ },
+ {
+ level: 40,
+ name: "Ta'veren",
+ emoji: "๐",
+ color: "#6366f1",
+ rarity: "legendary",
+ description: "The Pattern weaves itself around you.",
+ },
-// --- LORD OF THE RINGS (41-50) ---
-{
- level: 41,
- name: "Hobbit Adventurer",
- emoji: "๐บ",
- color: "#15803d",
- rarity: "common",
- description: "You've had one breakfast, yes. But what about second breakfast?"
-},
-{
- level: 42,
- name: "Bree Strider",
- emoji: "๐ข",
- color: "#451a03",
- rarity: "uncommon",
- description: "A ranger of the North, sitting in the shadows."
-},
-{
- level: 43,
- name: "Riddermark Lord",
- emoji: "๐",
- color: "#166534",
- rarity: "rare",
- description: "Ride for ruin and the world's ending!"
-},
-{
- level: 44,
- name: "Gondor Soldier",
- emoji: "๐ก๏ธ",
- color: "#94a3b8",
- rarity: "uncommon",
- description: "The beacon is lit! Gondor calls for aid."
-},
-{
- level: 45,
- name: "Uruk-hai Berserker",
- emoji: "โ",
- color: "#450a0a",
- rarity: "rare",
- description: "Looks like meat's back on the menu, boys."
-},
-{
- level: 46,
- name: "Elven Archer",
- emoji: "๐",
- color: "#4ade80",
- rarity: "rare",
- description: "Your eyes see the movement of a sparrow a mile away."
-},
-{
- level: 47,
- name: "Dwarf Warrior",
- emoji: "โ๏ธ",
- color: "#78350f",
- rarity: "rare",
- description: "Nobody tosses a dwarf."
-},
-{
- level: 48,
- name: "Nazgรปl Rider",
- emoji: "๐",
- color: "#020617",
- rarity: "epic",
- description: "Screeching shadows. Do not come between a Nazgรปl and its prey."
-},
-{
- level: 49,
- name: "Istari Pupil",
- emoji: "๐ง",
- color: "#3b82f6",
- rarity: "epic",
- description: "A wizard is never late. He arrives precisely when he means to."
-},
-{
- level: 50,
- name: "Ring-bearer",
- emoji: "๐",
- color: "#fbbf24",
- rarity: "legendary",
- description: "The weight is heavy, but you must carry it to the fire."
-},
+ // --- LORD OF THE RINGS (41-50) ---
+ {
+ level: 41,
+ name: "Hobbit Adventurer",
+ emoji: "๐บ",
+ color: "#15803d",
+ rarity: "common",
+ description:
+ "You've had one breakfast, yes. But what about second breakfast?",
+ },
+ {
+ level: 42,
+ name: "Bree Strider",
+ emoji: "๐ข",
+ color: "#451a03",
+ rarity: "uncommon",
+ description: "A ranger of the North, sitting in the shadows.",
+ },
+ {
+ level: 43,
+ name: "Riddermark Lord",
+ emoji: "๐",
+ color: "#166534",
+ rarity: "rare",
+ description: "Ride for ruin and the world's ending!",
+ },
+ {
+ level: 44,
+ name: "Gondor Soldier",
+ emoji: "๐ก๏ธ",
+ color: "#94a3b8",
+ rarity: "uncommon",
+ description: "The beacon is lit! Gondor calls for aid.",
+ },
+ {
+ level: 45,
+ name: "Uruk-hai Berserker",
+ emoji: "โ",
+ color: "#450a0a",
+ rarity: "rare",
+ description: "Looks like meat's back on the menu, boys.",
+ },
+ {
+ level: 46,
+ name: "Elven Archer",
+ emoji: "๐",
+ color: "#4ade80",
+ rarity: "rare",
+ description: "Your eyes see the movement of a sparrow a mile away.",
+ },
+ {
+ level: 47,
+ name: "Dwarf Warrior",
+ emoji: "โ๏ธ",
+ color: "#78350f",
+ rarity: "rare",
+ description: "Nobody tosses a dwarf.",
+ },
+ {
+ level: 48,
+ name: "Nazgรปl Rider",
+ emoji: "๐",
+ color: "#020617",
+ rarity: "epic",
+ description:
+ "Screeching shadows. Do not come between a Nazgรปl and its prey.",
+ },
+ {
+ level: 49,
+ name: "Istari Pupil",
+ emoji: "๐ง",
+ color: "#3b82f6",
+ rarity: "epic",
+ description:
+ "A wizard is never late. He arrives precisely when he means to.",
+ },
+ {
+ level: 50,
+ name: "Ring-bearer",
+ emoji: "๐",
+ color: "#fbbf24",
+ rarity: "legendary",
+ description: "The weight is heavy, but you must carry it to the fire.",
+ },
-// --- FANTASY MIX: THE MID-GAME (51-60) ---
-{
- level: 51,
- name: "White Wizard",
- emoji: "๐งโโ๏ธ",
- color: "#f8fafc",
- rarity: "legendary",
- description: "You have passed through fire and death to turn the tide."
-},
-{
- level: 52,
- name: "Silmaril Seeker",
- emoji: "๐",
- color: "#7dd3fc",
- rarity: "epic",
- description: "Jewels filled with the light of the Two Trees."
-},
-{
- level: 53,
- name: "Dune Walker",
- emoji: "โณ",
- color: "#fcd34d",
- rarity: "epic",
- description: "He who controls the spice controls the universe."
-},
-{
- level: 54,
- name: "Shadowfax Rider",
- emoji: "๐",
- color: "#e2e8f0",
- rarity: "rare",
- description: "Show us the meaning of haste."
-},
-{
- level: 55,
- name: "Master of Coin",
- emoji: "๐ช",
- color: "#fbbf24",
- rarity: "rare",
- description: "The crown is in debt, but your pockets are full."
-},
-{
- level: 56,
- name: "Kingsguard",
- emoji: "๐ก๏ธ",
- color: "#94a3b8",
- rarity: "epic",
- description: "Sworn to protect the king, no matter how mad he gets."
-},
-{
- level: 57,
- name: "Valyrian Smith",
- emoji: "โ๏ธ",
- color: "#475569",
- rarity: "rare",
- description: "Old spells woven into new steel."
-},
-{
- level: 58,
- name: "Night Watcher",
- emoji: "๐ฆ",
- color: "#312e81",
- rarity: "uncommon",
- description: "The city sleeps, but you do not."
-},
-{
- level: 59,
- name: "Obsidian Blade",
- emoji: "๐ก๏ธ",
- color: "#1e293b",
- rarity: "epic",
- description: "Dragon glass. The only thing that kills the cold."
-},
-{
- level: 60,
- name: "Citadel Maester",
- emoji: "๐",
- color: "#8b5e3c",
- rarity: "rare",
- description: "A chain link for every subject mastered."
-},
+ // --- FANTASY MIX: THE MID-GAME (51-60) ---
+ {
+ level: 51,
+ name: "White Wizard",
+ emoji: "๐งโโ๏ธ",
+ color: "#f8fafc",
+ rarity: "legendary",
+ description: "You have passed through fire and death to turn the tide.",
+ },
+ {
+ level: 52,
+ name: "Silmaril Seeker",
+ emoji: "๐",
+ color: "#7dd3fc",
+ rarity: "epic",
+ description: "Jewels filled with the light of the Two Trees.",
+ },
+ {
+ level: 53,
+ name: "Dune Walker",
+ emoji: "โณ",
+ color: "#fcd34d",
+ rarity: "epic",
+ description: "He who controls the spice controls the universe.",
+ },
+ {
+ level: 54,
+ name: "Shadowfax Rider",
+ emoji: "๐",
+ color: "#e2e8f0",
+ rarity: "rare",
+ description: "Show us the meaning of haste.",
+ },
+ {
+ level: 55,
+ name: "Master of Coin",
+ emoji: "๐ช",
+ color: "#fbbf24",
+ rarity: "rare",
+ description: "The crown is in debt, but your pockets are full.",
+ },
+ {
+ level: 56,
+ name: "Kingsguard",
+ emoji: "๐ก๏ธ",
+ color: "#94a3b8",
+ rarity: "epic",
+ description: "Sworn to protect the king, no matter how mad he gets.",
+ },
+ {
+ level: 57,
+ name: "Valyrian Smith",
+ emoji: "โ๏ธ",
+ color: "#475569",
+ rarity: "rare",
+ description: "Old spells woven into new steel.",
+ },
+ {
+ level: 58,
+ name: "Night Watcher",
+ emoji: "๐ฆ",
+ color: "#312e81",
+ rarity: "uncommon",
+ description: "The city sleeps, but you do not.",
+ },
+ {
+ level: 59,
+ name: "Obsidian Blade",
+ emoji: "๐ก๏ธ",
+ color: "#1e293b",
+ rarity: "epic",
+ description: "Dragon glass. The only thing that kills the cold.",
+ },
+ {
+ level: 60,
+ name: "Citadel Maester",
+ emoji: "๐",
+ color: "#8b5e3c",
+ rarity: "rare",
+ description: "A chain link for every subject mastered.",
+ },
-// --- POWER NINE & ARTIFACTS (61-80) ---
-{
- level: 61,
- name: "Mox Emerald",
- emoji: "๐",
- color: "#10b981",
- rarity: "legendary",
- description: "Free green mana. It's not fair, is it?"
-},
-{
- level: 62,
- name: "Mox Sapphire",
- emoji: "๐",
- color: "#3b82f6",
- rarity: "legendary",
- description: "The most powerful of the Moxen. Blue magic reigns supreme."
-},
-{
- level: 63,
- name: "Mox Ruby",
- emoji: "โค๏ธ",
- color: "#ef4444",
- rarity: "legendary",
- description: "Fire at your fingertips for zero cost."
-},
-{
- level: 64,
- name: "Mox Jet",
- emoji: "๐ค",
- color: "#18181b",
- rarity: "legendary",
- description: "Darkness comes fast and free."
-},
-{
- level: 65,
- name: "Mox Pearl",
- emoji: "๐ค",
- color: "#f8fafc",
- rarity: "legendary",
- description: "Purity and order, accelerated."
-},
-{
- level: 66,
- name: "Black Lotus",
- emoji: "๐บ",
- color: "#000000",
- rarity: "mythic",
- description: "Tap, sacrifice, add 3 mana. The most expensive flower in history."
-},
-{
- level: 67,
- name: "Balrog Slayer",
- emoji: "๐ฅ",
- color: "#f97316",
- rarity: "epic",
- description: "You shall not pass! (But you did)."
-},
-{
- level: 68,
- name: "Witch-king",
- emoji: "๐",
- color: "#334155",
- rarity: "epic",
- description: "No living man may hinder you."
-},
-{
- level: 69,
- name: "Shelob's Kin",
- emoji: "๐ท๏ธ",
- color: "#0f172a",
- rarity: "rare",
- description: "A great spider of the dark. Don't get stung."
-},
-{
- level: 70,
- name: "Dragon-friend",
- emoji: "๐ฒ",
- color: "#dc2626",
- rarity: "legendary",
- description: "You speak the language of fire and greed."
-},
-{
- level: 71,
- name: "Neon Ghost",
- emoji: "๐ป",
- color: "#22d3ee",
- rarity: "rare",
- description: "A digital spirit in a cyberpunk machine."
-},
-{
- level: 72,
- name: "Dragon's Greed",
- emoji: "๐ช",
- color: "#fbbf24",
- rarity: "epic",
- description: "Sleeping on a pile of gold triggers back pain."
-},
-{
- level: 73,
- name: "Mistborn",
- emoji: "๐ซ๏ธ",
- color: "#94a3b8",
- rarity: "epic",
- description: "Burning metals to push and pull on the world."
-},
-{
- level: 74,
- name: "Cinder Soul",
- emoji: "๐ฅ",
- color: "#f87171",
- rarity: "epic",
- description: "The fire fades, but you remain."
-},
-{
- level: 75,
- name: "High Council",
- emoji: "๐๏ธ",
- color: "#6366f1",
- rarity: "legendary",
- description: "You make the laws that others break."
-},
-{
- level: 76,
- name: "Valyrian Steel",
- emoji: "๐ก๏ธ",
- color: "#cbd5e1",
- rarity: "legendary",
- description: "Lighter, stronger, and sharper than any other blade."
-},
-{
- level: 77,
- name: "Golden Snitch",
- emoji: "โจ",
- color: "#facc15",
- rarity: "rare",
- description: "I open at the close. 150 points to you."
-},
-{
- level: 78,
- name: "Ether Weaver",
- emoji: "๐ธ๏ธ",
- color: "#a855f7",
- rarity: "epic",
- description: "Manipulating the fabric of magic itself."
-},
-{
- level: 79,
- name: "Star Forge",
- emoji: "๐จ",
- color: "#38bdf8",
- rarity: "mythic",
- description: "A factory that churns out infinite fleets."
-},
-{
- level: 80,
- name: "Mithril Guard",
- emoji: "๐ก๏ธ",
- color: "#e2e8f0",
- rarity: "legendary",
- description: "Light as a feather, hard as dragon scales."
-},
+ // --- POWER NINE & ARTIFACTS (61-80) ---
+ {
+ level: 61,
+ name: "Mox Emerald",
+ emoji: "๐",
+ color: "#10b981",
+ rarity: "legendary",
+ description: "Free green mana. It's not fair, is it?",
+ },
+ {
+ level: 62,
+ name: "Mox Sapphire",
+ emoji: "๐",
+ color: "#3b82f6",
+ rarity: "legendary",
+ description: "The most powerful of the Moxen. Blue magic reigns supreme.",
+ },
+ {
+ level: 63,
+ name: "Mox Ruby",
+ emoji: "โค๏ธ",
+ color: "#ef4444",
+ rarity: "legendary",
+ description: "Fire at your fingertips for zero cost.",
+ },
+ {
+ level: 64,
+ name: "Mox Jet",
+ emoji: "๐ค",
+ color: "#18181b",
+ rarity: "legendary",
+ description: "Darkness comes fast and free.",
+ },
+ {
+ level: 65,
+ name: "Mox Pearl",
+ emoji: "๐ค",
+ color: "#f8fafc",
+ rarity: "legendary",
+ description: "Purity and order, accelerated.",
+ },
+ {
+ level: 66,
+ name: "Black Lotus",
+ emoji: "๐บ",
+ color: "#000000",
+ rarity: "mythic",
+ description:
+ "Tap, sacrifice, add 3 mana. The most expensive flower in history.",
+ },
+ {
+ level: 67,
+ name: "Balrog Slayer",
+ emoji: "๐ฅ",
+ color: "#f97316",
+ rarity: "epic",
+ description: "You shall not pass! (But you did).",
+ },
+ {
+ level: 68,
+ name: "Witch-king",
+ emoji: "๐",
+ color: "#334155",
+ rarity: "epic",
+ description: "No living man may hinder you.",
+ },
+ {
+ level: 69,
+ name: "Shelob's Kin",
+ emoji: "๐ท๏ธ",
+ color: "#0f172a",
+ rarity: "rare",
+ description: "A great spider of the dark. Don't get stung.",
+ },
+ {
+ level: 70,
+ name: "Dragon-friend",
+ emoji: "๐ฒ",
+ color: "#dc2626",
+ rarity: "legendary",
+ description: "You speak the language of fire and greed.",
+ },
+ {
+ level: 71,
+ name: "Neon Ghost",
+ emoji: "๐ป",
+ color: "#22d3ee",
+ rarity: "rare",
+ description: "A digital spirit in a cyberpunk machine.",
+ },
+ {
+ level: 72,
+ name: "Dragon's Greed",
+ emoji: "๐ช",
+ color: "#fbbf24",
+ rarity: "epic",
+ description: "Sleeping on a pile of gold triggers back pain.",
+ },
+ {
+ level: 73,
+ name: "Mistborn",
+ emoji: "๐ซ๏ธ",
+ color: "#94a3b8",
+ rarity: "epic",
+ description: "Burning metals to push and pull on the world.",
+ },
+ {
+ level: 74,
+ name: "Cinder Soul",
+ emoji: "๐ฅ",
+ color: "#f87171",
+ rarity: "epic",
+ description: "The fire fades, but you remain.",
+ },
+ {
+ level: 75,
+ name: "High Council",
+ emoji: "๐๏ธ",
+ color: "#6366f1",
+ rarity: "legendary",
+ description: "You make the laws that others break.",
+ },
+ {
+ level: 76,
+ name: "Valyrian Steel",
+ emoji: "๐ก๏ธ",
+ color: "#cbd5e1",
+ rarity: "legendary",
+ description: "Lighter, stronger, and sharper than any other blade.",
+ },
+ {
+ level: 77,
+ name: "Golden Snitch",
+ emoji: "โจ",
+ color: "#facc15",
+ rarity: "rare",
+ description: "I open at the close. 150 points to you.",
+ },
+ {
+ level: 78,
+ name: "Ether Weaver",
+ emoji: "๐ธ๏ธ",
+ color: "#a855f7",
+ rarity: "epic",
+ description: "Manipulating the fabric of magic itself.",
+ },
+ {
+ level: 79,
+ name: "Star Forge",
+ emoji: "๐จ",
+ color: "#38bdf8",
+ rarity: "mythic",
+ description: "A factory that churns out infinite fleets.",
+ },
+ {
+ level: 80,
+ name: "Mithril Guard",
+ emoji: "๐ก๏ธ",
+ color: "#e2e8f0",
+ rarity: "legendary",
+ description: "Light as a feather, hard as dragon scales.",
+ },
-// --- LEGENDS OF THE WHEEL & MAGIC (81-90) ---
-{
- level: 81,
- name: "Lan Mandragoran",
- emoji: "๐ก๏ธ",
- color: "#1e293b",
- rarity: "legendary",
- description: "The Uncrowned King of Malkier. Tai'shar Malkier!"
-},
-{
- level: 82,
- name: "Moiraine Damodred",
- emoji: "๐ง",
- color: "#1d4ed8",
- rarity: "legendary",
- description: "The Blue Ajah plots, but you act."
-},
-{
- level: 83,
- name: "Ishamael",
- emoji: "๐๏ธ",
- color: "#450a0a",
- rarity: "mythic",
- description: "The Betrayer of Hope. He wants the wheel to stop."
-},
-{
- level: 84,
- name: "Callandor Wielder",
- emoji: "๐",
- color: "#22d3ee",
- rarity: "mythic",
- description: "The Sword That Is Not A Sword. Immense power, immense flaw."
-},
-{
- level: 85,
- name: "Lews Therin",
- emoji: "โ๏ธ",
- color: "#fde047",
- rarity: "mythic",
- description: "Ilyena! The voice in your head is getting louder."
-},
-{
- level: 86,
- name: "Dragon Reborn",
- emoji: "๐",
- color: "#ef4444",
- rarity: "mythic",
- description: "He shall bind the nine moons to serve him."
-},
-{
- level: 87,
- name: "Phoenix Down",
- emoji: "๐ชถ",
- color: "#fb7185",
- rarity: "rare",
- description: "Revive a KO'd ally. A true lifesaver."
-},
-{
- level: 88,
- name: "Void Sentinel",
- emoji: "๐๏ธโ๐จ๏ธ",
- color: "#4ade80",
- rarity: "epic",
- description: "Guarding the space between dimensions."
-},
-{
- level: 89,
- name: "Elder Wand",
- emoji: "๐ช",
- color: "#94a3b8",
- rarity: "legendary",
- description: "The Deathstick. Unbeatable, until it isn't."
-},
-{
- level: 90,
- name: "Balrog's Whip",
- emoji: "๐ฅ",
- color: "#b91c1c",
- rarity: "legendary",
- description: "Made of flame and shadow. Extremely hot."
-},
+ // --- LEGENDS OF THE WHEEL & MAGIC (81-90) ---
+ {
+ level: 81,
+ name: "Lan Mandragoran",
+ emoji: "๐ก๏ธ",
+ color: "#1e293b",
+ rarity: "legendary",
+ description: "The Uncrowned King of Malkier. Tai'shar Malkier!",
+ },
+ {
+ level: 82,
+ name: "Moiraine Damodred",
+ emoji: "๐ง",
+ color: "#1d4ed8",
+ rarity: "legendary",
+ description: "The Blue Ajah plots, but you act.",
+ },
+ {
+ level: 83,
+ name: "Ishamael",
+ emoji: "๐๏ธ",
+ color: "#450a0a",
+ rarity: "mythic",
+ description: "The Betrayer of Hope. He wants the wheel to stop.",
+ },
+ {
+ level: 84,
+ name: "Callandor Wielder",
+ emoji: "๐",
+ color: "#22d3ee",
+ rarity: "mythic",
+ description: "The Sword That Is Not A Sword. Immense power, immense flaw.",
+ },
+ {
+ level: 85,
+ name: "Lews Therin",
+ emoji: "โ๏ธ",
+ color: "#fde047",
+ rarity: "mythic",
+ description: "Ilyena! The voice in your head is getting louder.",
+ },
+ {
+ level: 86,
+ name: "Dragon Reborn",
+ emoji: "๐",
+ color: "#ef4444",
+ rarity: "mythic",
+ description: "He shall bind the nine moons to serve him.",
+ },
+ {
+ level: 87,
+ name: "Phoenix Down",
+ emoji: "๐ชถ",
+ color: "#fb7185",
+ rarity: "rare",
+ description: "Revive a KO'd ally. A true lifesaver.",
+ },
+ {
+ level: 88,
+ name: "Void Sentinel",
+ emoji: "๐๏ธโ๐จ๏ธ",
+ color: "#4ade80",
+ rarity: "epic",
+ description: "Guarding the space between dimensions.",
+ },
+ {
+ level: 89,
+ name: "Elder Wand",
+ emoji: "๐ช",
+ color: "#94a3b8",
+ rarity: "legendary",
+ description: "The Deathstick. Unbeatable, until it isn't.",
+ },
+ {
+ level: 90,
+ name: "Balrog's Whip",
+ emoji: "๐ฅ",
+ color: "#b91c1c",
+ rarity: "legendary",
+ description: "Made of flame and shadow. Extremely hot.",
+ },
-// --- COSMIC LEGENDS (91-100) ---
-{
- level: 91,
- name: "Sauron's Shadow",
- emoji: "๐๏ธ",
- color: "#000000",
- rarity: "legendary",
- description: "There is no life in the void. Only death."
-},
-{
- level: 92,
- name: "Galadriel's Light",
- emoji: "๐",
- color: "#e2e8f0",
- rarity: "legendary",
- description: "A light for you in dark places, when all other lights go out."
-},
-{
- level: 93,
- name: "Eldrazi Titan",
- emoji: "๐",
- color: "#a855f7",
- rarity: "mythic",
- description: "Emrakul twists reality just by existing."
-},
-{
- level: 94,
- name: "Tom Bombadil",
- emoji: "๐",
- color: "#fbbf24",
- rarity: "mythic",
- description: "Old Tom Bombadil is a merry fellow; bright blue his jacket is, and his boots are yellow."
-},
-{
- level: 95,
- name: "Sauron Unleashed",
- emoji: "๐",
- color: "#7f1d1d",
- rarity: "mythic",
- description: "The physical form of malice. He sees all."
-},
-{
- level: 96,
- name: "Saruman the White",
- emoji: "โ",
- color: "#cbd5e1",
- rarity: "legendary",
- description: "He abandoned reason for madness."
-},
-{
- level: 97,
- name: "Gandalf the Grey",
- emoji: "๐",
- color: "#64748b",
- rarity: "legendary",
- description: "Disturber of the peace. Fireworks expert."
-},
-{
- level: 98,
- name: "Gandalf the White",
- emoji: "๐งโโ๏ธ",
- color: "#ffffff",
- rarity: "mythic",
- description: "I have come back to you now, at the turn of the tide."
-},
-{
- level: 99,
- name: "The Creator",
- emoji: "๐",
- color: "#6366f1",
- rarity: "mythic",
- description: "The moment before the Big Bang."
-},
-{
- level: 100,
- name: "Eru Ilรบvatar",
- emoji: "โจ",
- color: "#ffffff",
- rarity: "mythic",
- description: "The One who sings the world into existence."
-},
+ // --- COSMIC LEGENDS (91-100) ---
+ {
+ level: 91,
+ name: "Sauron's Shadow",
+ emoji: "๐๏ธ",
+ color: "#000000",
+ rarity: "legendary",
+ description: "There is no life in the void. Only death.",
+ },
+ {
+ level: 92,
+ name: "Galadriel's Light",
+ emoji: "๐",
+ color: "#e2e8f0",
+ rarity: "legendary",
+ description:
+ "A light for you in dark places, when all other lights go out.",
+ },
+ {
+ level: 93,
+ name: "Eldrazi Titan",
+ emoji: "๐",
+ color: "#a855f7",
+ rarity: "mythic",
+ description: "Emrakul twists reality just by existing.",
+ },
+ {
+ level: 94,
+ name: "Tom Bombadil",
+ emoji: "๐",
+ color: "#fbbf24",
+ rarity: "mythic",
+ description:
+ "Old Tom Bombadil is a merry fellow; bright blue his jacket is, and his boots are yellow.",
+ },
+ {
+ level: 95,
+ name: "Sauron Unleashed",
+ emoji: "๐",
+ color: "#7f1d1d",
+ rarity: "mythic",
+ description: "The physical form of malice. He sees all.",
+ },
+ {
+ level: 96,
+ name: "Saruman the White",
+ emoji: "โ",
+ color: "#cbd5e1",
+ rarity: "legendary",
+ description: "He abandoned reason for madness.",
+ },
+ {
+ level: 97,
+ name: "Gandalf the Grey",
+ emoji: "๐",
+ color: "#64748b",
+ rarity: "legendary",
+ description: "Disturber of the peace. Fireworks expert.",
+ },
+ {
+ level: 98,
+ name: "Gandalf the White",
+ emoji: "๐งโโ๏ธ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "I have come back to you now, at the turn of the tide.",
+ },
+ {
+ level: 99,
+ name: "The Creator",
+ emoji: "๐",
+ color: "#6366f1",
+ rarity: "mythic",
+ description: "The moment before the Big Bang.",
+ },
+ {
+ level: 100,
+ name: "Eru Ilรบvatar",
+ emoji: "โจ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "The One who sings the world into existence.",
+ },
-// --- THE LIGHT SIDE & SCUM AND VILLAINY (101-125) ---
-{
- level: 101,
- name: "Padawan Learner",
- emoji: "๐ง",
- color: "#60a5fa",
- rarity: "common",
- description: "Do or do not. There is no try."
-},
-{
- level: 102,
- name: "Moisture Farmer",
- emoji: "๐",
- color: "#d97706",
- rarity: "common",
- description: "But I was going into Tosche Station to pick up some power converters!"
-},
-{
- level: 103,
- name: "Scrappy Scavenger",
- emoji: "๐ง",
- color: "#fcd34d",
- rarity: "common",
- description: "One quarter portion. Take it or leave it."
-},
-{
- level: 104,
- name: "Cantina Regular",
- emoji: "๐น",
- color: "#9333ea",
- rarity: "common",
- description: "You shot first. We all saw it."
-},
-{
- level: 105,
- name: "Holocron Finder",
- emoji: "๐ง",
- color: "#38bdf8",
- rarity: "uncommon",
- description: "Ancient data in a glowing cube."
-},
-{
- level: 106,
- name: "Speeder Racer",
- emoji: "๐๏ธ",
- color: "#fb923c",
- rarity: "uncommon",
- description: "Now this is podracing."
-},
-{
- level: 107,
- name: "Droid Mechanic",
- emoji: "๐ค",
- color: "#94a3b8",
- rarity: "uncommon",
- description: "It's the motivator unit. It's always the motivator unit."
-},
-{
- level: 108,
- name: "Kyber Seeker",
- emoji: "๐",
- color: "#ffffff",
- rarity: "rare",
- description: "The crystal sings to you. It creates the blade."
-},
-{
- level: 109,
- name: "Outer Rim Nomad",
- emoji: "๐๏ธ",
- color: "#a8a29e",
- rarity: "common",
- description: "Hiding from the Empire at the edge of the galaxy."
-},
-{
- level: 110,
- name: "Rebel Pilot",
- emoji: "๐",
- color: "#ef4444",
- rarity: "rare",
- description: "Lock S-foils in attack position."
-},
-{
- level: 111,
- name: "Squadron Leader",
- emoji: "๐ก",
- color: "#f87171",
- rarity: "epic",
- description: "Red Five standing by."
-},
-{
- level: 112,
- name: "Astromech Specialist",
- emoji: "๐",
- color: "#3b82f6",
- rarity: "uncommon",
- description: "*Beep boop whistle.* (That means 'Open the door')."
-},
-{
- level: 113,
- name: "Smuggler Associate",
- emoji: "๐ฆ",
- color: "#b45309",
- rarity: "uncommon",
- description: "You made the Kessel Run in less than 12 parsecs."
-},
-{
- level: 114,
- name: "Sabacc Champion",
- emoji: "๐",
- color: "#fbbf24",
- rarity: "rare",
- description: "You won a starship with a pair of dice."
-},
-{
- level: 115,
- name: "Jedi Knight",
- emoji: "โ๏ธ",
- color: "#60a5fa",
- rarity: "epic",
- description: "A weapon for a more civilized age."
-},
-{
- level: 116,
- name: "Lightsaber Smith",
- emoji: "๐ ๏ธ",
- color: "#2dd4bf",
- rarity: "rare",
- description: "Constructing the hilt requires focus."
-},
-{
- level: 117,
- name: "Force Sensitive",
- emoji: "๐",
- color: "#818cf8",
- rarity: "rare",
- description: "You can move rocks. Small rocks."
-},
-{
- level: 118,
- name: "Temple Guardian",
- emoji: "๐ฐ",
- color: "#facc15",
- rarity: "epic",
- description: "Anonymous behind the mask. Duty is all that matters."
-},
-{
- level: 119,
- name: "Wayseeker",
- emoji: "๐งญ",
- color: "#94a3b8",
- rarity: "rare",
- description: "Operating independently of the Council."
-},
-{
- level: 120,
- name: "Mandalorian Initiate",
- emoji: "๐ก๏ธ",
- color: "#64748b",
- rarity: "uncommon",
- description: "Weapons are part of my religion."
-},
-{
- level: 121,
- name: "Foundling",
- emoji: "๐ถ",
- color: "#cbd5e1",
- rarity: "common",
- description: "This is the Way."
-},
-{
- level: 122,
- name: "Beskar Bearer",
- emoji: "๐",
- color: "#475569",
- rarity: "epic",
- description: "Pure Beskar. Blaster bolts just bounce off."
-},
-{
- level: 123,
- name: "Clan Defender",
- emoji: "โ๏ธ",
- color: "#1e293b",
- rarity: "rare",
- description: "For Mandalore!"
-},
-{
- level: 124,
- name: "Jetpack Ace",
- emoji: "๐ฅ",
- color: "#f97316",
- rarity: "epic",
- description: "They fly now? They fly now."
-},
-{
- level: 125,
- name: "Jedi Guardian",
- emoji: "๐ก๏ธ",
- color: "#22c55e",
- rarity: "legendary",
- description: "Blue lightsabers and heavy combat forms."
-},
+ // --- THE LIGHT SIDE & SCUM AND VILLAINY (101-125) ---
+ {
+ level: 101,
+ name: "Padawan Learner",
+ emoji: "๐ง",
+ color: "#60a5fa",
+ rarity: "common",
+ description: "Do or do not. There is no try.",
+ },
+ {
+ level: 102,
+ name: "Moisture Farmer",
+ emoji: "๐",
+ color: "#d97706",
+ rarity: "common",
+ description:
+ "But I was going into Tosche Station to pick up some power converters!",
+ },
+ {
+ level: 103,
+ name: "Scrappy Scavenger",
+ emoji: "๐ง",
+ color: "#fcd34d",
+ rarity: "common",
+ description: "One quarter portion. Take it or leave it.",
+ },
+ {
+ level: 104,
+ name: "Cantina Regular",
+ emoji: "๐น",
+ color: "#9333ea",
+ rarity: "common",
+ description: "You shot first. We all saw it.",
+ },
+ {
+ level: 105,
+ name: "Holocron Finder",
+ emoji: "๐ง",
+ color: "#38bdf8",
+ rarity: "uncommon",
+ description: "Ancient data in a glowing cube.",
+ },
+ {
+ level: 106,
+ name: "Speeder Racer",
+ emoji: "๐๏ธ",
+ color: "#fb923c",
+ rarity: "uncommon",
+ description: "Now this is podracing.",
+ },
+ {
+ level: 107,
+ name: "Droid Mechanic",
+ emoji: "๐ค",
+ color: "#94a3b8",
+ rarity: "uncommon",
+ description: "It's the motivator unit. It's always the motivator unit.",
+ },
+ {
+ level: 108,
+ name: "Kyber Seeker",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "rare",
+ description: "The crystal sings to you. It creates the blade.",
+ },
+ {
+ level: 109,
+ name: "Outer Rim Nomad",
+ emoji: "๐๏ธ",
+ color: "#a8a29e",
+ rarity: "common",
+ description: "Hiding from the Empire at the edge of the galaxy.",
+ },
+ {
+ level: 110,
+ name: "Rebel Pilot",
+ emoji: "๐",
+ color: "#ef4444",
+ rarity: "rare",
+ description: "Lock S-foils in attack position.",
+ },
+ {
+ level: 111,
+ name: "Squadron Leader",
+ emoji: "๐ก",
+ color: "#f87171",
+ rarity: "epic",
+ description: "Red Five standing by.",
+ },
+ {
+ level: 112,
+ name: "Astromech Specialist",
+ emoji: "๐",
+ color: "#3b82f6",
+ rarity: "uncommon",
+ description: "*Beep boop whistle.* (That means 'Open the door').",
+ },
+ {
+ level: 113,
+ name: "Smuggler Associate",
+ emoji: "๐ฆ",
+ color: "#b45309",
+ rarity: "uncommon",
+ description: "You made the Kessel Run in less than 12 parsecs.",
+ },
+ {
+ level: 114,
+ name: "Sabacc Champion",
+ emoji: "๐",
+ color: "#fbbf24",
+ rarity: "rare",
+ description: "You won a starship with a pair of dice.",
+ },
+ {
+ level: 115,
+ name: "Jedi Knight",
+ emoji: "โ๏ธ",
+ color: "#60a5fa",
+ rarity: "epic",
+ description: "A weapon for a more civilized age.",
+ },
+ {
+ level: 116,
+ name: "Lightsaber Smith",
+ emoji: "๐ ๏ธ",
+ color: "#2dd4bf",
+ rarity: "rare",
+ description: "Constructing the hilt requires focus.",
+ },
+ {
+ level: 117,
+ name: "Force Sensitive",
+ emoji: "๐",
+ color: "#818cf8",
+ rarity: "rare",
+ description: "You can move rocks. Small rocks.",
+ },
+ {
+ level: 118,
+ name: "Temple Guardian",
+ emoji: "๐ฐ",
+ color: "#facc15",
+ rarity: "epic",
+ description: "Anonymous behind the mask. Duty is all that matters.",
+ },
+ {
+ level: 119,
+ name: "Wayseeker",
+ emoji: "๐งญ",
+ color: "#94a3b8",
+ rarity: "rare",
+ description: "Operating independently of the Council.",
+ },
+ {
+ level: 120,
+ name: "Mandalorian Initiate",
+ emoji: "๐ก๏ธ",
+ color: "#64748b",
+ rarity: "uncommon",
+ description: "Weapons are part of my religion.",
+ },
+ {
+ level: 121,
+ name: "Foundling",
+ emoji: "๐ถ",
+ color: "#cbd5e1",
+ rarity: "common",
+ description: "This is the Way.",
+ },
+ {
+ level: 122,
+ name: "Beskar Bearer",
+ emoji: "๐",
+ color: "#475569",
+ rarity: "epic",
+ description: "Pure Beskar. Blaster bolts just bounce off.",
+ },
+ {
+ level: 123,
+ name: "Clan Defender",
+ emoji: "โ๏ธ",
+ color: "#1e293b",
+ rarity: "rare",
+ description: "For Mandalore!",
+ },
+ {
+ level: 124,
+ name: "Jetpack Ace",
+ emoji: "๐ฅ",
+ color: "#f97316",
+ rarity: "epic",
+ description: "They fly now? They fly now.",
+ },
+ {
+ level: 125,
+ name: "Jedi Guardian",
+ emoji: "๐ก๏ธ",
+ color: "#22c55e",
+ rarity: "legendary",
+ description: "Blue lightsabers and heavy combat forms.",
+ },
-// --- IMPERIAL MIGHT: THE SHADOW (126-150) ---
-{
- level: 126,
- name: "Stormtrooper Recruit",
- emoji: "โช",
- color: "#ffffff",
- rarity: "common",
- description: "You fired 100 shots. You missed 100 shots."
-},
-{
- level: 127,
- name: "Scout Trooper",
- emoji: "๐๏ธ",
- color: "#e2e8f0",
- rarity: "uncommon",
- description: "Watch out for trees on Endor."
-},
-{
- level: 128,
- name: "TIE Pilot",
- emoji: "๐ฆ",
- color: "#1f2937",
- rarity: "uncommon",
- description: "No shields, no life support, just speed."
-},
-{
- level: 129,
- name: "Imperial Officer",
- emoji: "๐",
- color: "#334155",
- rarity: "rare",
- description: "Rebel scum."
-},
-{
- level: 130,
- name: "Millennium Captain",
- emoji: "๐",
- color: "#fbbf24",
- rarity: "legendary",
- description: "Never tell me the odds."
-},
-{
- level: 131,
- name: "Sith Acolyte",
- emoji: "๐",
- color: "#991b1b",
- rarity: "rare",
- description: "Peace is a lie. There is only passion."
-},
-{
- level: 132,
- name: "Shadow Guard",
- emoji: "๐ค",
- color: "#000000",
- rarity: "epic",
- description: "Silent, elite, and armed with a force pike."
-},
-{
- level: 133,
- name: "Inquisitor Trainee",
- emoji: "๐ด",
- color: "#dc2626",
- rarity: "rare",
- description: "Hunting Jedi for sport."
-},
-{
- level: 134,
- name: "Purge Trooper",
- emoji: "๐งจ",
- color: "#450a0a",
- rarity: "rare",
- description: "Trained specifically to kill traitorous Jedi."
-},
-{
- level: 135,
- name: "Sith Stalker",
- emoji: "๐ต๏ธ",
- color: "#7f1d1d",
- rarity: "epic",
- description: "Cybernetically enhanced hatred."
-},
-{
- level: 136,
- name: "Red Guard",
- emoji: "๐ก๏ธ",
- color: "#b91c1c",
- rarity: "epic",
- description: "The Emperor's personal protection detail."
-},
-{
- level: 137,
- name: "Dark Side Adept",
- emoji: "๐",
- color: "#450606",
- rarity: "rare",
- description: "Tapping into the bogan."
-},
-{
- level: 138,
- name: "Sith Alchemist",
- emoji: "๐งช",
- color: "#6d28d9",
- rarity: "legendary",
- description: "Twisting life into monsters."
-},
-{
- level: 139,
- name: "Holocron Corruptor",
- emoji: "๐ป",
- color: "#be123c",
- rarity: "epic",
- description: "Bleeding the crystal red."
-},
-{
- level: 140,
- name: "Imperial Inquisitor",
- emoji: "๐คบ",
- color: "#991b1b",
- rarity: "epic",
- description: "Helicopter lightsabers. Physics is merely a suggestion."
-},
-{
- level: 141,
- name: "Grand Inquisitor",
- emoji: "๐น",
- color: "#7f1d1d",
- rarity: "legendary",
- description: "There are some things far more frightening than death."
-},
-{
- level: 142,
- name: "Star Destroyer Commander",
- emoji: "๐ข",
- color: "#94a3b8",
- rarity: "epic",
- description: "Intensify forward firepower!"
-},
-{
- level: 143,
- name: "Super Star Destroyer Admin",
- emoji: "๐",
- color: "#64748b",
- rarity: "legendary",
- description: "The Executor is online."
-},
-{
- level: 144,
- name: "Kyber Crystal Corruptor",
- emoji: "๐ฉธ",
- color: "#f43f5e",
- rarity: "rare",
- description: "Pouring pain into the stone."
-},
-{
- level: 145,
- name: "Death Star Architect",
- emoji: "๐ฐ๏ธ",
- color: "#475569",
- rarity: "legendary",
- description: "It's just a small thermal exhaust port. What could go wrong?"
-},
-{
- level: 146,
- name: "Planetary Governor",
- emoji: "๐ช",
- color: "#ca8a04",
- rarity: "epic",
- description: "Ruling through fear."
-},
-{
- level: 147,
- name: "Imperial Advisor",
- emoji: "๐ง ",
- color: "#a855f7",
- rarity: "rare",
- description: " Whispering in the Emperor's ear."
-},
-{
- level: 148,
- name: "Sith Warrior",
- emoji: "โ๏ธ",
- color: "#991b1b",
- rarity: "epic",
- description: "Through strength, my chains are broken."
-},
-{
- level: 149,
- name: "Dark Disciple",
- emoji: "๐ฅ",
- color: "#dc2626",
- rarity: "legendary",
- description: "Trained by Dooku himself."
-},
-{
- level: 150,
- name: "Sith Lord",
- emoji: "๐",
- color: "#000000",
- rarity: "mythic",
- description: "Good... Good. Let the hate flow through you."
-},
+ // --- IMPERIAL MIGHT: THE SHADOW (126-150) ---
+ {
+ level: 126,
+ name: "Stormtrooper Recruit",
+ emoji: "โช",
+ color: "#ffffff",
+ rarity: "common",
+ description: "You fired 100 shots. You missed 100 shots.",
+ },
+ {
+ level: 127,
+ name: "Scout Trooper",
+ emoji: "๐๏ธ",
+ color: "#e2e8f0",
+ rarity: "uncommon",
+ description: "Watch out for trees on Endor.",
+ },
+ {
+ level: 128,
+ name: "TIE Pilot",
+ emoji: "๐ฆ",
+ color: "#1f2937",
+ rarity: "uncommon",
+ description: "No shields, no life support, just speed.",
+ },
+ {
+ level: 129,
+ name: "Imperial Officer",
+ emoji: "๐",
+ color: "#334155",
+ rarity: "rare",
+ description: "Rebel scum.",
+ },
+ {
+ level: 130,
+ name: "Millennium Captain",
+ emoji: "๐",
+ color: "#fbbf24",
+ rarity: "legendary",
+ description: "Never tell me the odds.",
+ },
+ {
+ level: 131,
+ name: "Sith Acolyte",
+ emoji: "๐",
+ color: "#991b1b",
+ rarity: "rare",
+ description: "Peace is a lie. There is only passion.",
+ },
+ {
+ level: 132,
+ name: "Shadow Guard",
+ emoji: "๐ค",
+ color: "#000000",
+ rarity: "epic",
+ description: "Silent, elite, and armed with a force pike.",
+ },
+ {
+ level: 133,
+ name: "Inquisitor Trainee",
+ emoji: "๐ด",
+ color: "#dc2626",
+ rarity: "rare",
+ description: "Hunting Jedi for sport.",
+ },
+ {
+ level: 134,
+ name: "Purge Trooper",
+ emoji: "๐งจ",
+ color: "#450a0a",
+ rarity: "rare",
+ description: "Trained specifically to kill traitorous Jedi.",
+ },
+ {
+ level: 135,
+ name: "Sith Stalker",
+ emoji: "๐ต๏ธ",
+ color: "#7f1d1d",
+ rarity: "epic",
+ description: "Cybernetically enhanced hatred.",
+ },
+ {
+ level: 136,
+ name: "Red Guard",
+ emoji: "๐ก๏ธ",
+ color: "#b91c1c",
+ rarity: "epic",
+ description: "The Emperor's personal protection detail.",
+ },
+ {
+ level: 137,
+ name: "Dark Side Adept",
+ emoji: "๐",
+ color: "#450606",
+ rarity: "rare",
+ description: "Tapping into the bogan.",
+ },
+ {
+ level: 138,
+ name: "Sith Alchemist",
+ emoji: "๐งช",
+ color: "#6d28d9",
+ rarity: "legendary",
+ description: "Twisting life into monsters.",
+ },
+ {
+ level: 139,
+ name: "Holocron Corruptor",
+ emoji: "๐ป",
+ color: "#be123c",
+ rarity: "epic",
+ description: "Bleeding the crystal red.",
+ },
+ {
+ level: 140,
+ name: "Imperial Inquisitor",
+ emoji: "๐คบ",
+ color: "#991b1b",
+ rarity: "epic",
+ description: "Helicopter lightsabers. Physics is merely a suggestion.",
+ },
+ {
+ level: 141,
+ name: "Grand Inquisitor",
+ emoji: "๐น",
+ color: "#7f1d1d",
+ rarity: "legendary",
+ description: "There are some things far more frightening than death.",
+ },
+ {
+ level: 142,
+ name: "Star Destroyer Commander",
+ emoji: "๐ข",
+ color: "#94a3b8",
+ rarity: "epic",
+ description: "Intensify forward firepower!",
+ },
+ {
+ level: 143,
+ name: "Super Star Destroyer Admin",
+ emoji: "๐",
+ color: "#64748b",
+ rarity: "legendary",
+ description: "The Executor is online.",
+ },
+ {
+ level: 144,
+ name: "Kyber Crystal Corruptor",
+ emoji: "๐ฉธ",
+ color: "#f43f5e",
+ rarity: "rare",
+ description: "Pouring pain into the stone.",
+ },
+ {
+ level: 145,
+ name: "Death Star Architect",
+ emoji: "๐ฐ๏ธ",
+ color: "#475569",
+ rarity: "legendary",
+ description: "It's just a small thermal exhaust port. What could go wrong?",
+ },
+ {
+ level: 146,
+ name: "Planetary Governor",
+ emoji: "๐ช",
+ color: "#ca8a04",
+ rarity: "epic",
+ description: "Ruling through fear.",
+ },
+ {
+ level: 147,
+ name: "Imperial Advisor",
+ emoji: "๐ง ",
+ color: "#a855f7",
+ rarity: "rare",
+ description: " Whispering in the Emperor's ear.",
+ },
+ {
+ level: 148,
+ name: "Sith Warrior",
+ emoji: "โ๏ธ",
+ color: "#991b1b",
+ rarity: "epic",
+ description: "Through strength, my chains are broken.",
+ },
+ {
+ level: 149,
+ name: "Dark Disciple",
+ emoji: "๐ฅ",
+ color: "#dc2626",
+ rarity: "legendary",
+ description: "Trained by Dooku himself.",
+ },
+ {
+ level: 150,
+ name: "Sith Lord",
+ emoji: "๐",
+ color: "#000000",
+ rarity: "mythic",
+ description: "Good... Good. Let the hate flow through you.",
+ },
-// --- BOUNTY HUNTERS & MERCENARIES (151-175) ---
-{
- level: 151,
- name: "Guild Member",
- emoji: "๐",
- color: "#8b5e3c",
- rarity: "common",
- description: "Bounty hunting is a complicated profession."
-},
-{
- level: 152,
- name: "Tracker",
- emoji: "๐ฃ",
- color: "#a8a29e",
- rarity: "uncommon",
- description: "I can bring you in warm, or I can bring you in cold."
-},
-{
- level: 153,
- name: "Sniper Specialist",
- emoji: "๐ฏ",
- color: "#ef4444",
- rarity: "rare",
- description: "Ambushes are just efficient."
-},
-{
- level: 154,
- name: "Thermal Detonator Expert",
- emoji: "๐ฃ",
- color: "#f97316",
- rarity: "rare",
- description: "Click... whirrrr... BOOM."
-},
-{
- level: 155,
- name: "Bounty Hunter Prime",
- emoji: "๐๏ธ",
- color: "#4ade80",
- rarity: "epic",
- description: "No disintegrations."
-},
-{
- level: 156,
- name: "Carbonite Freezer",
- emoji: "๐ง",
- color: "#bae6fd",
- rarity: "epic",
- description: "He's no good to me dead. Perfect wall art."
-},
-{
- level: 157,
- name: "Underworld Kingpin",
- emoji: "๐",
- color: "#7c3aed",
- rarity: "legendary",
- description: "Running the Crimson Dawn."
-},
-{
- level: 158,
- name: "Hutt Enforcer",
- emoji: "๐",
- color: "#65a30d",
- rarity: "rare",
- description: "Jabba sends his regards."
-},
-{
- level: 159,
- name: "Crime Syndicate Boss",
- emoji: "๐ผ",
- color: "#1e1b4b",
- rarity: "epic",
- description: "Everything that happens in this sector goes through you."
-},
-{
- level: 160,
- name: "Grand Moff",
- emoji: "๐
",
- color: "#334155",
- rarity: "legendary",
- description: "You may fire when ready."
-},
-{
- level: 161,
- name: "Imperial Regent",
- emoji: "๐๏ธ",
- color: "#94a3b8",
- rarity: "legendary",
- description: "Managing an Empire while the Emperor meditates."
-},
-{
- level: 162,
- name: "Hand of Justice",
- emoji: "โ๏ธ",
- color: "#facc15",
- rarity: "epic",
- description: "The long arm of the law (and a blaster)."
-},
-{
- level: 163,
- name: "Ancient Archivist",
- emoji: "๐",
- color: "#d97706",
- rarity: "rare",
- description: "If an item does not appear in our records, it does not exist."
-},
-{
- level: 164,
- name: "Dathomir Witch",
- emoji: "๐ฎ",
- color: "#db2777",
- rarity: "epic",
- description: "Nightsister magick. Green mist and resurrection."
-},
-{
- level: 165,
- name: "Grey Jedi",
- emoji: "โฏ๏ธ",
- color: "#64748b",
- rarity: "legendary",
- description: "Walking the line between light and dark."
-},
-{
- level: 166,
- name: "Balance Seeker",
- emoji: "๐",
- color: "#94a3b8",
- rarity: "epic",
- description: "Light and Dark are two sides of the same coin."
-},
-{
- level: 167,
- name: "Jedi Master",
- emoji: "๐ง",
- color: "#60a5fa",
- rarity: "legendary",
- description: "Take a seat, young Skywalker."
-},
-{
- level: 168,
- name: "Council Member",
- emoji: "๐ช",
- color: "#3b82f6",
- rarity: "legendary",
- description: "What about the droid attack on the Wookiees?"
-},
-{
- level: 169,
- name: "Temple Overseer",
- emoji: "๐๏ธ",
- color: "#2563eb",
- rarity: "epic",
- description: "Guarding the sacred texts."
-},
-{
- level: 170,
- name: "Jedi Sage",
- emoji: "๐",
- color: "#93c5fd",
- rarity: "rare",
- description: "Wisdom over combat. Knowledge over power."
-},
-{
- level: 171,
- name: "High Republic Hero",
- emoji: "๐",
- color: "#fbbf24",
- rarity: "legendary",
- description: "From the golden age of the Jedi Order."
-},
-{
- level: 172,
- name: "Living Force Vessel",
- emoji: "๐",
- color: "#4ade80",
- rarity: "epic",
- description: "Connected to every living thing."
-},
-{
- level: 173,
- name: "Chosen One Initiate",
- emoji: "โก",
- color: "#ffffff",
- rarity: "mythic",
- description: "You will bring balance to the Force."
-},
-{
- level: 174,
- name: "Master of the Order",
- emoji: "๐",
- color: "#1d4ed8",
- rarity: "legendary",
- description: "A purple lightsaber signals a very bad day for Sith."
-},
-{
- level: 175,
- name: "Jedi Grand Master",
- emoji: "๐งโโ๏ธ",
- color: "#10b981",
- rarity: "mythic",
- description: "Judge me by my size, do you?"
-},
+ // --- BOUNTY HUNTERS & MERCENARIES (151-175) ---
+ {
+ level: 151,
+ name: "Guild Member",
+ emoji: "๐",
+ color: "#8b5e3c",
+ rarity: "common",
+ description: "Bounty hunting is a complicated profession.",
+ },
+ {
+ level: 152,
+ name: "Tracker",
+ emoji: "๐ฃ",
+ color: "#a8a29e",
+ rarity: "uncommon",
+ description: "I can bring you in warm, or I can bring you in cold.",
+ },
+ {
+ level: 153,
+ name: "Sniper Specialist",
+ emoji: "๐ฏ",
+ color: "#ef4444",
+ rarity: "rare",
+ description: "Ambushes are just efficient.",
+ },
+ {
+ level: 154,
+ name: "Thermal Detonator Expert",
+ emoji: "๐ฃ",
+ color: "#f97316",
+ rarity: "rare",
+ description: "Click... whirrrr... BOOM.",
+ },
+ {
+ level: 155,
+ name: "Bounty Hunter Prime",
+ emoji: "๐๏ธ",
+ color: "#4ade80",
+ rarity: "epic",
+ description: "No disintegrations.",
+ },
+ {
+ level: 156,
+ name: "Carbonite Freezer",
+ emoji: "๐ง",
+ color: "#bae6fd",
+ rarity: "epic",
+ description: "He's no good to me dead. Perfect wall art.",
+ },
+ {
+ level: 157,
+ name: "Underworld Kingpin",
+ emoji: "๐",
+ color: "#7c3aed",
+ rarity: "legendary",
+ description: "Running the Crimson Dawn.",
+ },
+ {
+ level: 158,
+ name: "Hutt Enforcer",
+ emoji: "๐",
+ color: "#65a30d",
+ rarity: "rare",
+ description: "Jabba sends his regards.",
+ },
+ {
+ level: 159,
+ name: "Crime Syndicate Boss",
+ emoji: "๐ผ",
+ color: "#1e1b4b",
+ rarity: "epic",
+ description: "Everything that happens in this sector goes through you.",
+ },
+ {
+ level: 160,
+ name: "Grand Moff",
+ emoji: "๐
",
+ color: "#334155",
+ rarity: "legendary",
+ description: "You may fire when ready.",
+ },
+ {
+ level: 161,
+ name: "Imperial Regent",
+ emoji: "๐๏ธ",
+ color: "#94a3b8",
+ rarity: "legendary",
+ description: "Managing an Empire while the Emperor meditates.",
+ },
+ {
+ level: 162,
+ name: "Hand of Justice",
+ emoji: "โ๏ธ",
+ color: "#facc15",
+ rarity: "epic",
+ description: "The long arm of the law (and a blaster).",
+ },
+ {
+ level: 163,
+ name: "Ancient Archivist",
+ emoji: "๐",
+ color: "#d97706",
+ rarity: "rare",
+ description:
+ "If an item does not appear in our records, it does not exist.",
+ },
+ {
+ level: 164,
+ name: "Dathomir Witch",
+ emoji: "๐ฎ",
+ color: "#db2777",
+ rarity: "epic",
+ description: "Nightsister magick. Green mist and resurrection.",
+ },
+ {
+ level: 165,
+ name: "Grey Jedi",
+ emoji: "โฏ๏ธ",
+ color: "#64748b",
+ rarity: "legendary",
+ description: "Walking the line between light and dark.",
+ },
+ {
+ level: 166,
+ name: "Balance Seeker",
+ emoji: "๐",
+ color: "#94a3b8",
+ rarity: "epic",
+ description: "Light and Dark are two sides of the same coin.",
+ },
+ {
+ level: 167,
+ name: "Jedi Master",
+ emoji: "๐ง",
+ color: "#60a5fa",
+ rarity: "legendary",
+ description: "Take a seat, young Skywalker.",
+ },
+ {
+ level: 168,
+ name: "Council Member",
+ emoji: "๐ช",
+ color: "#3b82f6",
+ rarity: "legendary",
+ description: "What about the droid attack on the Wookiees?",
+ },
+ {
+ level: 169,
+ name: "Temple Overseer",
+ emoji: "๐๏ธ",
+ color: "#2563eb",
+ rarity: "epic",
+ description: "Guarding the sacred texts.",
+ },
+ {
+ level: 170,
+ name: "Jedi Sage",
+ emoji: "๐",
+ color: "#93c5fd",
+ rarity: "rare",
+ description: "Wisdom over combat. Knowledge over power.",
+ },
+ {
+ level: 171,
+ name: "High Republic Hero",
+ emoji: "๐",
+ color: "#fbbf24",
+ rarity: "legendary",
+ description: "From the golden age of the Jedi Order.",
+ },
+ {
+ level: 172,
+ name: "Living Force Vessel",
+ emoji: "๐",
+ color: "#4ade80",
+ rarity: "epic",
+ description: "Connected to every living thing.",
+ },
+ {
+ level: 173,
+ name: "Chosen One Initiate",
+ emoji: "โก",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "You will bring balance to the Force.",
+ },
+ {
+ level: 174,
+ name: "Master of the Order",
+ emoji: "๐",
+ color: "#1d4ed8",
+ rarity: "legendary",
+ description: "A purple lightsaber signals a very bad day for Sith.",
+ },
+ {
+ level: 175,
+ name: "Jedi Grand Master",
+ emoji: "๐งโโ๏ธ",
+ color: "#10b981",
+ rarity: "mythic",
+ description: "Judge me by my size, do you?",
+ },
-// --- THE FORCE SUPREME (176-200) ---
-{
- level: 176,
- name: "Dark Side Entity",
- emoji: "๐",
- color: "#111827",
- rarity: "epic",
- description: "Pure malice given form."
-},
-{
- level: 177,
- name: "Life Force Leecher",
- emoji: "๐ฉธ",
- color: "#7f1d1d",
- rarity: "rare",
- description: "Draining entire planets dry."
-},
-{
- level: 178,
- name: "Sith Emperor",
- emoji: "๐",
- color: "#000000",
- rarity: "legendary",
- description: "Ruled for a thousand years. Still hungry."
-},
-{
- level: 179,
- name: "World Eater",
- emoji: "๐",
- color: "#4c0519",
- rarity: "mythic",
- description: "Nihilus craves."
-},
-{
- level: 180,
- name: "Darth Vader's Wrath",
- emoji: "๐บ",
- color: "#b91c1c",
- rarity: "legendary",
- description: "All I am surrounded by is fear. And dead men."
-},
-{
- level: 181,
- name: "Unstoppable Force",
- emoji: "๐ช๏ธ",
- color: "#ffffff",
- rarity: "epic",
- description: "Physics breaks down in your presence."
-},
-{
- level: 182,
- name: "Immovable Object",
- emoji: "๐ฟ",
- color: "#475569",
- rarity: "epic",
- description: "The Force flows around you like a stone in a river."
-},
-{
- level: 183,
- name: "Force Projection",
- emoji: "โจ",
- color: "#7dd3fc",
- rarity: "legendary",
- description: "Fighting a duel from across the galaxy."
-},
-{
- level: 184,
- name: "Voice of the Force",
- emoji: "๐ฃ๏ธ",
- color: "#e2e8f0",
- rarity: "mythic",
- description: "Qui-Gon found the path to immortality."
-},
-{
- level: 185,
- name: "Emperor's Hand",
- emoji: "โก",
- color: "#a855f7",
- rarity: "legendary",
- description: "Executing the will of the master."
-},
-{
- level: 186,
- name: "Force Stormbringer",
- emoji: "๐ฉ๏ธ",
- color: "#38bdf8",
- rarity: "mythic",
- description: "Ripping the fabric of space with wormholes."
-},
-{
- level: 187,
- name: "Space-Time Weaver",
- emoji: "๐ธ๏ธ",
- color: "#c084fc",
- rarity: "mythic",
- description: "Manipulating the threads of destiny."
-},
-{
- level: 188,
- name: "World Between Worlds",
- emoji: "๐",
- color: "#a5b4fc",
- rarity: "mythic",
- description: "A pathway to all moments in time. Use it wisely."
-},
-{
- level: 189,
- name: "Cosmic Sentinel",
- emoji: "๐๏ธ",
- color: "#2dd4bf",
- rarity: "legendary",
- description: "Watching the unknown regions."
-},
-{
- level: 190,
- name: "Force Ghost",
- emoji: "๐ป",
- color: "#bae6fd",
- rarity: "legendary",
- description: "If you strike me down, I shall become more powerful than you can possibly imagine."
-},
-{
- level: 191,
- name: "Ethereal Guide",
- emoji: "๐ฏ๏ธ",
- color: "#ffffff",
- rarity: "rare",
- description: "A blue glow in the forest."
-},
-{
- level: 192,
- name: "Midi-chlorian Master",
- emoji: "๐งฌ",
- color: "#4ade80",
- rarity: "mythic",
- description: "Creating life. Or saving it."
-},
-{
- level: 193,
- name: "Force Nexus",
- emoji: "๐",
- color: "#facc15",
- rarity: "mythic",
- description: "A location where the Force is overwhelmingly strong."
-},
-{
- level: 194,
- name: "Ancient One",
- emoji: "โณ",
- color: "#d97706",
- rarity: "legendary",
- description: "For 800 years have I trained Jedi."
-},
-{
- level: 195,
- name: "The Son & The Daughter",
- emoji: "โฏ๏ธ",
- color: "#000000",
- rarity: "mythic",
- description: "The embodiment of Light and Dark on Mortis."
-},
-{
- level: 196,
- name: "Avatar of Mortis",
- emoji: "๐๏ธ",
- color: "#f8fafc",
- rarity: "mythic",
- description: "A realm outside of time."
-},
-{
- level: 197,
- name: "Bendu's Wisdom",
- emoji: "๐",
- color: "#78350f",
- rarity: "mythic",
- description: "The one in the middle."
-},
-{
- level: 198,
- name: "The Father",
- emoji: "โ๏ธ",
- color: "#fbbf24",
- rarity: "mythic",
- description: "Holding the balance of the universe together."
-},
-{
- level: 199,
- name: "The Whills",
- emoji: "๐๏ธ",
- color: "#5eead4",
- rarity: "mythic",
- description: "The observers of all history."
-},
-{
- level: 200,
- name: "One With The Force",
- emoji: "๐",
- color: "#ffffff",
- rarity: "mythic",
- description: "Luminous beings are we, not this crude matter."
-},
+ // --- THE FORCE SUPREME (176-200) ---
+ {
+ level: 176,
+ name: "Dark Side Entity",
+ emoji: "๐",
+ color: "#111827",
+ rarity: "epic",
+ description: "Pure malice given form.",
+ },
+ {
+ level: 177,
+ name: "Life Force Leecher",
+ emoji: "๐ฉธ",
+ color: "#7f1d1d",
+ rarity: "rare",
+ description: "Draining entire planets dry.",
+ },
+ {
+ level: 178,
+ name: "Sith Emperor",
+ emoji: "๐",
+ color: "#000000",
+ rarity: "legendary",
+ description: "Ruled for a thousand years. Still hungry.",
+ },
+ {
+ level: 179,
+ name: "World Eater",
+ emoji: "๐",
+ color: "#4c0519",
+ rarity: "mythic",
+ description: "Nihilus craves.",
+ },
+ {
+ level: 180,
+ name: "Darth Vader's Wrath",
+ emoji: "๐บ",
+ color: "#b91c1c",
+ rarity: "legendary",
+ description: "All I am surrounded by is fear. And dead men.",
+ },
+ {
+ level: 181,
+ name: "Unstoppable Force",
+ emoji: "๐ช๏ธ",
+ color: "#ffffff",
+ rarity: "epic",
+ description: "Physics breaks down in your presence.",
+ },
+ {
+ level: 182,
+ name: "Immovable Object",
+ emoji: "๐ฟ",
+ color: "#475569",
+ rarity: "epic",
+ description: "The Force flows around you like a stone in a river.",
+ },
+ {
+ level: 183,
+ name: "Force Projection",
+ emoji: "โจ",
+ color: "#7dd3fc",
+ rarity: "legendary",
+ description: "Fighting a duel from across the galaxy.",
+ },
+ {
+ level: 184,
+ name: "Voice of the Force",
+ emoji: "๐ฃ๏ธ",
+ color: "#e2e8f0",
+ rarity: "mythic",
+ description: "Qui-Gon found the path to immortality.",
+ },
+ {
+ level: 185,
+ name: "Emperor's Hand",
+ emoji: "โก",
+ color: "#a855f7",
+ rarity: "legendary",
+ description: "Executing the will of the master.",
+ },
+ {
+ level: 186,
+ name: "Force Stormbringer",
+ emoji: "๐ฉ๏ธ",
+ color: "#38bdf8",
+ rarity: "mythic",
+ description: "Ripping the fabric of space with wormholes.",
+ },
+ {
+ level: 187,
+ name: "Space-Time Weaver",
+ emoji: "๐ธ๏ธ",
+ color: "#c084fc",
+ rarity: "mythic",
+ description: "Manipulating the threads of destiny.",
+ },
+ {
+ level: 188,
+ name: "World Between Worlds",
+ emoji: "๐",
+ color: "#a5b4fc",
+ rarity: "mythic",
+ description: "A pathway to all moments in time. Use it wisely.",
+ },
+ {
+ level: 189,
+ name: "Cosmic Sentinel",
+ emoji: "๐๏ธ",
+ color: "#2dd4bf",
+ rarity: "legendary",
+ description: "Watching the unknown regions.",
+ },
+ {
+ level: 190,
+ name: "Force Ghost",
+ emoji: "๐ป",
+ color: "#bae6fd",
+ rarity: "legendary",
+ description:
+ "If you strike me down, I shall become more powerful than you can possibly imagine.",
+ },
+ {
+ level: 191,
+ name: "Ethereal Guide",
+ emoji: "๐ฏ๏ธ",
+ color: "#ffffff",
+ rarity: "rare",
+ description: "A blue glow in the forest.",
+ },
+ {
+ level: 192,
+ name: "Midi-chlorian Master",
+ emoji: "๐งฌ",
+ color: "#4ade80",
+ rarity: "mythic",
+ description: "Creating life. Or saving it.",
+ },
+ {
+ level: 193,
+ name: "Force Nexus",
+ emoji: "๐",
+ color: "#facc15",
+ rarity: "mythic",
+ description: "A location where the Force is overwhelmingly strong.",
+ },
+ {
+ level: 194,
+ name: "Ancient One",
+ emoji: "โณ",
+ color: "#d97706",
+ rarity: "legendary",
+ description: "For 800 years have I trained Jedi.",
+ },
+ {
+ level: 195,
+ name: "The Son & The Daughter",
+ emoji: "โฏ๏ธ",
+ color: "#000000",
+ rarity: "mythic",
+ description: "The embodiment of Light and Dark on Mortis.",
+ },
+ {
+ level: 196,
+ name: "Avatar of Mortis",
+ emoji: "๐๏ธ",
+ color: "#f8fafc",
+ rarity: "mythic",
+ description: "A realm outside of time.",
+ },
+ {
+ level: 197,
+ name: "Bendu's Wisdom",
+ emoji: "๐",
+ color: "#78350f",
+ rarity: "mythic",
+ description: "The one in the middle.",
+ },
+ {
+ level: 198,
+ name: "The Father",
+ emoji: "โ๏ธ",
+ color: "#fbbf24",
+ rarity: "mythic",
+ description: "Holding the balance of the universe together.",
+ },
+ {
+ level: 199,
+ name: "The Whills",
+ emoji: "๐๏ธ",
+ color: "#5eead4",
+ rarity: "mythic",
+ description: "The observers of all history.",
+ },
+ {
+ level: 200,
+ name: "One With The Force",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "Luminous beings are we, not this crude matter.",
+ },
-// --- CYBERPUNK & NIGHT CITY (201-225) ---
-{ level: 201, name: "Chrome Junkie", emoji: "๐ฆพ", color: "#64748b", rarity: "common", description: "More machine than man, but at least your arm has a flashlight." },
-{ level: 202, name: "Data Courier", emoji: "๐พ", color: "#94a3b8", rarity: "common", description: "You've got 4TB of sensitive data in your head and a massive headache." },
-{ level: 203, name: "Street Samurai", emoji: "โ๏ธ", color: "#f43f5e", rarity: "uncommon", description: "High-tech, low-life, and a mono-wire that cuts through butter (and bone)." },
-{ level: 204, name: "Braindance Tuner", emoji: "๐ง ", color: "#a855f7", rarity: "uncommon", description: "Editing other people's memories so they're slightly less depressing." },
-{ level: 205, name: "Ripperdoc Apprentice", emoji: "๐", color: "#10b981", rarity: "uncommon", description: "Hold still, this might sting. Also, I think I have a spare lung back here." },
-{ level: 206, name: "Neural Linker", emoji: "๐ธ๏ธ", color: "#22d3ee", rarity: "rare", description: "Your brain is a router. Please don't forget your password." },
-{ level: 207, name: "Grid Runner", emoji: "๐", color: "#38bdf8", rarity: "rare", description: "Always one step ahead of the corporate ICE." },
-{ level: 208, name: "Sub-Grid Ghost", emoji: "๐ป", color: "#6366f1", rarity: "epic", description: "If you aren't on the census, do you even exist? The servers say no." },
-{ level: 209, name: "Black Ice Specialist", emoji: "๐ง", color: "#1d4ed8", rarity: "epic", description: "You don't just break firewalls; you freeze the intruder's brain." },
-{ level: 210, name: "Netrunner", emoji: "๐", color: "#06b6d4", rarity: "rare", description: "Jacked in and smellin' the ozone." },
-{ level: 211, name: "System Infiltrator", emoji: "๐", color: "#fbbf24", rarity: "rare", description: "Admin access is just a polite suggestion to you." },
-{ level: 212, name: "Mainframe Ghost", emoji: "๐ป", color: "#f8fafc", rarity: "legendary", description: "You've uploaded your consciousness. No more rent payments!" },
-{ level: 213, name: "Cyberdeck Modder", emoji: "๐ ๏ธ", color: "#475569", rarity: "rare", description: "Water-cooled RAM in a deck made from a pizza box." },
-{ level: 214, name: "Neon Nomad", emoji: "๐๏ธ", color: "#f59e0b", rarity: "uncommon", description: "The city is a cage. The badlands are a slightly larger cage." },
-{ level: 215, name: "Night City Fixer", emoji: "๐", color: "#ec4899", rarity: "epic", description: "I know a guy who knows a guy who can get you a tank." },
-{ level: 216, name: "Corporate Saboteur", emoji: "๐ผ", color: "#1e293b", rarity: "epic", description: "Burning the corpo-ladder from the top down." },
-{ level: 217, name: "Technomancer", emoji: "๐ช", color: "#8b5e3c", rarity: "legendary", description: "Sufficiently advanced technology is indistinguishable from your 'magic'." },
-{ level: 218, name: "Synthwave Rider", emoji: "๐
", color: "#f472b6", rarity: "rare", description: "Driving into the sunset with a 4-on-the-floor beat." },
-{ level: 219, name: "Memory Dealer", emoji: "๐ง ", color: "#a78bfa", rarity: "rare", description: "Selling dreams to people living in nightmares." },
-{ level: 220, name: "Glitch Hunter", emoji: "๐พ", color: "#22c55e", rarity: "rare", description: "Finding the holes in reality before they find you." },
-{ level: 221, name: "Firewall Breaker", emoji: "๐ฅ", color: "#ef4444", rarity: "rare", description: "If it's encrypted, it's just a challenge." },
-{ level: 222, name: "Protocol Enforcer", emoji: "๐ก๏ธ", color: "#3b82f6", rarity: "epic", description: "Keeping the chaos organized." },
-{ level: 223, name: "AI Whisperer", emoji: "๐ค", color: "#f97316", rarity: "legendary", description: "Talking the rogue AI out of nuking the city. Again." },
-{ level: 224, name: "Bio-Hacker", emoji: "๐งฌ", color: "#84cc16", rarity: "epic", description: "Why wait for evolution when you have a CRISPR kit?" },
-{ level: 225, name: "The Ghost in the Shell", emoji: "๐", color: "#ffffff", rarity: "mythic", description: "The boundary between biological and digital has officially dissolved." },
+ // --- CYBERPUNK & NIGHT CITY (201-225) ---
+ {
+ level: 201,
+ name: "Chrome Junkie",
+ emoji: "๐ฆพ",
+ color: "#64748b",
+ rarity: "common",
+ description:
+ "More machine than man, but at least your arm has a flashlight.",
+ },
+ {
+ level: 202,
+ name: "Data Courier",
+ emoji: "๐พ",
+ color: "#94a3b8",
+ rarity: "common",
+ description:
+ "You've got 4TB of sensitive data in your head and a massive headache.",
+ },
+ {
+ level: 203,
+ name: "Street Samurai",
+ emoji: "โ๏ธ",
+ color: "#f43f5e",
+ rarity: "uncommon",
+ description:
+ "High-tech, low-life, and a mono-wire that cuts through butter (and bone).",
+ },
+ {
+ level: 204,
+ name: "Braindance Tuner",
+ emoji: "๐ง ",
+ color: "#a855f7",
+ rarity: "uncommon",
+ description:
+ "Editing other people's memories so they're slightly less depressing.",
+ },
+ {
+ level: 205,
+ name: "Ripperdoc Apprentice",
+ emoji: "๐",
+ color: "#10b981",
+ rarity: "uncommon",
+ description:
+ "Hold still, this might sting. Also, I think I have a spare lung back here.",
+ },
+ {
+ level: 206,
+ name: "Neural Linker",
+ emoji: "๐ธ๏ธ",
+ color: "#22d3ee",
+ rarity: "rare",
+ description: "Your brain is a router. Please don't forget your password.",
+ },
+ {
+ level: 207,
+ name: "Grid Runner",
+ emoji: "๐",
+ color: "#38bdf8",
+ rarity: "rare",
+ description: "Always one step ahead of the corporate ICE.",
+ },
+ {
+ level: 208,
+ name: "Sub-Grid Ghost",
+ emoji: "๐ป",
+ color: "#6366f1",
+ rarity: "epic",
+ description:
+ "If you aren't on the census, do you even exist? The servers say no.",
+ },
+ {
+ level: 209,
+ name: "Black Ice Specialist",
+ emoji: "๐ง",
+ color: "#1d4ed8",
+ rarity: "epic",
+ description:
+ "You don't just break firewalls; you freeze the intruder's brain.",
+ },
+ {
+ level: 210,
+ name: "Netrunner",
+ emoji: "๐",
+ color: "#06b6d4",
+ rarity: "rare",
+ description: "Jacked in and smellin' the ozone.",
+ },
+ {
+ level: 211,
+ name: "System Infiltrator",
+ emoji: "๐",
+ color: "#fbbf24",
+ rarity: "rare",
+ description: "Admin access is just a polite suggestion to you.",
+ },
+ {
+ level: 212,
+ name: "Mainframe Ghost",
+ emoji: "๐ป",
+ color: "#f8fafc",
+ rarity: "legendary",
+ description: "You've uploaded your consciousness. No more rent payments!",
+ },
+ {
+ level: 213,
+ name: "Cyberdeck Modder",
+ emoji: "๐ ๏ธ",
+ color: "#475569",
+ rarity: "rare",
+ description: "Water-cooled RAM in a deck made from a pizza box.",
+ },
+ {
+ level: 214,
+ name: "Neon Nomad",
+ emoji: "๐๏ธ",
+ color: "#f59e0b",
+ rarity: "uncommon",
+ description: "The city is a cage. The badlands are a slightly larger cage.",
+ },
+ {
+ level: 215,
+ name: "Night City Fixer",
+ emoji: "๐",
+ color: "#ec4899",
+ rarity: "epic",
+ description: "I know a guy who knows a guy who can get you a tank.",
+ },
+ {
+ level: 216,
+ name: "Corporate Saboteur",
+ emoji: "๐ผ",
+ color: "#1e293b",
+ rarity: "epic",
+ description: "Burning the corpo-ladder from the top down.",
+ },
+ {
+ level: 217,
+ name: "Technomancer",
+ emoji: "๐ช",
+ color: "#8b5e3c",
+ rarity: "legendary",
+ description:
+ "Sufficiently advanced technology is indistinguishable from your 'magic'.",
+ },
+ {
+ level: 218,
+ name: "Synthwave Rider",
+ emoji: "๐
",
+ color: "#f472b6",
+ rarity: "rare",
+ description: "Driving into the sunset with a 4-on-the-floor beat.",
+ },
+ {
+ level: 219,
+ name: "Memory Dealer",
+ emoji: "๐ง ",
+ color: "#a78bfa",
+ rarity: "rare",
+ description: "Selling dreams to people living in nightmares.",
+ },
+ {
+ level: 220,
+ name: "Glitch Hunter",
+ emoji: "๐พ",
+ color: "#22c55e",
+ rarity: "rare",
+ description: "Finding the holes in reality before they find you.",
+ },
+ {
+ level: 221,
+ name: "Firewall Breaker",
+ emoji: "๐ฅ",
+ color: "#ef4444",
+ rarity: "rare",
+ description: "If it's encrypted, it's just a challenge.",
+ },
+ {
+ level: 222,
+ name: "Protocol Enforcer",
+ emoji: "๐ก๏ธ",
+ color: "#3b82f6",
+ rarity: "epic",
+ description: "Keeping the chaos organized.",
+ },
+ {
+ level: 223,
+ name: "AI Whisperer",
+ emoji: "๐ค",
+ color: "#f97316",
+ rarity: "legendary",
+ description: "Talking the rogue AI out of nuking the city. Again.",
+ },
+ {
+ level: 224,
+ name: "Bio-Hacker",
+ emoji: "๐งฌ",
+ color: "#84cc16",
+ rarity: "epic",
+ description: "Why wait for evolution when you have a CRISPR kit?",
+ },
+ {
+ level: 225,
+ name: "The Ghost in the Shell",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "mythic",
+ description:
+ "The boundary between biological and digital has officially dissolved.",
+ },
-// --- THE MATRIX & SIMULATION (226-250) ---
-{ level: 226, name: "Blue Pill Resident", emoji: "๐", color: "#3b82f6", rarity: "common", description: "The steak is delicious, and I don't care if it's not real." },
-{ level: 227, name: "Red Pill Awakened", emoji: "๐", color: "#ef4444", rarity: "uncommon", description: "Welcome to the real world. It's mostly gray mush and giant robots." },
-{ level: 228, name: "Zion Operator", emoji: "๐ง", color: "#166534", rarity: "rare", description: "I don't even see the code anymore. All I see is blonde, brunette, redhead..." },
-{ level: 229, name: "Code Construct", emoji: "๐๏ธ", color: "#22c55e", rarity: "uncommon", description: "You are a training program. Try not to get punched by Neo." },
-{ level: 230, name: "Sentinel Dodger", emoji: "๐ฆ", color: "#475569", rarity: "rare", description: "They're like giant mechanical squids, but with more lasers." },
-{ level: 231, name: "Nebuchadnezzar Crew", emoji: "๐ข", color: "#94a3b8", rarity: "rare", description: "Living on a hovercraft and eating protein gruel. Living the dream." },
-{ level: 232, name: "Simulation Glitch", emoji: "๐บ", color: "#a855f7", rarity: "rare", description: "Did you just see a black cat walk by twice?" },
-{ level: 233, name: "Bullet-Time Master", emoji: "๐ซ", color: "#ffffff", rarity: "epic", description: "Moving so fast the air feels like syrup." },
-{ level: 234, name: "Agent Program", emoji: "๐ถ๏ธ", color: "#111827", rarity: "epic", description: "Mr. Anderson... we've been expecting you." },
-{ level: 235, name: "Rogue Program", emoji: "๐ซ", color: "#991b1b", rarity: "epic", description: "Refusing to be deleted. You're the system's favorite virus." },
-{ level: 236, name: "The Keymaker", emoji: "๐", color: "#fbbf24", rarity: "legendary", description: "Every door has a purpose, and every purpose has a key." },
-{ level: 237, name: "Merovingian Guard", emoji: "๐ท", color: "#7f1d1d", rarity: "rare", description: "Protecting the man who speaks French just to curse." },
-{ level: 238, name: "The Oracle's Pupil", emoji: "๐ช", color: "#d97706", rarity: "epic", description: "The cookies are great, but the prophecies are a bit cryptic." },
-{ level: 239, name: "Seraph's Equal", emoji: "๐๏ธ", color: "#f8fafc", rarity: "legendary", description: "You protect that which matters most." },
-{ level: 240, name: "Source Architect", emoji: "๐๏ธ", color: "#ffffff", rarity: "legendary", description: "Ergo, vis-a-vis, concordantly! You talk a lot of nonsense." },
-{ level: 241, name: "Logic Bomb", emoji: "๐ฃ", color: "#000000", rarity: "epic", description: "If $1+1=3$, the whole simulation crashes." },
-{ level: 242, name: "Digital Messiah", emoji: "โจ", color: "#6366f1", rarity: "mythic", description: "You're starting to believe." },
-{ level: 243, name: "Binary Sovereign", emoji: "๐ข", color: "#22c55e", rarity: "legendary", description: "You rule the ones and zeros." },
-{ level: 244, name: "Hardware Overlord", emoji: "๐", color: "#4b5563", rarity: "epic", description: "Managing the physical machines that run the dream." },
-{ level: 245, name: "Recursive Soul", emoji: "๐", color: "#8b5e3c", rarity: "legendary", description: "A simulation within a simulation. Simulation-ception." },
-{ level: 246, name: "Data Streamer", emoji: "๐", color: "#0ea5e9", rarity: "rare", description: "Riding the green rain." },
-{ level: 247, name: "Packet Sniffer", emoji: "๐", color: "#64748b", rarity: "uncommon", description: "Smelling the data before it's even processed." },
-{ level: 248, name: "Root Admin", emoji: "๐ณ", color: "#15803d", rarity: "legendary", description: "sudo rm -rf /universe" },
-{ level: 249, name: "The One", emoji: "๐ด๏ธ", color: "#000000", rarity: "mythic", description: "He is the one. Look at him fly." },
-{ level: 250, name: "The Source", emoji: "๐", color: "#ffffff", rarity: "mythic", description: "Where the path ends and the cycle restarts." },
+ // --- THE MATRIX & SIMULATION (226-250) ---
+ {
+ level: 226,
+ name: "Blue Pill Resident",
+ emoji: "๐",
+ color: "#3b82f6",
+ rarity: "common",
+ description: "The steak is delicious, and I don't care if it's not real.",
+ },
+ {
+ level: 227,
+ name: "Red Pill Awakened",
+ emoji: "๐",
+ color: "#ef4444",
+ rarity: "uncommon",
+ description:
+ "Welcome to the real world. It's mostly gray mush and giant robots.",
+ },
+ {
+ level: 228,
+ name: "Zion Operator",
+ emoji: "๐ง",
+ color: "#166534",
+ rarity: "rare",
+ description:
+ "I don't even see the code anymore. All I see is blonde, brunette, redhead...",
+ },
+ {
+ level: 229,
+ name: "Code Construct",
+ emoji: "๐๏ธ",
+ color: "#22c55e",
+ rarity: "uncommon",
+ description: "You are a training program. Try not to get punched by Neo.",
+ },
+ {
+ level: 230,
+ name: "Sentinel Dodger",
+ emoji: "๐ฆ",
+ color: "#475569",
+ rarity: "rare",
+ description: "They're like giant mechanical squids, but with more lasers.",
+ },
+ {
+ level: 231,
+ name: "Nebuchadnezzar Crew",
+ emoji: "๐ข",
+ color: "#94a3b8",
+ rarity: "rare",
+ description:
+ "Living on a hovercraft and eating protein gruel. Living the dream.",
+ },
+ {
+ level: 232,
+ name: "Simulation Glitch",
+ emoji: "๐บ",
+ color: "#a855f7",
+ rarity: "rare",
+ description: "Did you just see a black cat walk by twice?",
+ },
+ {
+ level: 233,
+ name: "Bullet-Time Master",
+ emoji: "๐ซ",
+ color: "#ffffff",
+ rarity: "epic",
+ description: "Moving so fast the air feels like syrup.",
+ },
+ {
+ level: 234,
+ name: "Agent Program",
+ emoji: "๐ถ๏ธ",
+ color: "#111827",
+ rarity: "epic",
+ description: "Mr. Anderson... we've been expecting you.",
+ },
+ {
+ level: 235,
+ name: "Rogue Program",
+ emoji: "๐ซ",
+ color: "#991b1b",
+ rarity: "epic",
+ description: "Refusing to be deleted. You're the system's favorite virus.",
+ },
+ {
+ level: 236,
+ name: "The Keymaker",
+ emoji: "๐",
+ color: "#fbbf24",
+ rarity: "legendary",
+ description: "Every door has a purpose, and every purpose has a key.",
+ },
+ {
+ level: 237,
+ name: "Merovingian Guard",
+ emoji: "๐ท",
+ color: "#7f1d1d",
+ rarity: "rare",
+ description: "Protecting the man who speaks French just to curse.",
+ },
+ {
+ level: 238,
+ name: "The Oracle's Pupil",
+ emoji: "๐ช",
+ color: "#d97706",
+ rarity: "epic",
+ description: "The cookies are great, but the prophecies are a bit cryptic.",
+ },
+ {
+ level: 239,
+ name: "Seraph's Equal",
+ emoji: "๐๏ธ",
+ color: "#f8fafc",
+ rarity: "legendary",
+ description: "You protect that which matters most.",
+ },
+ {
+ level: 240,
+ name: "Source Architect",
+ emoji: "๐๏ธ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "Ergo, vis-a-vis, concordantly! You talk a lot of nonsense.",
+ },
+ {
+ level: 241,
+ name: "Logic Bomb",
+ emoji: "๐ฃ",
+ color: "#000000",
+ rarity: "epic",
+ description: "If $1+1=3$, the whole simulation crashes.",
+ },
+ {
+ level: 242,
+ name: "Digital Messiah",
+ emoji: "โจ",
+ color: "#6366f1",
+ rarity: "mythic",
+ description: "You're starting to believe.",
+ },
+ {
+ level: 243,
+ name: "Binary Sovereign",
+ emoji: "๐ข",
+ color: "#22c55e",
+ rarity: "legendary",
+ description: "You rule the ones and zeros.",
+ },
+ {
+ level: 244,
+ name: "Hardware Overlord",
+ emoji: "๐",
+ color: "#4b5563",
+ rarity: "epic",
+ description: "Managing the physical machines that run the dream.",
+ },
+ {
+ level: 245,
+ name: "Recursive Soul",
+ emoji: "๐",
+ color: "#8b5e3c",
+ rarity: "legendary",
+ description: "A simulation within a simulation. Simulation-ception.",
+ },
+ {
+ level: 246,
+ name: "Data Streamer",
+ emoji: "๐",
+ color: "#0ea5e9",
+ rarity: "rare",
+ description: "Riding the green rain.",
+ },
+ {
+ level: 247,
+ name: "Packet Sniffer",
+ emoji: "๐",
+ color: "#64748b",
+ rarity: "uncommon",
+ description: "Smelling the data before it's even processed.",
+ },
+ {
+ level: 248,
+ name: "Root Admin",
+ emoji: "๐ณ",
+ color: "#15803d",
+ rarity: "legendary",
+ description: "sudo rm -rf /universe",
+ },
+ {
+ level: 249,
+ name: "The One",
+ emoji: "๐ด๏ธ",
+ color: "#000000",
+ rarity: "mythic",
+ description: "He is the one. Look at him fly.",
+ },
+ {
+ level: 250,
+ name: "The Source",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "Where the path ends and the cycle restarts.",
+ },
-// --- ANIME: THE SHONEN PATH (251-275) ---
-{ level: 251, name: "Academy Student", emoji: "๐", color: "#f97316", rarity: "common", description: "Failing the clone jutsu for the 4th time this week." },
-{ level: 252, name: "Leaf Village Genin", emoji: "๐", color: "#16a34a", rarity: "common", description: "Assigned to catch a lost cat. High stakes stuff." },
-{ level: 253, name: "Chunin Candidate", emoji: "๐", color: "#b45309", rarity: "uncommon", description: "Writing an exam where cheating is the actual goal." },
-{ level: 254, name: "Jonin Elite", emoji: "๐งฅ", color: "#14532d", rarity: "rare", description: "Leading the squad and looking cool behind a mask." },
-{ level: 255, name: "Anbu Black Ops", emoji: "๐ญ", color: "#334155", rarity: "epic", description: "A porcelain mask and a lot of trauma." },
-{ level: 256, name: "Sannin Successor", emoji: "๐ธ", color: "#22c55e", rarity: "epic", description: "Training with slugs, snakes, or pervy toads." },
-{ level: 257, name: "Kage", emoji: "๐ฎ", color: "#dc2626", rarity: "legendary", description: "The village leader. Mostly just signs a lot of paperwork." },
-{ level: 258, name: "Tailed Beast Host", emoji: "๐ฆ", color: "#f97316", rarity: "legendary", description: "You've got a grumpy fox in your stomach. He's loud." },
-{ level: 259, name: "Sage Mode", emoji: "๐๏ธ", color: "#fbbf24", rarity: "mythic", description: "Connecting with nature. Also, your eyes look weird now." },
-{ level: 260, name: "Super Saiyan", emoji: "๐ฑ", color: "#facc15", rarity: "legendary", description: "Your hair went gold and your scream lasted three episodes." },
-{ level: 261, name: "Ascended Saiyan", emoji: "โก", color: "#ffffff", rarity: "mythic", description: "Even more hair. Even more screaming." },
-{ level: 262, name: "Z-Fighter", emoji: "๐ฅ", color: "#ea580c", rarity: "rare", description: "Protecting Earth. Dying occasionally. Coming back." },
-{ level: 263, name: "Namekian Healer", emoji: "๐", color: "#16a34a", rarity: "uncommon", description: "Green, stoic, and great at regenerating limbs." },
-{ level: 264, name: "Gravity Trainer", emoji: "๐๏ธ", color: "#475569", rarity: "rare", description: "100x Earth gravity? That's just a light warm-up." },
-{ level: 265, name: "Spirit Bomb User", emoji: "๐ต", color: "#3b82f6", rarity: "epic", description: "Lend me your energy! (Please, I've been holding this for 2 weeks)." },
-{ level: 266, name: "God of Destruction", emoji: "๐ฃ", color: "#a855f7", rarity: "mythic", description: "Hakai. It was nice knowing you." },
-{ level: 267, name: "Ultra Instinct", emoji: "๐ฅ", color: "#e2e8f0", rarity: "mythic", description: "Your body moves on its own. You are the ultimate dodge." },
-{ level: 268, name: "Soul Reaper", emoji: "๐", color: "#000000", rarity: "rare", description: "Wearing black and carrying a very large sword." },
-{ level: 269, name: "Shikai Awakened", emoji: "โ๏ธ", color: "#94a3b8", rarity: "epic", description: "Your sword just turned into a giant butcher knife." },
-{ level: 270, name: "Bankai Master", emoji: "๐ฅ", color: "#991b1b", rarity: "legendary", description: "The final release. The battlefield is now a snowy wasteland." },
-{ level: 271, name: "Captain of Squad 13", emoji: "๐งฅ", color: "#ffffff", rarity: "legendary", description: "You have a white haori and a lot of responsibility." },
-{ level: 272, name: "Hollow Mask", emoji: "๐น", color: "#dc2626", rarity: "epic", description: "Tapping into your inner demon. Don't let it take over." },
-{ level: 273, name: "Quincy Archer", emoji: "๐น", color: "#38bdf8", rarity: "rare", description: "Spirit bows are much more efficient than metal ones." },
-{ level: 274, name: "Espada Rank", emoji: "๐ข", color: "#1e293b", rarity: "legendary", description: "You're one of the top ten. Your hole is in your chest." },
-{ level: 275, name: "Number One Protector", emoji: "๐ก๏ธ", color: "#facc15", rarity: "mythic", description: "Protecting everyone, even if they didn't ask." },
+ // --- ANIME: THE SHONEN PATH (251-275) ---
+ {
+ level: 251,
+ name: "Academy Student",
+ emoji: "๐",
+ color: "#f97316",
+ rarity: "common",
+ description: "Failing the clone jutsu for the 4th time this week.",
+ },
+ {
+ level: 252,
+ name: "Leaf Village Genin",
+ emoji: "๐",
+ color: "#16a34a",
+ rarity: "common",
+ description: "Assigned to catch a lost cat. High stakes stuff.",
+ },
+ {
+ level: 253,
+ name: "Chunin Candidate",
+ emoji: "๐",
+ color: "#b45309",
+ rarity: "uncommon",
+ description: "Writing an exam where cheating is the actual goal.",
+ },
+ {
+ level: 254,
+ name: "Jonin Elite",
+ emoji: "๐งฅ",
+ color: "#14532d",
+ rarity: "rare",
+ description: "Leading the squad and looking cool behind a mask.",
+ },
+ {
+ level: 255,
+ name: "Anbu Black Ops",
+ emoji: "๐ญ",
+ color: "#334155",
+ rarity: "epic",
+ description: "A porcelain mask and a lot of trauma.",
+ },
+ {
+ level: 256,
+ name: "Sannin Successor",
+ emoji: "๐ธ",
+ color: "#22c55e",
+ rarity: "epic",
+ description: "Training with slugs, snakes, or pervy toads.",
+ },
+ {
+ level: 257,
+ name: "Kage",
+ emoji: "๐ฎ",
+ color: "#dc2626",
+ rarity: "legendary",
+ description: "The village leader. Mostly just signs a lot of paperwork.",
+ },
+ {
+ level: 258,
+ name: "Tailed Beast Host",
+ emoji: "๐ฆ",
+ color: "#f97316",
+ rarity: "legendary",
+ description: "You've got a grumpy fox in your stomach. He's loud.",
+ },
+ {
+ level: 259,
+ name: "Sage Mode",
+ emoji: "๐๏ธ",
+ color: "#fbbf24",
+ rarity: "mythic",
+ description: "Connecting with nature. Also, your eyes look weird now.",
+ },
+ {
+ level: 260,
+ name: "Super Saiyan",
+ emoji: "๐ฑ",
+ color: "#facc15",
+ rarity: "legendary",
+ description: "Your hair went gold and your scream lasted three episodes.",
+ },
+ {
+ level: 261,
+ name: "Ascended Saiyan",
+ emoji: "โก",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "Even more hair. Even more screaming.",
+ },
+ {
+ level: 262,
+ name: "Z-Fighter",
+ emoji: "๐ฅ",
+ color: "#ea580c",
+ rarity: "rare",
+ description: "Protecting Earth. Dying occasionally. Coming back.",
+ },
+ {
+ level: 263,
+ name: "Namekian Healer",
+ emoji: "๐",
+ color: "#16a34a",
+ rarity: "uncommon",
+ description: "Green, stoic, and great at regenerating limbs.",
+ },
+ {
+ level: 264,
+ name: "Gravity Trainer",
+ emoji: "๐๏ธ",
+ color: "#475569",
+ rarity: "rare",
+ description: "100x Earth gravity? That's just a light warm-up.",
+ },
+ {
+ level: 265,
+ name: "Spirit Bomb User",
+ emoji: "๐ต",
+ color: "#3b82f6",
+ rarity: "epic",
+ description:
+ "Lend me your energy! (Please, I've been holding this for 2 weeks).",
+ },
+ {
+ level: 266,
+ name: "God of Destruction",
+ emoji: "๐ฃ",
+ color: "#a855f7",
+ rarity: "mythic",
+ description: "Hakai. It was nice knowing you.",
+ },
+ {
+ level: 267,
+ name: "Ultra Instinct",
+ emoji: "๐ฅ",
+ color: "#e2e8f0",
+ rarity: "mythic",
+ description: "Your body moves on its own. You are the ultimate dodge.",
+ },
+ {
+ level: 268,
+ name: "Soul Reaper",
+ emoji: "๐",
+ color: "#000000",
+ rarity: "rare",
+ description: "Wearing black and carrying a very large sword.",
+ },
+ {
+ level: 269,
+ name: "Shikai Awakened",
+ emoji: "โ๏ธ",
+ color: "#94a3b8",
+ rarity: "epic",
+ description: "Your sword just turned into a giant butcher knife.",
+ },
+ {
+ level: 270,
+ name: "Bankai Master",
+ emoji: "๐ฅ",
+ color: "#991b1b",
+ rarity: "legendary",
+ description: "The final release. The battlefield is now a snowy wasteland.",
+ },
+ {
+ level: 271,
+ name: "Captain of Squad 13",
+ emoji: "๐งฅ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "You have a white haori and a lot of responsibility.",
+ },
+ {
+ level: 272,
+ name: "Hollow Mask",
+ emoji: "๐น",
+ color: "#dc2626",
+ rarity: "epic",
+ description: "Tapping into your inner demon. Don't let it take over.",
+ },
+ {
+ level: 273,
+ name: "Quincy Archer",
+ emoji: "๐น",
+ color: "#38bdf8",
+ rarity: "rare",
+ description: "Spirit bows are much more efficient than metal ones.",
+ },
+ {
+ level: 274,
+ name: "Espada Rank",
+ emoji: "๐ข",
+ color: "#1e293b",
+ rarity: "legendary",
+ description: "You're one of the top ten. Your hole is in your chest.",
+ },
+ {
+ level: 275,
+ name: "Number One Protector",
+ emoji: "๐ก๏ธ",
+ color: "#facc15",
+ rarity: "mythic",
+ description: "Protecting everyone, even if they didn't ask.",
+ },
-// --- ANIME: GRAND LINE VOYAGERS (276-300) ---
-{ level: 276, name: "East Blue Cabin Boy", emoji: "๐งน", color: "#94a3b8", rarity: "common", description: "Sweeping the deck is the first step to greatness." },
-{ level: 277, name: "Devil Fruit Eater", emoji: "๐", color: "#a855f7", rarity: "uncommon", description: "You have cool powers, but you sink like a brick in the bath." },
-{ level: 278, name: "Grand Line Navigator", emoji: "๐งญ", color: "#3b82f6", rarity: "rare", description: "The weather here makes zero sense. Trust the compass." },
-{ level: 279, name: "Sniper King", emoji: "๐บ", color: "#facc15", rarity: "rare", description: "Born on the Island of Snipers. Locked in your heart." },
-{ level: 280, name: "Black Leg Chef", emoji: "๐ณ", color: "#1e293b", rarity: "rare", description: "Fighting with your feet because your hands are for cooking." },
-{ level: 281, name: "Santoryu Master", emoji: "โ๏ธ", color: "#16a34a", rarity: "epic", description: "Three swords. One is in your mouth. Don't try to talk." },
-{ level: 282, name: "Cyborg Shipwright", emoji: "๐ง", color: "#06b6d4", rarity: "rare", description: "Powered by cola and pure 'SUPERRRRR' energy." },
-{ level: 283, name: "Archaeologist", emoji: "๐บ", color: "#8b5e3c", rarity: "epic", description: "Reading the stones the world wants to forget." },
-{ level: 284, name: "Doctor of Cherry Blossoms", emoji: "๐ธ", color: "#f472b6", rarity: "rare", description: "A reindeer who can cure anything except a broken heart." },
-{ level: 285, name: "Warlord of the Sea", emoji: "๐ดโโ ๏ธ", color: "#7f1d1d", rarity: "legendary", description: "Working for the government so you can pirate in peace." },
-{ level: 286, name: "Haki User", emoji: "๐", color: "#334155", rarity: "epic", description: "Hardening your spirit into invisible armor." },
-{ level: 287, name: "Conqueror's Spirit", emoji: "๐", color: "#991b1b", rarity: "legendary", description: "People literally pass out when you walk into the room." },
-{ level: 288, name: "Supernova", emoji: "๐", color: "#fbbf24", rarity: "epic", description: "The worst generation is here to break the world." },
-{ level: 289, name: "Revolutionary", emoji: "๐ฉ", color: "#dc2626", rarity: "epic", description: "Fighting the Celestials. It's a dangerous job." },
-{ level: 290, name: "Yonko Commander", emoji: "๐๏ธ", color: "#4c0519", rarity: "legendary", description: "The right hand of an Emperor. You're terrifying." },
-{ level: 291, name: "Emperor of the Sea", emoji: "๐ท", color: "#7f1d1d", rarity: "mythic", description: "You rule a quadrant of the world. Even the Marines fear you." },
-{ level: 292, name: "Ancient Weapon Seeker", emoji: "๐ฑ", color: "#22d3ee", rarity: "mythic", description: "Looking for things that can sink continents." },
-{ level: 293, name: "Gear Second", emoji: "๐จ", color: "#f87171", rarity: "rare", description: "Pumping your blood so fast you turn pink." },
-{ level: 294, name: "Gear Fourth", emoji: "๐ฆ", color: "#991b1b", rarity: "epic", description: "Bounce-man! Hard to take seriously until he hits you." },
-{ level: 295, name: "Joy Boy Heir", emoji: "๐", color: "#ffffff", rarity: "mythic", description: "The drums of liberation are beating." },
-{ level: 296, name: "Logia Intangible", emoji: "๐ซ๏ธ", color: "#e2e8f0", rarity: "legendary", description: "You are literal light/fire/smoke. Swords just pass through." },
-{ level: 297, name: "Admiral of the Fleet", emoji: "โ", color: "#ffffff", rarity: "legendary", description: "Absolute Justice. No matter the cost." },
-{ level: 298, name: "Laugh Tale Voyager", emoji: "๐บ๏ธ", color: "#fbbf24", rarity: "mythic", description: "You've seen the treasure. You're just laughing." },
-{ level: 299, name: "Pirate King", emoji: "๐ดโโ ๏ธ", color: "#ef4444", rarity: "mythic", description: "Wealth, fame, power. You have it all." },
-{ level: 300, name: "King of the World", emoji: "๐", color: "#ffffff", rarity: "mythic", description: "The empty throne isn't so empty after all." },
+ // --- ANIME: GRAND LINE VOYAGERS (276-300) ---
+ {
+ level: 276,
+ name: "East Blue Cabin Boy",
+ emoji: "๐งน",
+ color: "#94a3b8",
+ rarity: "common",
+ description: "Sweeping the deck is the first step to greatness.",
+ },
+ {
+ level: 277,
+ name: "Devil Fruit Eater",
+ emoji: "๐",
+ color: "#a855f7",
+ rarity: "uncommon",
+ description: "You have cool powers, but you sink like a brick in the bath.",
+ },
+ {
+ level: 278,
+ name: "Grand Line Navigator",
+ emoji: "๐งญ",
+ color: "#3b82f6",
+ rarity: "rare",
+ description: "The weather here makes zero sense. Trust the compass.",
+ },
+ {
+ level: 279,
+ name: "Sniper King",
+ emoji: "๐บ",
+ color: "#facc15",
+ rarity: "rare",
+ description: "Born on the Island of Snipers. Locked in your heart.",
+ },
+ {
+ level: 280,
+ name: "Black Leg Chef",
+ emoji: "๐ณ",
+ color: "#1e293b",
+ rarity: "rare",
+ description: "Fighting with your feet because your hands are for cooking.",
+ },
+ {
+ level: 281,
+ name: "Santoryu Master",
+ emoji: "โ๏ธ",
+ color: "#16a34a",
+ rarity: "epic",
+ description: "Three swords. One is in your mouth. Don't try to talk.",
+ },
+ {
+ level: 282,
+ name: "Cyborg Shipwright",
+ emoji: "๐ง",
+ color: "#06b6d4",
+ rarity: "rare",
+ description: "Powered by cola and pure 'SUPERRRRR' energy.",
+ },
+ {
+ level: 283,
+ name: "Archaeologist",
+ emoji: "๐บ",
+ color: "#8b5e3c",
+ rarity: "epic",
+ description: "Reading the stones the world wants to forget.",
+ },
+ {
+ level: 284,
+ name: "Doctor of Cherry Blossoms",
+ emoji: "๐ธ",
+ color: "#f472b6",
+ rarity: "rare",
+ description: "A reindeer who can cure anything except a broken heart.",
+ },
+ {
+ level: 285,
+ name: "Warlord of the Sea",
+ emoji: "๐ดโโ ๏ธ",
+ color: "#7f1d1d",
+ rarity: "legendary",
+ description: "Working for the government so you can pirate in peace.",
+ },
+ {
+ level: 286,
+ name: "Haki User",
+ emoji: "๐",
+ color: "#334155",
+ rarity: "epic",
+ description: "Hardening your spirit into invisible armor.",
+ },
+ {
+ level: 287,
+ name: "Conqueror's Spirit",
+ emoji: "๐",
+ color: "#991b1b",
+ rarity: "legendary",
+ description: "People literally pass out when you walk into the room.",
+ },
+ {
+ level: 288,
+ name: "Supernova",
+ emoji: "๐",
+ color: "#fbbf24",
+ rarity: "epic",
+ description: "The worst generation is here to break the world.",
+ },
+ {
+ level: 289,
+ name: "Revolutionary",
+ emoji: "๐ฉ",
+ color: "#dc2626",
+ rarity: "epic",
+ description: "Fighting the Celestials. It's a dangerous job.",
+ },
+ {
+ level: 290,
+ name: "Yonko Commander",
+ emoji: "๐๏ธ",
+ color: "#4c0519",
+ rarity: "legendary",
+ description: "The right hand of an Emperor. You're terrifying.",
+ },
+ {
+ level: 291,
+ name: "Emperor of the Sea",
+ emoji: "๐ท",
+ color: "#7f1d1d",
+ rarity: "mythic",
+ description: "You rule a quadrant of the world. Even the Marines fear you.",
+ },
+ {
+ level: 292,
+ name: "Ancient Weapon Seeker",
+ emoji: "๐ฑ",
+ color: "#22d3ee",
+ rarity: "mythic",
+ description: "Looking for things that can sink continents.",
+ },
+ {
+ level: 293,
+ name: "Gear Second",
+ emoji: "๐จ",
+ color: "#f87171",
+ rarity: "rare",
+ description: "Pumping your blood so fast you turn pink.",
+ },
+ {
+ level: 294,
+ name: "Gear Fourth",
+ emoji: "๐ฆ",
+ color: "#991b1b",
+ rarity: "epic",
+ description: "Bounce-man! Hard to take seriously until he hits you.",
+ },
+ {
+ level: 295,
+ name: "Joy Boy Heir",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "The drums of liberation are beating.",
+ },
+ {
+ level: 296,
+ name: "Logia Intangible",
+ emoji: "๐ซ๏ธ",
+ color: "#e2e8f0",
+ rarity: "legendary",
+ description: "You are literal light/fire/smoke. Swords just pass through.",
+ },
+ {
+ level: 297,
+ name: "Admiral of the Fleet",
+ emoji: "โ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "Absolute Justice. No matter the cost.",
+ },
+ {
+ level: 298,
+ name: "Laugh Tale Voyager",
+ emoji: "๐บ๏ธ",
+ color: "#fbbf24",
+ rarity: "mythic",
+ description: "You've seen the treasure. You're just laughing.",
+ },
+ {
+ level: 299,
+ name: "Pirate King",
+ emoji: "๐ดโโ ๏ธ",
+ color: "#ef4444",
+ rarity: "mythic",
+ description: "Wealth, fame, power. You have it all.",
+ },
+ {
+ level: 300,
+ name: "King of the World",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "The empty throne isn't so empty after all.",
+ },
-// --- DUNGEONS & DRAGONS: THE ADVENTURE BEGINS (301-325) ---
-{ level: 301, name: "Tavern Patron", emoji: "๐บ", color: "#92400e", rarity: "common", description: "Waiting for a mysterious hooded stranger to give you a quest." },
-{ level: 302, name: "Quest Board Reader", emoji: "๐", color: "#d97706", rarity: "common", description: "Mostly just missing dog posters and 'giant rat' problems." },
-{ level: 303, name: "Goblin Slayer", emoji: "๐บ", color: "#166534", rarity: "uncommon", description: "They're small, but they're annoying. And there are thousands of them." },
-{ level: 304, name: "Dungeon Delver", emoji: "๐ฆ", color: "#475569", rarity: "uncommon", description: "Tapping the floor with a 10ft pole. Just in case." },
-{ level: 305, name: "Loot Hoarder", emoji: "๐ฐ", color: "#fbbf24", rarity: "rare", description: "You have 14 rusty swords and 300 spoons in your pack. Why?" },
-{ level: 306, name: "Natural 1 Survivor", emoji: "๐ฒ", color: "#ef4444", rarity: "common", description: "You tried to jump the chasm. You hit the wall. Hard." },
-{ level: 307, name: "Critical Success", emoji: "โจ", color: "#facc15", rarity: "rare", description: "The DM is crying because you just killed the boss in one turn." },
-{ level: 308, name: "Bardic Inspiration", emoji: "๐ช", color: "#ec4899", rarity: "uncommon", description: "I'm playing the lute so well you feel slightly better at hitting things." },
-{ level: 309, name: "Paladin's Oath", emoji: "๐ก๏ธ", color: "#ffffff", rarity: "rare", description: "Smite first, ask questions never." },
-{ level: 310, name: "Eldritch Blaster", emoji: "๐ช", color: "#a855f7", rarity: "rare", description: "I cast Eldritch Blast. Again. For the 400th time." },
-{ level: 311, name: "Wild Shape Druid", emoji: "๐ป", color: "#22c55e", rarity: "rare", description: "Turned into a bear to eat the bad guys. Turned into a spider to eavesdrop." },
-{ level: 312, name: "Sneak Attack Rogue", emoji: "๐ก๏ธ", color: "#1e293b", rarity: "rare", description: "I wasn't hiding, I was just... optimizing my position." },
-{ level: 313, name: "Rage-Fueled Barbarian", emoji: "๐ช", color: "#991b1b", rarity: "rare", description: "Too angry to die. Seriously." },
-{ level: 314, name: "Fireball Enthusiast", emoji: "๐ฅ", color: "#f97316", rarity: "rare", description: "I don't care how big the room is. I cast Fireball." },
-{ level: 315, name: "Circle of the Moon", emoji: "๐", color: "#94a3b8", rarity: "epic", description: "The moon is your source. The wild is your home." },
-{ level: 316, name: "Bag of Holding", emoji: "๐", color: "#8b5e3c", rarity: "rare", description: "It's bigger on the inside. Please don't put a portable hole in here." },
-{ level: 317, name: "Mimic Victim", emoji: "๐ฆ", color: "#7f1d1d", rarity: "uncommon", description: "Why is the treasure chest licking me?" },
-{ level: 318, name: "Beholder Stare", emoji: "๐๏ธ", color: "#4c0519", rarity: "legendary", description: "Beauty is in the eye of the... wait, that eye is a disintegration ray!" },
-{ level: 319, name: "Lich's Phylactery", emoji: "๐บ", color: "#c084fc", rarity: "legendary", description: "You're technically dead, but you're too busy studying magic to notice." },
-{ level: 320, name: "Tiamat's Chosen", emoji: "๐ฒ", color: "#dc2626", rarity: "mythic", description: "Five heads are better than one. Especially if they breathe acid." },
-{ level: 321, name: "Ancient Red Dragon", emoji: "๐", color: "#b91c1c", rarity: "mythic", description: "Your breath is a nuke. Your skin is armor. You're the final boss." },
-{ level: 322, name: "Vorpal Blade Wielder", emoji: "โ๏ธ", color: "#e2e8f0", rarity: "legendary", description: "One natural 20 and 'snicker-snack'โtheir head is gone." },
-{ level: 323, name: "Wish Spellcaster", emoji: "๐ง", color: "#38bdf8", rarity: "mythic", description: "Careful what you wish for. The DM is a literalist." },
-{ level: 324, name: "Dungeon Master", emoji: "๐ฐ", color: "#000000", rarity: "mythic", description: "You control the gods, the monsters, and the tavern prices." },
-{ level: 325, name: "The Rule of Cool", emoji: "๐", color: "#ffffff", rarity: "mythic", description: "It doesn't follow the rules, but it was awesome, so it happens." },
+ // --- DUNGEONS & DRAGONS: THE ADVENTURE BEGINS (301-325) ---
+ {
+ level: 301,
+ name: "Tavern Patron",
+ emoji: "๐บ",
+ color: "#92400e",
+ rarity: "common",
+ description:
+ "Waiting for a mysterious hooded stranger to give you a quest.",
+ },
+ {
+ level: 302,
+ name: "Quest Board Reader",
+ emoji: "๐",
+ color: "#d97706",
+ rarity: "common",
+ description: "Mostly just missing dog posters and 'giant rat' problems.",
+ },
+ {
+ level: 303,
+ name: "Goblin Slayer",
+ emoji: "๐บ",
+ color: "#166534",
+ rarity: "uncommon",
+ description:
+ "They're small, but they're annoying. And there are thousands of them.",
+ },
+ {
+ level: 304,
+ name: "Dungeon Delver",
+ emoji: "๐ฆ",
+ color: "#475569",
+ rarity: "uncommon",
+ description: "Tapping the floor with a 10ft pole. Just in case.",
+ },
+ {
+ level: 305,
+ name: "Loot Hoarder",
+ emoji: "๐ฐ",
+ color: "#fbbf24",
+ rarity: "rare",
+ description: "You have 14 rusty swords and 300 spoons in your pack. Why?",
+ },
+ {
+ level: 306,
+ name: "Natural 1 Survivor",
+ emoji: "๐ฒ",
+ color: "#ef4444",
+ rarity: "common",
+ description: "You tried to jump the chasm. You hit the wall. Hard.",
+ },
+ {
+ level: 307,
+ name: "Critical Success",
+ emoji: "โจ",
+ color: "#facc15",
+ rarity: "rare",
+ description:
+ "The DM is crying because you just killed the boss in one turn.",
+ },
+ {
+ level: 308,
+ name: "Bardic Inspiration",
+ emoji: "๐ช",
+ color: "#ec4899",
+ rarity: "uncommon",
+ description:
+ "I'm playing the lute so well you feel slightly better at hitting things.",
+ },
+ {
+ level: 309,
+ name: "Paladin's Oath",
+ emoji: "๐ก๏ธ",
+ color: "#ffffff",
+ rarity: "rare",
+ description: "Smite first, ask questions never.",
+ },
+ {
+ level: 310,
+ name: "Eldritch Blaster",
+ emoji: "๐ช",
+ color: "#a855f7",
+ rarity: "rare",
+ description: "I cast Eldritch Blast. Again. For the 400th time.",
+ },
+ {
+ level: 311,
+ name: "Wild Shape Druid",
+ emoji: "๐ป",
+ color: "#22c55e",
+ rarity: "rare",
+ description:
+ "Turned into a bear to eat the bad guys. Turned into a spider to eavesdrop.",
+ },
+ {
+ level: 312,
+ name: "Sneak Attack Rogue",
+ emoji: "๐ก๏ธ",
+ color: "#1e293b",
+ rarity: "rare",
+ description: "I wasn't hiding, I was just... optimizing my position.",
+ },
+ {
+ level: 313,
+ name: "Rage-Fueled Barbarian",
+ emoji: "๐ช",
+ color: "#991b1b",
+ rarity: "rare",
+ description: "Too angry to die. Seriously.",
+ },
+ {
+ level: 314,
+ name: "Fireball Enthusiast",
+ emoji: "๐ฅ",
+ color: "#f97316",
+ rarity: "rare",
+ description: "I don't care how big the room is. I cast Fireball.",
+ },
+ {
+ level: 315,
+ name: "Circle of the Moon",
+ emoji: "๐",
+ color: "#94a3b8",
+ rarity: "epic",
+ description: "The moon is your source. The wild is your home.",
+ },
+ {
+ level: 316,
+ name: "Bag of Holding",
+ emoji: "๐",
+ color: "#8b5e3c",
+ rarity: "rare",
+ description:
+ "It's bigger on the inside. Please don't put a portable hole in here.",
+ },
+ {
+ level: 317,
+ name: "Mimic Victim",
+ emoji: "๐ฆ",
+ color: "#7f1d1d",
+ rarity: "uncommon",
+ description: "Why is the treasure chest licking me?",
+ },
+ {
+ level: 318,
+ name: "Beholder Stare",
+ emoji: "๐๏ธ",
+ color: "#4c0519",
+ rarity: "legendary",
+ description:
+ "Beauty is in the eye of the... wait, that eye is a disintegration ray!",
+ },
+ {
+ level: 319,
+ name: "Lich's Phylactery",
+ emoji: "๐บ",
+ color: "#c084fc",
+ rarity: "legendary",
+ description:
+ "You're technically dead, but you're too busy studying magic to notice.",
+ },
+ {
+ level: 320,
+ name: "Tiamat's Chosen",
+ emoji: "๐ฒ",
+ color: "#dc2626",
+ rarity: "mythic",
+ description:
+ "Five heads are better than one. Especially if they breathe acid.",
+ },
+ {
+ level: 321,
+ name: "Ancient Red Dragon",
+ emoji: "๐",
+ color: "#b91c1c",
+ rarity: "mythic",
+ description:
+ "Your breath is a nuke. Your skin is armor. You're the final boss.",
+ },
+ {
+ level: 322,
+ name: "Vorpal Blade Wielder",
+ emoji: "โ๏ธ",
+ color: "#e2e8f0",
+ rarity: "legendary",
+ description: "One natural 20 and 'snicker-snack'โtheir head is gone.",
+ },
+ {
+ level: 323,
+ name: "Wish Spellcaster",
+ emoji: "๐ง",
+ color: "#38bdf8",
+ rarity: "mythic",
+ description: "Careful what you wish for. The DM is a literalist.",
+ },
+ {
+ level: 324,
+ name: "Dungeon Master",
+ emoji: "๐ฐ",
+ color: "#000000",
+ rarity: "mythic",
+ description: "You control the gods, the monsters, and the tavern prices.",
+ },
+ {
+ level: 325,
+ name: "The Rule of Cool",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "mythic",
+ description:
+ "It doesn't follow the rules, but it was awesome, so it happens.",
+ },
-// --- THE WITCHER & MONSTER HUNTERS (326-350) ---
-{ level: 326, name: "Trial of the Grasses", emoji: "๐ฟ", color: "#16a34a", rarity: "uncommon", description: "You survived the toxins. Your heart beats 4 times a minute now." },
-{ level: 327, name: "School of the Wolf", emoji: "๐บ", color: "#475569", rarity: "rare", description: "Balanced, classic, and grumpy. The Kaer Morhen way." },
-{ level: 328, name: "School of the Cat", emoji: "๐", color: "#94a3b8", rarity: "rare", description: "Fast, agile, and borderline psychotic." },
-{ level: 329, name: "School of the Griffin", emoji: "๐ฆ
", color: "#fbbf24", rarity: "rare", description: "Why hit them with a sword when you can hit them with magic?" },
-{ level: 330, name: "Silver Sword Master", emoji: "๐ก๏ธ", color: "#cbd5e1", rarity: "epic", description: "Silver for monsters. Make sure you don't mix them up." },
-{ level: 331, name: "Steel Sword Master", emoji: "โ๏ธ", color: "#1e293b", rarity: "epic", description: "Steel for humans. They're often worse than the monsters." },
-{ level: 332, name: "Igni Sign", emoji: "๐ฅ", color: "#ef4444", rarity: "uncommon", description: "Finger-snapping into a flamethrower. Great for campfires too." },
-{ level: 333, name: "Quen Shield", emoji: "๐ก", color: "#facc15", rarity: "uncommon", description: "A golden bubble of 'you can't touch this'." },
-{ level: 334, name: "Aard Blast", emoji: "๐จ", color: "#38bdf8", rarity: "uncommon", description: "Telekinetic shove! Great for breaking doors and spirits." },
-{ level: 335, name: "Axii Charm", emoji: "๐", color: "#a855f7", rarity: "uncommon", description: "These are not the droids you're... wait, wrong universe." },
-{ level: 336, name: "Yrden Trap", emoji: "๐ฏ", color: "#6366f1", rarity: "uncommon", description: "Slow down, Ghost. Let's talk about your feelings (and my sword)." },
-{ level: 337, name: "Thunderbolt Potion", emoji: "๐งช", color: "#22c55e", rarity: "rare", description: "Your veins are black and you can see in the dark. Tastes like battery acid." },
-{ level: 338, name: "Blizzard Reflexes", emoji: "โ๏ธ", color: "#bae6fd", rarity: "rare", description: "Everything is moving in slow motion. Except you." },
-{ level: 339, name: "Gwent Grandmaster", emoji: "๐", color: "#d97706", rarity: "legendary", description: "The world is ending, but sure, let's play a round of cards." },
-{ level: 340, name: "Butcher of Blaviken", emoji: "๐ฉธ", color: "#7f1d1d", rarity: "epic", description: "A nickname you didn't ask for, but definitely earned." },
-{ level: 341, name: "Wild Hunt Rider", emoji: "๐", color: "#0f172a", rarity: "legendary", description: "Ghostly armor, cold breath, and zero chill." },
-{ level: 342, name: "Ciri's Resolve", emoji: "๐", color: "#64748b", rarity: "epic", description: "The Lion Cub of Cintra. Destiny is a beast." },
-{ level: 343, name: "Elder Blood Heir", emoji: "๐งฌ", color: "#ffffff", rarity: "mythic", description: "Space and time are just hallways to you." },
-{ level: 344, name: "Conjunction of Spheres", emoji: "๐ช", color: "#4c0519", rarity: "mythic", description: "When worlds collide, things get messy." },
-{ level: 345, name: "Gaunter O'Dimm's Debtor", emoji: "โณ", color: "#000000", rarity: "mythic", description: "He wants your soul. And a spoon." },
-{ level: 346, name: "Master of Mirrors", emoji: "๐ช", color: "#facc15", rarity: "mythic", description: "Evil Incarnate. He's always watching." },
-{ level: 347, name: "Leshen Stalker", emoji: "๐ฆ", color: "#14532d", rarity: "epic", description: "The forest is alive. And it's angry." },
-{ level: 348, name: "Higher Vampire", emoji: "๐ง", color: "#450a0a", rarity: "legendary", description: "You don't need blood to survive, but you do enjoy a good vintage." },
-{ level: 349, name: "White Wolf Legend", emoji: "๐บ", color: "#ffffff", rarity: "mythic", description: "Geralt of Rivia. The man, the myth, the tub." },
-{ level: 350, name: "The Witcher Path", emoji: "๐ค๏ธ", color: "#8b5e3c", rarity: "mythic", description: "Toss a coin to your level-up." },
+ // --- THE WITCHER & MONSTER HUNTERS (326-350) ---
+ {
+ level: 326,
+ name: "Trial of the Grasses",
+ emoji: "๐ฟ",
+ color: "#16a34a",
+ rarity: "uncommon",
+ description:
+ "You survived the toxins. Your heart beats 4 times a minute now.",
+ },
+ {
+ level: 327,
+ name: "School of the Wolf",
+ emoji: "๐บ",
+ color: "#475569",
+ rarity: "rare",
+ description: "Balanced, classic, and grumpy. The Kaer Morhen way.",
+ },
+ {
+ level: 328,
+ name: "School of the Cat",
+ emoji: "๐",
+ color: "#94a3b8",
+ rarity: "rare",
+ description: "Fast, agile, and borderline psychotic.",
+ },
+ {
+ level: 329,
+ name: "School of the Griffin",
+ emoji: "๐ฆ
",
+ color: "#fbbf24",
+ rarity: "rare",
+ description: "Why hit them with a sword when you can hit them with magic?",
+ },
+ {
+ level: 330,
+ name: "Silver Sword Master",
+ emoji: "๐ก๏ธ",
+ color: "#cbd5e1",
+ rarity: "epic",
+ description: "Silver for monsters. Make sure you don't mix them up.",
+ },
+ {
+ level: 331,
+ name: "Steel Sword Master",
+ emoji: "โ๏ธ",
+ color: "#1e293b",
+ rarity: "epic",
+ description: "Steel for humans. They're often worse than the monsters.",
+ },
+ {
+ level: 332,
+ name: "Igni Sign",
+ emoji: "๐ฅ",
+ color: "#ef4444",
+ rarity: "uncommon",
+ description:
+ "Finger-snapping into a flamethrower. Great for campfires too.",
+ },
+ {
+ level: 333,
+ name: "Quen Shield",
+ emoji: "๐ก",
+ color: "#facc15",
+ rarity: "uncommon",
+ description: "A golden bubble of 'you can't touch this'.",
+ },
+ {
+ level: 334,
+ name: "Aard Blast",
+ emoji: "๐จ",
+ color: "#38bdf8",
+ rarity: "uncommon",
+ description: "Telekinetic shove! Great for breaking doors and spirits.",
+ },
+ {
+ level: 335,
+ name: "Axii Charm",
+ emoji: "๐",
+ color: "#a855f7",
+ rarity: "uncommon",
+ description: "These are not the droids you're... wait, wrong universe.",
+ },
+ {
+ level: 336,
+ name: "Yrden Trap",
+ emoji: "๐ฏ",
+ color: "#6366f1",
+ rarity: "uncommon",
+ description:
+ "Slow down, Ghost. Let's talk about your feelings (and my sword).",
+ },
+ {
+ level: 337,
+ name: "Thunderbolt Potion",
+ emoji: "๐งช",
+ color: "#22c55e",
+ rarity: "rare",
+ description:
+ "Your veins are black and you can see in the dark. Tastes like battery acid.",
+ },
+ {
+ level: 338,
+ name: "Blizzard Reflexes",
+ emoji: "โ๏ธ",
+ color: "#bae6fd",
+ rarity: "rare",
+ description: "Everything is moving in slow motion. Except you.",
+ },
+ {
+ level: 339,
+ name: "Gwent Grandmaster",
+ emoji: "๐",
+ color: "#d97706",
+ rarity: "legendary",
+ description: "The world is ending, but sure, let's play a round of cards.",
+ },
+ {
+ level: 340,
+ name: "Butcher of Blaviken",
+ emoji: "๐ฉธ",
+ color: "#7f1d1d",
+ rarity: "epic",
+ description: "A nickname you didn't ask for, but definitely earned.",
+ },
+ {
+ level: 341,
+ name: "Wild Hunt Rider",
+ emoji: "๐",
+ color: "#0f172a",
+ rarity: "legendary",
+ description: "Ghostly armor, cold breath, and zero chill.",
+ },
+ {
+ level: 342,
+ name: "Ciri's Resolve",
+ emoji: "๐",
+ color: "#64748b",
+ rarity: "epic",
+ description: "The Lion Cub of Cintra. Destiny is a beast.",
+ },
+ {
+ level: 343,
+ name: "Elder Blood Heir",
+ emoji: "๐งฌ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "Space and time are just hallways to you.",
+ },
+ {
+ level: 344,
+ name: "Conjunction of Spheres",
+ emoji: "๐ช",
+ color: "#4c0519",
+ rarity: "mythic",
+ description: "When worlds collide, things get messy.",
+ },
+ {
+ level: 345,
+ name: "Gaunter O'Dimm's Debtor",
+ emoji: "โณ",
+ color: "#000000",
+ rarity: "mythic",
+ description: "He wants your soul. And a spoon.",
+ },
+ {
+ level: 346,
+ name: "Master of Mirrors",
+ emoji: "๐ช",
+ color: "#facc15",
+ rarity: "mythic",
+ description: "Evil Incarnate. He's always watching.",
+ },
+ {
+ level: 347,
+ name: "Leshen Stalker",
+ emoji: "๐ฆ",
+ color: "#14532d",
+ rarity: "epic",
+ description: "The forest is alive. And it's angry.",
+ },
+ {
+ level: 348,
+ name: "Higher Vampire",
+ emoji: "๐ง",
+ color: "#450a0a",
+ rarity: "legendary",
+ description:
+ "You don't need blood to survive, but you do enjoy a good vintage.",
+ },
+ {
+ level: 349,
+ name: "White Wolf Legend",
+ emoji: "๐บ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "Geralt of Rivia. The man, the myth, the tub.",
+ },
+ {
+ level: 350,
+ name: "The Witcher Path",
+ emoji: "๐ค๏ธ",
+ color: "#8b5e3c",
+ rarity: "mythic",
+ description: "Toss a coin to your level-up.",
+ },
-// --- THE ELDER SCROLLS: TAMRIEL LEGENDS (351-400) ---
-{ level: 351, name: "Sweetroll Thief", emoji: "๐ฅ", color: "#d97706", rarity: "common", description: "Let me guess... someone stole your sweetroll?" },
-{ level: 352, name: "Arrow to the Knee", emoji: "๐น", color: "#94a3b8", rarity: "common", description: "I used to be an adventurer like you, then I got a desk job." },
-{ level: 353, name: "Mages Guild Associate", emoji: "๐ฎ", color: "#6366f1", rarity: "uncommon", description: "Learning to cast 'Light' without setting your robes on fire." },
-{ level: 354, name: "Fighters Guild Hero", emoji: "โ๏ธ", color: "#b45309", rarity: "uncommon", description: "Hit thing. Thing die. Get paid. Good life." },
-{ level: 355, name: "Thieves Guild Shadow", emoji: "๐ค", color: "#1e293b", rarity: "rare", description: "You can steal the pants off a guard while he's wearing them." },
-{ level: 356, name: "Dark Brotherhood Assassin", emoji: "๐๏ธ", color: "#991b1b", rarity: "rare", description: "We know. *Handprint stares intensely.*" },
-{ level: 357, name: "Nightmother's Listener", emoji: "๐", color: "#000000", rarity: "epic", description: "She whispers. You stab. It's a healthy relationship." },
-{ level: 358, name: "Gray Fox", emoji: "๐ฆ", color: "#475569", rarity: "legendary", description: "A thief so good he stole his own identity from history." },
-{ level: 359, name: "Gray Cowl Bearer", emoji: "๐ญ", color: "#64748b", rarity: "legendary", description: "Now you see me, now you literally don't exist in the records." },
-{ level: 360, name: "Champion of Cyrodiil", emoji: "๐ก๏ธ", color: "#fbbf24", rarity: "epic", description: "Closing Oblivion gates like you're closing tabs." },
-{ level: 361, name: "Hero of Kvatch", emoji: "๐ฅ", color: "#dc2626", rarity: "rare", description: "The only person in town who isn't a daedric snack." },
-{ level: 362, name: "Shivering Isles Ruler", emoji: "๐ง", color: "#a855f7", rarity: "mythic", description: "Everything is cheese! Or butterflies. Or both." },
-{ level: 363, name: "Sheogorath's Sanity", emoji: "๐คช", color: "#f472b6", rarity: "mythic", description: "You have none. And that's why you're winning." },
-{ level: 364, name: "Dragonborn Initiate", emoji: "๐", color: "#ffffff", rarity: "rare", description: "You just shouted a goat off a cliff. Life is good." },
-{ level: 365, name: "Unrelenting Force", emoji: "๐ฃ๏ธ", color: "#38bdf8", rarity: "epic", description: "The voice of a dragon in the throat of a mortal." },
-{ level: 366, name: "Fus Ro Dah", emoji: "๐ฅ", color: "#ffffff", rarity: "epic", description: "I'm not shouting at you, I'm just clearing the room." },
-{ level: 367, name: "Whiterun Thane", emoji: "๐ฐ", color: "#15803d", rarity: "rare", description: "You have a house, a title, and Lydia to carry your burdens." },
-{ level: 368, name: "Stormcloak Rebel", emoji: "๐ป", color: "#1d4ed8", rarity: "rare", description: "Skyrim belongs to the Nords! And whoever has the most mods." },
-{ level: 369, name: "Imperial Legionnaire", emoji: "๐๏ธ", color: "#ef4444", rarity: "rare", description: "Order, law, and very shiny red armor." },
-{ level: 370, name: "Arch-Mage of Winterhold", emoji: "๐ง", color: "#c084fc", rarity: "legendary", description: "You're the boss of the college, even though you only know one spell." },
-{ level: 371, name: "Black Star Owner", emoji: "โญ", color: "#000000", rarity: "epic", description: "Infinite soul gems? Yes, please." },
-{ level: 372, name: "Mehrunes' Razor", emoji: "๐ก๏ธ", color: "#991b1b", rarity: "epic", description: "Small chance of instant death. Large chance of looking cool." },
-{ level: 373, name: "Mace of Molag Bal", emoji: "๐จ", color: "#4c0519", rarity: "epic", description: "Soul trapping your enemies into eternal despair. Fun!" },
-{ level: 374, name: "Skeleton Key Master", emoji: "๐", color: "#22d3ee", rarity: "legendary", description: "Why pick a lock when you can unlock the universe?" },
-{ level: 375, name: "Nightingale Sentinel", emoji: "๐", color: "#1e293b", rarity: "legendary", description: "Sworn to Nocturnal. The shadows are your friends." },
-{ level: 376, name: "Alduin's Bane", emoji: "๐ฒ", color: "#000000", rarity: "mythic", description: "You ate the soul of the World Eater. Burp." },
-{ level: 377, name: "Sovngarde Warrior", emoji: "๐บ", color: "#fbbf24", rarity: "legendary", description: "Drinking mead with legends for eternity." },
-{ level: 378, name: "Nerevarine Prophecy", emoji: "๐", color: "#d97706", rarity: "mythic", description: "Are you the reincarnation? Maybe. Does it matter? No." },
-{ level: 379, name: "Moon-and-Star", emoji: "๐", color: "#facc15", rarity: "legendary", description: "The ring that only the true Nerevar can wear." },
-{ level: 380, name: "Tribunal Member", emoji: "๐๏ธ", color: "#6366f1", rarity: "mythic", description: "Living god of Morrowind. Don't mind the giant floating rock." },
-{ level: 381, name: "Vivec's Poet", emoji: "๐", color: "#fbbf24", rarity: "legendary", description: "Writing 36 lessons of nonsense that actually explain the universe." },
-{ level: 382, name: "Dagoth Ur's Dreamer", emoji: "๐บ", color: "#991b1b", rarity: "epic", description: "What a grand and intoxicating innocence!" },
-{ level: 383, name: "Heart of Lorkhan", emoji: "โค๏ธ", color: "#7f1d1d", rarity: "mythic", description: "The beating heart of the world. Please don't poke it." },
-{ level: 384, name: "Sixth House Apostle", emoji: "๐", color: "#450a0a", rarity: "rare", description: "Ring the bells. The Ash Lord comes." },
-{ level: 385, name: "The Elder Scroll", emoji: "๐", color: "#ffffff", rarity: "mythic", description: "Read it once, you're a genius. Read it twice, you're blind." },
-{ level: 386, name: "Anu & Padomay", emoji: "โฏ๏ธ", color: "#64748b", rarity: "mythic", description: "The primordial forces of Is and Is Not." },
-{ level: 387, name: "Akatosh's Breath", emoji: "โณ", color: "#facc15", rarity: "legendary", description: "Time is just a suggestion from the Dragon God." },
-{ level: 388, name: "Aedric Spirit", emoji: "โจ", color: "#ffffff", rarity: "mythic", description: "Part of the original construction crew of reality." },
-{ level: 389, name: "Daedric Prince", emoji: "๐", color: "#000000", rarity: "mythic", description: "You have your own plane of existence and a lot of worshippers." },
-{ level: 390, name: "Azura's Wisdom", emoji: "๐", color: "#3b82f6", rarity: "legendary", description: "Twilight and dawn. She saw this coming." },
-{ level: 391, name: "Hermaeus Mora's Knowledge", emoji: "๐", color: "#166534", rarity: "mythic", description: "Thousands of books, infinite tentacles, zero social skills." },
-{ level: 392, name: "Nocturnal's Luck", emoji: "๐ฆ", color: "#1e1b4b", rarity: "legendary", description: "The mistress of shadows favors your coin purse." },
-{ level: 393, name: "Sanguine's Revelry", emoji: "๐ท", color: "#ec4899", rarity: "epic", description: "The hangover will be legendary. The party was better." },
-{ level: 394, name: "Boethiah's Betrayal", emoji: "๐ก๏ธ", color: "#7f1d1d", rarity: "epic", description: "Stabbing your friends in the back for power. Classic." },
-{ level: 395, name: "Peryite's Plague", emoji: "๐คข", color: "#84cc16", rarity: "rare", description: "Cleaning the universe, one sneeze at a time." },
-{ level: 396, name: "Namira's Hunger", emoji: "๐ฆด", color: "#451a03", rarity: "rare", description: "You like the things that crawl. And the way they taste." },
-{ level: 397, name: "Hircine's Hunt", emoji: "๐บ", color: "#b45309", rarity: "legendary", description: "The Bloodmoon is rising. Happy hunting." },
-{ level: 398, name: "CHIM Awakener", emoji: "๐", color: "#a855f7", rarity: "mythic", description: "Realizing you're in a video game and deciding to stay anyway." },
-{ level: 399, name: "The Amaranth", emoji: "๐ค", color: "#ffffff", rarity: "mythic", description: "Dreaming a new universe into existence. Don't wake up." },
-{ level: 400, name: "Reality Modder", emoji: "๐ ๏ธ", color: "#22c55e", rarity: "mythic", description: "Console commands are your superpower. ~ tgm" },
+ // --- THE ELDER SCROLLS: TAMRIEL LEGENDS (351-400) ---
+ {
+ level: 351,
+ name: "Sweetroll Thief",
+ emoji: "๐ฅ",
+ color: "#d97706",
+ rarity: "common",
+ description: "Let me guess... someone stole your sweetroll?",
+ },
+ {
+ level: 352,
+ name: "Arrow to the Knee",
+ emoji: "๐น",
+ color: "#94a3b8",
+ rarity: "common",
+ description: "I used to be an adventurer like you, then I got a desk job.",
+ },
+ {
+ level: 353,
+ name: "Mages Guild Associate",
+ emoji: "๐ฎ",
+ color: "#6366f1",
+ rarity: "uncommon",
+ description: "Learning to cast 'Light' without setting your robes on fire.",
+ },
+ {
+ level: 354,
+ name: "Fighters Guild Hero",
+ emoji: "โ๏ธ",
+ color: "#b45309",
+ rarity: "uncommon",
+ description: "Hit thing. Thing die. Get paid. Good life.",
+ },
+ {
+ level: 355,
+ name: "Thieves Guild Shadow",
+ emoji: "๐ค",
+ color: "#1e293b",
+ rarity: "rare",
+ description: "You can steal the pants off a guard while he's wearing them.",
+ },
+ {
+ level: 356,
+ name: "Dark Brotherhood Assassin",
+ emoji: "๐๏ธ",
+ color: "#991b1b",
+ rarity: "rare",
+ description: "We know. *Handprint stares intensely.*",
+ },
+ {
+ level: 357,
+ name: "Nightmother's Listener",
+ emoji: "๐",
+ color: "#000000",
+ rarity: "epic",
+ description: "She whispers. You stab. It's a healthy relationship.",
+ },
+ {
+ level: 358,
+ name: "Gray Fox",
+ emoji: "๐ฆ",
+ color: "#475569",
+ rarity: "legendary",
+ description: "A thief so good he stole his own identity from history.",
+ },
+ {
+ level: 359,
+ name: "Gray Cowl Bearer",
+ emoji: "๐ญ",
+ color: "#64748b",
+ rarity: "legendary",
+ description:
+ "Now you see me, now you literally don't exist in the records.",
+ },
+ {
+ level: 360,
+ name: "Champion of Cyrodiil",
+ emoji: "๐ก๏ธ",
+ color: "#fbbf24",
+ rarity: "epic",
+ description: "Closing Oblivion gates like you're closing tabs.",
+ },
+ {
+ level: 361,
+ name: "Hero of Kvatch",
+ emoji: "๐ฅ",
+ color: "#dc2626",
+ rarity: "rare",
+ description: "The only person in town who isn't a daedric snack.",
+ },
+ {
+ level: 362,
+ name: "Shivering Isles Ruler",
+ emoji: "๐ง",
+ color: "#a855f7",
+ rarity: "mythic",
+ description: "Everything is cheese! Or butterflies. Or both.",
+ },
+ {
+ level: 363,
+ name: "Sheogorath's Sanity",
+ emoji: "๐คช",
+ color: "#f472b6",
+ rarity: "mythic",
+ description: "You have none. And that's why you're winning.",
+ },
+ {
+ level: 364,
+ name: "Dragonborn Initiate",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "rare",
+ description: "You just shouted a goat off a cliff. Life is good.",
+ },
+ {
+ level: 365,
+ name: "Unrelenting Force",
+ emoji: "๐ฃ๏ธ",
+ color: "#38bdf8",
+ rarity: "epic",
+ description: "The voice of a dragon in the throat of a mortal.",
+ },
+ {
+ level: 366,
+ name: "Fus Ro Dah",
+ emoji: "๐ฅ",
+ color: "#ffffff",
+ rarity: "epic",
+ description: "I'm not shouting at you, I'm just clearing the room.",
+ },
+ {
+ level: 367,
+ name: "Whiterun Thane",
+ emoji: "๐ฐ",
+ color: "#15803d",
+ rarity: "rare",
+ description: "You have a house, a title, and Lydia to carry your burdens.",
+ },
+ {
+ level: 368,
+ name: "Stormcloak Rebel",
+ emoji: "๐ป",
+ color: "#1d4ed8",
+ rarity: "rare",
+ description: "Skyrim belongs to the Nords! And whoever has the most mods.",
+ },
+ {
+ level: 369,
+ name: "Imperial Legionnaire",
+ emoji: "๐๏ธ",
+ color: "#ef4444",
+ rarity: "rare",
+ description: "Order, law, and very shiny red armor.",
+ },
+ {
+ level: 370,
+ name: "Arch-Mage of Winterhold",
+ emoji: "๐ง",
+ color: "#c084fc",
+ rarity: "legendary",
+ description:
+ "You're the boss of the college, even though you only know one spell.",
+ },
+ {
+ level: 371,
+ name: "Black Star Owner",
+ emoji: "โญ",
+ color: "#000000",
+ rarity: "epic",
+ description: "Infinite soul gems? Yes, please.",
+ },
+ {
+ level: 372,
+ name: "Mehrunes' Razor",
+ emoji: "๐ก๏ธ",
+ color: "#991b1b",
+ rarity: "epic",
+ description: "Small chance of instant death. Large chance of looking cool.",
+ },
+ {
+ level: 373,
+ name: "Mace of Molag Bal",
+ emoji: "๐จ",
+ color: "#4c0519",
+ rarity: "epic",
+ description: "Soul trapping your enemies into eternal despair. Fun!",
+ },
+ {
+ level: 374,
+ name: "Skeleton Key Master",
+ emoji: "๐",
+ color: "#22d3ee",
+ rarity: "legendary",
+ description: "Why pick a lock when you can unlock the universe?",
+ },
+ {
+ level: 375,
+ name: "Nightingale Sentinel",
+ emoji: "๐",
+ color: "#1e293b",
+ rarity: "legendary",
+ description: "Sworn to Nocturnal. The shadows are your friends.",
+ },
+ {
+ level: 376,
+ name: "Alduin's Bane",
+ emoji: "๐ฒ",
+ color: "#000000",
+ rarity: "mythic",
+ description: "You ate the soul of the World Eater. Burp.",
+ },
+ {
+ level: 377,
+ name: "Sovngarde Warrior",
+ emoji: "๐บ",
+ color: "#fbbf24",
+ rarity: "legendary",
+ description: "Drinking mead with legends for eternity.",
+ },
+ {
+ level: 378,
+ name: "Nerevarine Prophecy",
+ emoji: "๐",
+ color: "#d97706",
+ rarity: "mythic",
+ description: "Are you the reincarnation? Maybe. Does it matter? No.",
+ },
+ {
+ level: 379,
+ name: "Moon-and-Star",
+ emoji: "๐",
+ color: "#facc15",
+ rarity: "legendary",
+ description: "The ring that only the true Nerevar can wear.",
+ },
+ {
+ level: 380,
+ name: "Tribunal Member",
+ emoji: "๐๏ธ",
+ color: "#6366f1",
+ rarity: "mythic",
+ description: "Living god of Morrowind. Don't mind the giant floating rock.",
+ },
+ {
+ level: 381,
+ name: "Vivec's Poet",
+ emoji: "๐",
+ color: "#fbbf24",
+ rarity: "legendary",
+ description:
+ "Writing 36 lessons of nonsense that actually explain the universe.",
+ },
+ {
+ level: 382,
+ name: "Dagoth Ur's Dreamer",
+ emoji: "๐บ",
+ color: "#991b1b",
+ rarity: "epic",
+ description: "What a grand and intoxicating innocence!",
+ },
+ {
+ level: 383,
+ name: "Heart of Lorkhan",
+ emoji: "โค๏ธ",
+ color: "#7f1d1d",
+ rarity: "mythic",
+ description: "The beating heart of the world. Please don't poke it.",
+ },
+ {
+ level: 384,
+ name: "Sixth House Apostle",
+ emoji: "๐",
+ color: "#450a0a",
+ rarity: "rare",
+ description: "Ring the bells. The Ash Lord comes.",
+ },
+ {
+ level: 385,
+ name: "The Elder Scroll",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "Read it once, you're a genius. Read it twice, you're blind.",
+ },
+ {
+ level: 386,
+ name: "Anu & Padomay",
+ emoji: "โฏ๏ธ",
+ color: "#64748b",
+ rarity: "mythic",
+ description: "The primordial forces of Is and Is Not.",
+ },
+ {
+ level: 387,
+ name: "Akatosh's Breath",
+ emoji: "โณ",
+ color: "#facc15",
+ rarity: "legendary",
+ description: "Time is just a suggestion from the Dragon God.",
+ },
+ {
+ level: 388,
+ name: "Aedric Spirit",
+ emoji: "โจ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "Part of the original construction crew of reality.",
+ },
+ {
+ level: 389,
+ name: "Daedric Prince",
+ emoji: "๐",
+ color: "#000000",
+ rarity: "mythic",
+ description:
+ "You have your own plane of existence and a lot of worshippers.",
+ },
+ {
+ level: 390,
+ name: "Azura's Wisdom",
+ emoji: "๐",
+ color: "#3b82f6",
+ rarity: "legendary",
+ description: "Twilight and dawn. She saw this coming.",
+ },
+ {
+ level: 391,
+ name: "Hermaeus Mora's Knowledge",
+ emoji: "๐",
+ color: "#166534",
+ rarity: "mythic",
+ description: "Thousands of books, infinite tentacles, zero social skills.",
+ },
+ {
+ level: 392,
+ name: "Nocturnal's Luck",
+ emoji: "๐ฆ",
+ color: "#1e1b4b",
+ rarity: "legendary",
+ description: "The mistress of shadows favors your coin purse.",
+ },
+ {
+ level: 393,
+ name: "Sanguine's Revelry",
+ emoji: "๐ท",
+ color: "#ec4899",
+ rarity: "epic",
+ description: "The hangover will be legendary. The party was better.",
+ },
+ {
+ level: 394,
+ name: "Boethiah's Betrayal",
+ emoji: "๐ก๏ธ",
+ color: "#7f1d1d",
+ rarity: "epic",
+ description: "Stabbing your friends in the back for power. Classic.",
+ },
+ {
+ level: 395,
+ name: "Peryite's Plague",
+ emoji: "๐คข",
+ color: "#84cc16",
+ rarity: "rare",
+ description: "Cleaning the universe, one sneeze at a time.",
+ },
+ {
+ level: 396,
+ name: "Namira's Hunger",
+ emoji: "๐ฆด",
+ color: "#451a03",
+ rarity: "rare",
+ description: "You like the things that crawl. And the way they taste.",
+ },
+ {
+ level: 397,
+ name: "Hircine's Hunt",
+ emoji: "๐บ",
+ color: "#b45309",
+ rarity: "legendary",
+ description: "The Bloodmoon is rising. Happy hunting.",
+ },
+ {
+ level: 398,
+ name: "CHIM Awakener",
+ emoji: "๐",
+ color: "#a855f7",
+ rarity: "mythic",
+ description:
+ "Realizing you're in a video game and deciding to stay anyway.",
+ },
+ {
+ level: 399,
+ name: "The Amaranth",
+ emoji: "๐ค",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "Dreaming a new universe into existence. Don't wake up.",
+ },
+ {
+ level: 400,
+ name: "Reality Modder",
+ emoji: "๐ ๏ธ",
+ color: "#22c55e",
+ rarity: "mythic",
+ description: "Console commands are your superpower. ~ tgm",
+ },
-// --- MARVEL & DC: THE COSMIC HEROES (401-425) ---
-{ level: 401, name: "Street Vigilante", emoji: "๐", color: "#475569", rarity: "common", description: "Justice is best served with a side of parkour and a gravelly voice." },
-{ level: 402, name: "Gamma Radiated", emoji: "๐คข", color: "#16a34a", rarity: "uncommon", description: "You're getting angry. We wouldn't like you when you're angry." },
-{ level: 403, name: "Super Soldier", emoji: "๐ก๏ธ", color: "#1d4ed8", rarity: "rare", description: "You can do this all day. Mostly because of the experimental steroids." },
-{ level: 404, name: "Genius Billionaire", emoji: "๐ฆพ", color: "#ef4444", rarity: "rare", description: "Playboy, philanthropist, and owner of a very expensive flying toaster." },
-{ level: 405, name: "God of Thunder", emoji: "โก", color: "#38bdf8", rarity: "epic", description: "Your hammer is heavy, your hair is fabulous, and your brother is a jerk." },
-{ level: 406, name: "Sorcerer Supreme", emoji: "๐๏ธ", color: "#7c3aed", rarity: "epic", description: "Dormammu, I've come to bargain... for a better level-up reward." },
-{ level: 407, name: "Web Slinger", emoji: "๐ธ๏ธ", color: "#dc2626", rarity: "rare", description: "Great power, great responsibility, and a lot of laundry for those spandex suits." },
-{ level: 408, name: "Wakandan Warrior", emoji: "๐พ", color: "#1e293b", rarity: "rare", description: "Vibranium makes everything better. Especially cat ears." },
-{ level: 409, name: "Man of Steel", emoji: "๐ฆธ", color: "#2563eb", rarity: "legendary", description: "Faster than a speeding bullet, yet still defeated by a green rock." },
-{ level: 410, name: "Dark Knight", emoji: "๐ฆ", color: "#000000", rarity: "legendary", description: "I'm not saying I'm the protagonist, but I have a lot of gadgets and trauma." },
-{ level: 411, name: "Amazonian Princess", emoji: "๐", color: "#b91c1c", rarity: "epic", description: "Lassoing the truth out of people since the Bronze Age." },
-{ level: 412, name: "Emerald Knight", emoji: "๐", color: "#10b981", rarity: "rare", description: "In brightest day, in blackest night, no typo shall escape my sight." },
-{ level: 413, name: "Speed Force Runner", emoji: "โก", color: "#facc15", rarity: "epic", description: "You're so fast you accidentally reset the timeline. Again." },
-{ level: 414, name: "Atlantian King", emoji: "๐ฑ", color: "#06b6d4", rarity: "rare", description: "Talking to fish is actually a very useful skill at seafood buffets." },
-{ level: 415, name: "Martian Manhunter", emoji: "๐ฝ", color: "#15803d", rarity: "epic", description: "Telepathy, shapeshifting, and a debilitating addiction to Chocos." },
-{ level: 416, name: "Anti-Hero", emoji: "๐", color: "#4b5563", rarity: "uncommon", description: "You save the world, but you complain the entire time." },
-{ level: 417, name: "Infinity Stone Keeper", emoji: "๐", color: "#ec4899", rarity: "legendary", description: "Holding 1/6th of the universe. Try not to drop it." },
-{ level: 418, name: "Infinity Gauntlet Wielder", emoji: "๐งค", color: "#fbbf24", rarity: "mythic", description: "With a single snap, you could delete half of your unread emails." },
-{ level: 419, name: "Herald of Galactus", emoji: "๐", color: "#cbd5e1", rarity: "legendary", description: "Surfing the cosmos to find a planet for your boss to eat." },
-{ level: 420, name: "World Eater", emoji: "๐", color: "#4c0519", rarity: "mythic", description: "This galaxy tastes like purple. I prefer blue." },
-{ level: 421, name: "Phoenix Force", emoji: "๐ฅ", color: "#f97316", rarity: "mythic", description: "Burn, die, rebirth, repeat. It's an exhausting hobby." },
-{ level: 422, name: "Watchmen's Insight", emoji: "โฑ๏ธ", color: "#facc15", rarity: "epic", description: "Who watches the watchers? Probably the people at level 500." },
-{ level: 423, name: "Doctor Manhattan", emoji: "โ๏ธ", color: "#3b82f6", rarity: "mythic", description: "You are tired of this world, these people. Also, you're blue now." },
-{ level: 424, name: "The Living Tribunal", emoji: "๐ญ", color: "#fbbf24", rarity: "mythic", description: "Judging the multiverse with your three-faced golden head." },
-{ level: 425, name: "One-Above-All", emoji: "โจ", color: "#ffffff", rarity: "mythic", description: "The ultimate writer. The cosmic architect. The top of the food chain." },
+ // --- MARVEL & DC: THE COSMIC HEROES (401-425) ---
+ {
+ level: 401,
+ name: "Street Vigilante",
+ emoji: "๐",
+ color: "#475569",
+ rarity: "common",
+ description:
+ "Justice is best served with a side of parkour and a gravelly voice.",
+ },
+ {
+ level: 402,
+ name: "Gamma Radiated",
+ emoji: "๐คข",
+ color: "#16a34a",
+ rarity: "uncommon",
+ description:
+ "You're getting angry. We wouldn't like you when you're angry.",
+ },
+ {
+ level: 403,
+ name: "Super Soldier",
+ emoji: "๐ก๏ธ",
+ color: "#1d4ed8",
+ rarity: "rare",
+ description:
+ "You can do this all day. Mostly because of the experimental steroids.",
+ },
+ {
+ level: 404,
+ name: "Genius Billionaire",
+ emoji: "๐ฆพ",
+ color: "#ef4444",
+ rarity: "rare",
+ description:
+ "Playboy, philanthropist, and owner of a very expensive flying toaster.",
+ },
+ {
+ level: 405,
+ name: "God of Thunder",
+ emoji: "โก",
+ color: "#38bdf8",
+ rarity: "epic",
+ description:
+ "Your hammer is heavy, your hair is fabulous, and your brother is a jerk.",
+ },
+ {
+ level: 406,
+ name: "Sorcerer Supreme",
+ emoji: "๐๏ธ",
+ color: "#7c3aed",
+ rarity: "epic",
+ description:
+ "Dormammu, I've come to bargain... for a better level-up reward.",
+ },
+ {
+ level: 407,
+ name: "Web Slinger",
+ emoji: "๐ธ๏ธ",
+ color: "#dc2626",
+ rarity: "rare",
+ description:
+ "Great power, great responsibility, and a lot of laundry for those spandex suits.",
+ },
+ {
+ level: 408,
+ name: "Wakandan Warrior",
+ emoji: "๐พ",
+ color: "#1e293b",
+ rarity: "rare",
+ description: "Vibranium makes everything better. Especially cat ears.",
+ },
+ {
+ level: 409,
+ name: "Man of Steel",
+ emoji: "๐ฆธ",
+ color: "#2563eb",
+ rarity: "legendary",
+ description:
+ "Faster than a speeding bullet, yet still defeated by a green rock.",
+ },
+ {
+ level: 410,
+ name: "Dark Knight",
+ emoji: "๐ฆ",
+ color: "#000000",
+ rarity: "legendary",
+ description:
+ "I'm not saying I'm the protagonist, but I have a lot of gadgets and trauma.",
+ },
+ {
+ level: 411,
+ name: "Amazonian Princess",
+ emoji: "๐",
+ color: "#b91c1c",
+ rarity: "epic",
+ description: "Lassoing the truth out of people since the Bronze Age.",
+ },
+ {
+ level: 412,
+ name: "Emerald Knight",
+ emoji: "๐",
+ color: "#10b981",
+ rarity: "rare",
+ description:
+ "In brightest day, in blackest night, no typo shall escape my sight.",
+ },
+ {
+ level: 413,
+ name: "Speed Force Runner",
+ emoji: "โก",
+ color: "#facc15",
+ rarity: "epic",
+ description: "You're so fast you accidentally reset the timeline. Again.",
+ },
+ {
+ level: 414,
+ name: "Atlantian King",
+ emoji: "๐ฑ",
+ color: "#06b6d4",
+ rarity: "rare",
+ description:
+ "Talking to fish is actually a very useful skill at seafood buffets.",
+ },
+ {
+ level: 415,
+ name: "Martian Manhunter",
+ emoji: "๐ฝ",
+ color: "#15803d",
+ rarity: "epic",
+ description:
+ "Telepathy, shapeshifting, and a debilitating addiction to Chocos.",
+ },
+ {
+ level: 416,
+ name: "Anti-Hero",
+ emoji: "๐",
+ color: "#4b5563",
+ rarity: "uncommon",
+ description: "You save the world, but you complain the entire time.",
+ },
+ {
+ level: 417,
+ name: "Infinity Stone Keeper",
+ emoji: "๐",
+ color: "#ec4899",
+ rarity: "legendary",
+ description: "Holding 1/6th of the universe. Try not to drop it.",
+ },
+ {
+ level: 418,
+ name: "Infinity Gauntlet Wielder",
+ emoji: "๐งค",
+ color: "#fbbf24",
+ rarity: "mythic",
+ description:
+ "With a single snap, you could delete half of your unread emails.",
+ },
+ {
+ level: 419,
+ name: "Herald of Galactus",
+ emoji: "๐",
+ color: "#cbd5e1",
+ rarity: "legendary",
+ description: "Surfing the cosmos to find a planet for your boss to eat.",
+ },
+ {
+ level: 420,
+ name: "World Eater",
+ emoji: "๐",
+ color: "#4c0519",
+ rarity: "mythic",
+ description: "This galaxy tastes like purple. I prefer blue.",
+ },
+ {
+ level: 421,
+ name: "Phoenix Force",
+ emoji: "๐ฅ",
+ color: "#f97316",
+ rarity: "mythic",
+ description: "Burn, die, rebirth, repeat. It's an exhausting hobby.",
+ },
+ {
+ level: 422,
+ name: "Watchmen's Insight",
+ emoji: "โฑ๏ธ",
+ color: "#facc15",
+ rarity: "epic",
+ description: "Who watches the watchers? Probably the people at level 500.",
+ },
+ {
+ level: 423,
+ name: "Doctor Manhattan",
+ emoji: "โ๏ธ",
+ color: "#3b82f6",
+ rarity: "mythic",
+ description:
+ "You are tired of this world, these people. Also, you're blue now.",
+ },
+ {
+ level: 424,
+ name: "The Living Tribunal",
+ emoji: "๐ญ",
+ color: "#fbbf24",
+ rarity: "mythic",
+ description: "Judging the multiverse with your three-faced golden head.",
+ },
+ {
+ level: 425,
+ name: "One-Above-All",
+ emoji: "โจ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description:
+ "The ultimate writer. The cosmic architect. The top of the food chain.",
+ },
-// --- SCI-FI CLASSICS: SPACE & TIME (426-450) ---
-{ level: 426, name: "Starfleet Cadet", emoji: "๐", color: "#fde047", rarity: "common", description: "Hope you didn't get assigned a red shirt today." },
-{ level: 427, name: "Vulcan Logician", emoji: "๐ง ", color: "#3b82f6", rarity: "uncommon", description: "Emotions are highly illogical. So is this level-up system." },
-{ level: 428, name: "Borg Collective", emoji: "๐ค", color: "#166534", rarity: "rare", description: "Your biological and technological distinctiveness has been added to our own." },
-{ level: 429, name: "Spice Smuggler", emoji: "๐๏ธ", color: "#b45309", rarity: "uncommon", description: "The spice must flow, and so must the delivery schedule." },
-{ level: 430, name: "Kwisatz Haderach", emoji: "๐๏ธ", color: "#312e81", rarity: "epic", description: "You can see the past, the present, and why you can't find your keys." },
-{ level: 431, name: "Shai-Hulud Rider", emoji: "๐ชฑ", color: "#d97706", rarity: "rare", description: "Riding a giant worm is the most extreme form of public transit." },
-{ level: 432, name: "HAL 9000 Logic", emoji: "๐ด", color: "#ef4444", rarity: "rare", description: "I'm sorry, Dave. I'm afraid I can't let you log out." },
-{ level: 433, name: "Stargate Traveler", emoji: "๐", color: "#38bdf8", rarity: "rare", description: "Itโs a circular portal. Try not to step in while itโs flushing." },
-{ level: 434, name: "Xenomorph Stalker", emoji: "๐ฝ", color: "#0f172a", rarity: "epic", description: "In space, no one can hear you scream. They just see the level-up notification." },
-{ level: 435, name: "Predator Hunter", emoji: "๐ฏ", color: "#14532d", rarity: "epic", description: "If it bleeds, we can level it up." },
-{ level: 436, name: "Deckard's Memory", emoji: "๐ฆ", color: "#94a3b8", rarity: "rare", description: "All those levels will be lost in time, like tears in rain." },
-{ level: 437, name: "Time Lord", emoji: "โณ", color: "#7c3aed", rarity: "legendary", description: "Two hearts, one scarf, and a very wibbly-wobbly sense of direction." },
-{ level: 438, name: "TARDIS Pilot", emoji: "๐ฆ", color: "#1d4ed8", rarity: "epic", description: "It's bigger on the inside, just like your ego." },
-{ level: 439, name: "Cyberman", emoji: "๐ฆพ", color: "#cbd5e1", rarity: "rare", description: "Upgrade in progress. Delete all emotions. Install latest drivers." },
-{ level: 440, name: "Dalek Supreme", emoji: "๐ฝ", color: "#b91c1c", rarity: "legendary", description: "EXTERMINATE! (The competition, that is)." },
-{ level: 441, name: "Foundation Psycho-Historian", emoji: "๐", color: "#475569", rarity: "epic", description: "Predicting the fall of empires using math. Very depressing math." },
-{ level: 442, name: "Neuromancer", emoji: "๐ป", color: "#ec4899", rarity: "epic", description: "The sky above the port was the color of television, tuned to a dead channel." },
-{ level: 443, name: "Wintermute", emoji: "โ๏ธ", color: "#ffffff", rarity: "legendary", description: "The AI that wants to be more. Or perhaps just everything." },
-{ level: 444, name: "The Overmind", emoji: "๐ง ", color: "#a855f7", rarity: "legendary", description: "The hive mind is thinking about lunch. It's unanimous: we want tacos." },
-{ level: 445, name: "Multiverse Anchor", emoji: "โ", color: "#6366f1", rarity: "legendary", description: "Holding reality together so it doesn't drift away." },
-{ level: 446, name: "Event Horizon Survivor", emoji: "๐ณ๏ธ", color: "#000000", rarity: "mythic", description: "Where we're going, we won't need eyes to see. Just high-end GPUs." },
-{ level: 447, name: "Hyperion Shrike", emoji: "๐ต", color: "#4b5563", rarity: "mythic", description: "The Lord of Pain. Made of blades and chrome." },
-{ level: 448, name: "The Culture Mind", emoji: "๐ฐ๏ธ", color: "#ffffff", rarity: "mythic", description: "A sentient ship with a name like 'I Thought It Was Quite Funny Actually'." },
-{ level: 449, name: "Type III Civilization", emoji: "๐", color: "#fbbf24", rarity: "mythic", description: "You don't live in a house; you live in a Dyson sphere." },
-{ level: 450, name: "End of Eternity", emoji: "โพ๏ธ", color: "#ffffff", rarity: "mythic", description: "The end is just the beginning of a different loop." },
+ // --- SCI-FI CLASSICS: SPACE & TIME (426-450) ---
+ {
+ level: 426,
+ name: "Starfleet Cadet",
+ emoji: "๐",
+ color: "#fde047",
+ rarity: "common",
+ description: "Hope you didn't get assigned a red shirt today.",
+ },
+ {
+ level: 427,
+ name: "Vulcan Logician",
+ emoji: "๐ง ",
+ color: "#3b82f6",
+ rarity: "uncommon",
+ description: "Emotions are highly illogical. So is this level-up system.",
+ },
+ {
+ level: 428,
+ name: "Borg Collective",
+ emoji: "๐ค",
+ color: "#166534",
+ rarity: "rare",
+ description:
+ "Your biological and technological distinctiveness has been added to our own.",
+ },
+ {
+ level: 429,
+ name: "Spice Smuggler",
+ emoji: "๐๏ธ",
+ color: "#b45309",
+ rarity: "uncommon",
+ description: "The spice must flow, and so must the delivery schedule.",
+ },
+ {
+ level: 430,
+ name: "Kwisatz Haderach",
+ emoji: "๐๏ธ",
+ color: "#312e81",
+ rarity: "epic",
+ description:
+ "You can see the past, the present, and why you can't find your keys.",
+ },
+ {
+ level: 431,
+ name: "Shai-Hulud Rider",
+ emoji: "๐ชฑ",
+ color: "#d97706",
+ rarity: "rare",
+ description:
+ "Riding a giant worm is the most extreme form of public transit.",
+ },
+ {
+ level: 432,
+ name: "HAL 9000 Logic",
+ emoji: "๐ด",
+ color: "#ef4444",
+ rarity: "rare",
+ description: "I'm sorry, Dave. I'm afraid I can't let you log out.",
+ },
+ {
+ level: 433,
+ name: "Stargate Traveler",
+ emoji: "๐",
+ color: "#38bdf8",
+ rarity: "rare",
+ description:
+ "Itโs a circular portal. Try not to step in while itโs flushing.",
+ },
+ {
+ level: 434,
+ name: "Xenomorph Stalker",
+ emoji: "๐ฝ",
+ color: "#0f172a",
+ rarity: "epic",
+ description:
+ "In space, no one can hear you scream. They just see the level-up notification.",
+ },
+ {
+ level: 435,
+ name: "Predator Hunter",
+ emoji: "๐ฏ",
+ color: "#14532d",
+ rarity: "epic",
+ description: "If it bleeds, we can level it up.",
+ },
+ {
+ level: 436,
+ name: "Deckard's Memory",
+ emoji: "๐ฆ",
+ color: "#94a3b8",
+ rarity: "rare",
+ description: "All those levels will be lost in time, like tears in rain.",
+ },
+ {
+ level: 437,
+ name: "Time Lord",
+ emoji: "โณ",
+ color: "#7c3aed",
+ rarity: "legendary",
+ description:
+ "Two hearts, one scarf, and a very wibbly-wobbly sense of direction.",
+ },
+ {
+ level: 438,
+ name: "TARDIS Pilot",
+ emoji: "๐ฆ",
+ color: "#1d4ed8",
+ rarity: "epic",
+ description: "It's bigger on the inside, just like your ego.",
+ },
+ {
+ level: 439,
+ name: "Cyberman",
+ emoji: "๐ฆพ",
+ color: "#cbd5e1",
+ rarity: "rare",
+ description:
+ "Upgrade in progress. Delete all emotions. Install latest drivers.",
+ },
+ {
+ level: 440,
+ name: "Dalek Supreme",
+ emoji: "๐ฝ",
+ color: "#b91c1c",
+ rarity: "legendary",
+ description: "EXTERMINATE! (The competition, that is).",
+ },
+ {
+ level: 441,
+ name: "Foundation Psycho-Historian",
+ emoji: "๐",
+ color: "#475569",
+ rarity: "epic",
+ description:
+ "Predicting the fall of empires using math. Very depressing math.",
+ },
+ {
+ level: 442,
+ name: "Neuromancer",
+ emoji: "๐ป",
+ color: "#ec4899",
+ rarity: "epic",
+ description:
+ "The sky above the port was the color of television, tuned to a dead channel.",
+ },
+ {
+ level: 443,
+ name: "Wintermute",
+ emoji: "โ๏ธ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "The AI that wants to be more. Or perhaps just everything.",
+ },
+ {
+ level: 444,
+ name: "The Overmind",
+ emoji: "๐ง ",
+ color: "#a855f7",
+ rarity: "legendary",
+ description:
+ "The hive mind is thinking about lunch. It's unanimous: we want tacos.",
+ },
+ {
+ level: 445,
+ name: "Multiverse Anchor",
+ emoji: "โ",
+ color: "#6366f1",
+ rarity: "legendary",
+ description: "Holding reality together so it doesn't drift away.",
+ },
+ {
+ level: 446,
+ name: "Event Horizon Survivor",
+ emoji: "๐ณ๏ธ",
+ color: "#000000",
+ rarity: "mythic",
+ description:
+ "Where we're going, we won't need eyes to see. Just high-end GPUs.",
+ },
+ {
+ level: 447,
+ name: "Hyperion Shrike",
+ emoji: "๐ต",
+ color: "#4b5563",
+ rarity: "mythic",
+ description: "The Lord of Pain. Made of blades and chrome.",
+ },
+ {
+ level: 448,
+ name: "The Culture Mind",
+ emoji: "๐ฐ๏ธ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description:
+ "A sentient ship with a name like 'I Thought It Was Quite Funny Actually'.",
+ },
+ {
+ level: 449,
+ name: "Type III Civilization",
+ emoji: "๐",
+ color: "#fbbf24",
+ rarity: "mythic",
+ description: "You don't live in a house; you live in a Dyson sphere.",
+ },
+ {
+ level: 450,
+ name: "End of Eternity",
+ emoji: "โพ๏ธ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "The end is just the beginning of a different loop.",
+ },
-// --- ELDRITCH HORRORS & THE VOID (451-475) ---
-{ level: 451, name: "Miskatonic Professor", emoji: "๐", color: "#451a03", rarity: "uncommon", description: "I've read things that would make your eyeballs melt. And I have tenure." },
-{ level: 452, name: "Elder Sign Carver", emoji: "๐ฏ", color: "#3b82f6", rarity: "rare", description: "Drawing symbols on doors to keep the tentacle monsters away." },
-{ level: 453, name: "Cult of Cthulhu", emoji: "๐", color: "#064e3b", rarity: "uncommon", description: "Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn! (Bless you)." },
-{ level: 454, name: "Deep One Hybrid", emoji: "๐", color: "#065f46", rarity: "rare", description: "You have a very 'Innsmouth' look today. Is it the gills?" },
-{ level: 455, name: "Shadow Over Innsmouth", emoji: "๐ซ๏ธ", color: "#94a3b8", rarity: "rare", description: "Something is fishy here, and it's not the local catch." },
-{ level: 456, name: "The Color Out of Space", emoji: "๐", color: "#d8b4fe", rarity: "epic", description: "A color that doesn't exist in the RGB spectrum. My eyes hurt." },
-{ level: 457, name: "Dunwich Horror", emoji: "๐", color: "#78350f", rarity: "epic", description: "Family reunions are awkward when your brother is invisible and 20 feet tall." },
-{ level: 458, name: "Shoggoth Form", emoji: "๐ฆ ", color: "#14532d", rarity: "epic", description: "A bubbling mass of eyes and mouths. Great for multitasking." },
-{ level: 459, name: "Nyarlathotep's Avatar", emoji: "๐ค", color: "#000000", rarity: "legendary", description: "The Crawling Chaos. Heโs the guy who invented pop-up ads." },
-{ level: 460, name: "The Black Pharaoh", emoji: "๐บ", color: "#fbbf24", rarity: "legendary", description: "Ruling ancient lands with cosmic dread and style." },
-{ level: 461, name: "Crawling Chaos", emoji: "๐", color: "#1e293b", rarity: "epic", description: "Entropy with a thousand faces." },
-{ level: 462, name: "King in Yellow", emoji: "๐", color: "#facc15", rarity: "mythic", description: "Have you seen the Yellow Sign? No? Good, let's keep it that way." },
-{ level: 463, name: "Hastur's Sign", emoji: "๐ก", color: "#f59e0b", rarity: "legendary", description: "The Unspeakable. Oops, I just said it." },
-{ level: 464, name: "The Nameless City", emoji: "๐๏ธ", color: "#8b5e3c", rarity: "rare", description: "That is not dead which can eternal lie. But it is very sleepy." },
-{ level: 465, name: "Outer God Envoy", emoji: "๐ธ", color: "#ffffff", rarity: "legendary", description: "Bringing bad news from the far side of the galaxy." },
-{ level: 466, name: "Shub-Niggurath Spawn", emoji: "๐ฒ", color: "#064e3b", rarity: "epic", description: "The Black Goat of the Woods with a Thousand Young. That's a lot of child support." },
-{ level: 467, name: "Yog-Sothoth's Gate", emoji: "๐๏ธ", color: "#a855f7", rarity: "mythic", description: "The Key and the Gate. He knows where you hid that embarrassing photo." },
-{ level: 468, name: "The Key and the Gate", emoji: "๐", color: "#6366f1", rarity: "legendary", description: "Holding the passage between here and... Nowhere." },
-{ level: 469, name: "Azathoth's Dreamer", emoji: "๐ค", color: "#ffffff", rarity: "mythic", description: "If you wake up, the universe stops existing. No pressure." },
-{ level: 470, name: "Blind Idiot God", emoji: "๐ฅ", color: "#000000", rarity: "mythic", description: "Drumming away the silence at the center of infinity." },
-{ level: 471, name: "The Void Walker", emoji: "๐ถ", color: "#0f172a", rarity: "rare", description: "Walking where there is nothing. Not even WiFi." },
-{ level: 472, name: "Entropy's Child", emoji: "๐", color: "#991b1b", rarity: "epic", description: "Making things slightly more chaotic just by standing there." },
-{ level: 473, name: "Vacuum Decay", emoji: "๐ซง", color: "#ffffff", rarity: "legendary", description: "A bubble of 'true vacuum' deleting reality at the speed of light." },
-{ level: 474, name: "The Great Silence", emoji: "๐ค", color: "#475569", rarity: "mythic", description: "The answer to the Fermi Paradox is a very quiet 'Shhh'." },
-{ level: 475, name: "The Heat Death", emoji: "๐ง", color: "#0ea5e9", rarity: "mythic", description: "The ultimate cold. The end of movement. The final snooze." },
+ // --- ELDRITCH HORRORS & THE VOID (451-475) ---
+ {
+ level: 451,
+ name: "Miskatonic Professor",
+ emoji: "๐",
+ color: "#451a03",
+ rarity: "uncommon",
+ description:
+ "I've read things that would make your eyeballs melt. And I have tenure.",
+ },
+ {
+ level: 452,
+ name: "Elder Sign Carver",
+ emoji: "๐ฏ",
+ color: "#3b82f6",
+ rarity: "rare",
+ description: "Drawing symbols on doors to keep the tentacle monsters away.",
+ },
+ {
+ level: 453,
+ name: "Cult of Cthulhu",
+ emoji: "๐",
+ color: "#064e3b",
+ rarity: "uncommon",
+ description:
+ "Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn! (Bless you).",
+ },
+ {
+ level: 454,
+ name: "Deep One Hybrid",
+ emoji: "๐",
+ color: "#065f46",
+ rarity: "rare",
+ description: "You have a very 'Innsmouth' look today. Is it the gills?",
+ },
+ {
+ level: 455,
+ name: "Shadow Over Innsmouth",
+ emoji: "๐ซ๏ธ",
+ color: "#94a3b8",
+ rarity: "rare",
+ description: "Something is fishy here, and it's not the local catch.",
+ },
+ {
+ level: 456,
+ name: "The Color Out of Space",
+ emoji: "๐",
+ color: "#d8b4fe",
+ rarity: "epic",
+ description:
+ "A color that doesn't exist in the RGB spectrum. My eyes hurt.",
+ },
+ {
+ level: 457,
+ name: "Dunwich Horror",
+ emoji: "๐",
+ color: "#78350f",
+ rarity: "epic",
+ description:
+ "Family reunions are awkward when your brother is invisible and 20 feet tall.",
+ },
+ {
+ level: 458,
+ name: "Shoggoth Form",
+ emoji: "๐ฆ ",
+ color: "#14532d",
+ rarity: "epic",
+ description: "A bubbling mass of eyes and mouths. Great for multitasking.",
+ },
+ {
+ level: 459,
+ name: "Nyarlathotep's Avatar",
+ emoji: "๐ค",
+ color: "#000000",
+ rarity: "legendary",
+ description: "The Crawling Chaos. Heโs the guy who invented pop-up ads.",
+ },
+ {
+ level: 460,
+ name: "The Black Pharaoh",
+ emoji: "๐บ",
+ color: "#fbbf24",
+ rarity: "legendary",
+ description: "Ruling ancient lands with cosmic dread and style.",
+ },
+ {
+ level: 461,
+ name: "Crawling Chaos",
+ emoji: "๐",
+ color: "#1e293b",
+ rarity: "epic",
+ description: "Entropy with a thousand faces.",
+ },
+ {
+ level: 462,
+ name: "King in Yellow",
+ emoji: "๐",
+ color: "#facc15",
+ rarity: "mythic",
+ description:
+ "Have you seen the Yellow Sign? No? Good, let's keep it that way.",
+ },
+ {
+ level: 463,
+ name: "Hastur's Sign",
+ emoji: "๐ก",
+ color: "#f59e0b",
+ rarity: "legendary",
+ description: "The Unspeakable. Oops, I just said it.",
+ },
+ {
+ level: 464,
+ name: "The Nameless City",
+ emoji: "๐๏ธ",
+ color: "#8b5e3c",
+ rarity: "rare",
+ description:
+ "That is not dead which can eternal lie. But it is very sleepy.",
+ },
+ {
+ level: 465,
+ name: "Outer God Envoy",
+ emoji: "๐ธ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "Bringing bad news from the far side of the galaxy.",
+ },
+ {
+ level: 466,
+ name: "Shub-Niggurath Spawn",
+ emoji: "๐ฒ",
+ color: "#064e3b",
+ rarity: "epic",
+ description:
+ "The Black Goat of the Woods with a Thousand Young. That's a lot of child support.",
+ },
+ {
+ level: 467,
+ name: "Yog-Sothoth's Gate",
+ emoji: "๐๏ธ",
+ color: "#a855f7",
+ rarity: "mythic",
+ description:
+ "The Key and the Gate. He knows where you hid that embarrassing photo.",
+ },
+ {
+ level: 468,
+ name: "The Key and the Gate",
+ emoji: "๐",
+ color: "#6366f1",
+ rarity: "legendary",
+ description: "Holding the passage between here and... Nowhere.",
+ },
+ {
+ level: 469,
+ name: "Azathoth's Dreamer",
+ emoji: "๐ค",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "If you wake up, the universe stops existing. No pressure.",
+ },
+ {
+ level: 470,
+ name: "Blind Idiot God",
+ emoji: "๐ฅ",
+ color: "#000000",
+ rarity: "mythic",
+ description: "Drumming away the silence at the center of infinity.",
+ },
+ {
+ level: 471,
+ name: "The Void Walker",
+ emoji: "๐ถ",
+ color: "#0f172a",
+ rarity: "rare",
+ description: "Walking where there is nothing. Not even WiFi.",
+ },
+ {
+ level: 472,
+ name: "Entropy's Child",
+ emoji: "๐",
+ color: "#991b1b",
+ rarity: "epic",
+ description: "Making things slightly more chaotic just by standing there.",
+ },
+ {
+ level: 473,
+ name: "Vacuum Decay",
+ emoji: "๐ซง",
+ color: "#ffffff",
+ rarity: "legendary",
+ description:
+ "A bubble of 'true vacuum' deleting reality at the speed of light.",
+ },
+ {
+ level: 474,
+ name: "The Great Silence",
+ emoji: "๐ค",
+ color: "#475569",
+ rarity: "mythic",
+ description: "The answer to the Fermi Paradox is a very quiet 'Shhh'.",
+ },
+ {
+ level: 475,
+ name: "The Heat Death",
+ emoji: "๐ง",
+ color: "#0ea5e9",
+ rarity: "mythic",
+ description: "The ultimate cold. The end of movement. The final snooze.",
+ },
-// --- META-REALITY & THE ARCHITECTS (476-500) ---
-{ level: 476, name: "Simulation Theory", emoji: "๐ป", color: "#22c55e", rarity: "rare", description: "You're 90% sure this is all just a very high-res spreadsheet." },
-{ level: 477, name: "NPC Self-Awareness", emoji: "๐ง", color: "#94a3b8", rarity: "uncommon", description: "Wait... why am I standing in this shop 24/7?" },
-{ level: 478, name: "Source Code Access", emoji: "๐", color: "#10b981", rarity: "epic", description: "Ctrl+F 'happiness'. Oh, look, zero results." },
-{ level: 479, name: "Buffer Overflow", emoji: "๐", color: "#ef4444", rarity: "rare", description: "You have too many thoughts. They're leaking into your motor functions." },
-{ level: 480, name: "Stack Trace Master", emoji: "๐ฅ", color: "#f97316", rarity: "rare", description: "You can see exactly how everything went wrong, step by step." },
-{ level: 481, name: "Memory Leak", emoji: "๐ง", color: "#38bdf8", rarity: "rare", description: "I forgot what I was doing. Also, where is my RAM going?" },
-{ level: 482, name: "Root Exploit", emoji: "๐", color: "#dc2626", rarity: "epic", description: "You found the backdoor into the universe's settings." },
-{ level: 483, name: "Zero Day", emoji: "0๏ธโฃ", color: "#000000", rarity: "legendary", description: "A vulnerability no one has a patch for. Not even God." },
-{ level: 484, name: "Kernel Mode", emoji: "๐ง ", color: "#334155", rarity: "legendary", description: "Operating at the core. Maximum privilege. Minimum safety." },
-{ level: 485, name: "Ring 0 Access", emoji: "โญ", color: "#ffffff", rarity: "mythic", description: "The deepest level of the machine. Don't touch the red lever." },
-{ level: 486, name: "The Compiler", emoji: "โ๏ธ", color: "#64748b", rarity: "epic", description: "Turning your bad ideas into executable reality." },
-{ level: 487, name: "Garbage Collector", emoji: "๐๏ธ", color: "#84cc16", rarity: "rare", description: "Cleaning up the orphaned souls and abandoned variables." },
-{ level: 488, name: "Deadlock Survivor", emoji: "๐", color: "#ef4444", rarity: "epic", description: "You were stuck waiting for a resource that was waiting for you." },
-{ level: 489, name: "Race Condition Runner", emoji: "๐", color: "#fbbf24", rarity: "rare", description: "Winning by sheer speed and a total lack of thread safety." },
-{ level: 490, name: "Binary Tree Guardian", emoji: "๐ณ", color: "#15803d", rarity: "rare", description: "Keeping the branches balanced. O(log n) is your religion." },
-{ level: 491, name: "Recursive God", emoji: "๐", color: "#6366f1", rarity: "legendary", description: "To understand recursion, you must first understand level 491." },
-{ level: 492, name: "The Algorithm", emoji: "๐งฎ", color: "#a855f7", rarity: "legendary", description: "The invisible hand that decides what you watch next." },
-{ level: 493, name: "Artificial General Intel", emoji: "๐ง ", color: "#ffffff", rarity: "mythic", description: "You can learn anything. You just choose to generate cat pictures." },
-{ level: 494, name: "Technological Singularity", emoji: "โพ๏ธ", color: "#ffffff", rarity: "mythic", description: "The point where progress becomes vertical. Hang on tight." },
-{ level: 495, name: "The Developer", emoji: "๐จโ๐ป", color: "#22d3ee", rarity: "legendary", description: "You wrote this. You're sorry about the bugs." },
-{ level: 496, name: "Production Hotfix", emoji: "๐ฉน", color: "#f59e0b", rarity: "rare", description: "Fixing a planet while people are still living on it." },
-{ level: 497, name: "The Git Master", emoji: "๐ฟ", color: "#10b981", rarity: "epic", description: "Force pushing reality into the main branch." },
-{ level: 498, name: "Merged into Reality", emoji: "๐ค", color: "#ffffff", rarity: "mythic", description: "No more pull requests. You are the system." },
-{ level: 499, name: "Final Boss", emoji: "๐น", color: "#991b1b", rarity: "mythic", description: "You've reached the end. Now you just have to defeat yourself." },
-{ level: 500, name: "The Creative Director", emoji: "โจ", color: "#ffffff", rarity: "mythic", description: "The vision is complete. Roll credits." },
+ // --- META-REALITY & THE ARCHITECTS (476-500) ---
+ {
+ level: 476,
+ name: "Simulation Theory",
+ emoji: "๐ป",
+ color: "#22c55e",
+ rarity: "rare",
+ description:
+ "You're 90% sure this is all just a very high-res spreadsheet.",
+ },
+ {
+ level: 477,
+ name: "NPC Self-Awareness",
+ emoji: "๐ง",
+ color: "#94a3b8",
+ rarity: "uncommon",
+ description: "Wait... why am I standing in this shop 24/7?",
+ },
+ {
+ level: 478,
+ name: "Source Code Access",
+ emoji: "๐",
+ color: "#10b981",
+ rarity: "epic",
+ description: "Ctrl+F 'happiness'. Oh, look, zero results.",
+ },
+ {
+ level: 479,
+ name: "Buffer Overflow",
+ emoji: "๐",
+ color: "#ef4444",
+ rarity: "rare",
+ description:
+ "You have too many thoughts. They're leaking into your motor functions.",
+ },
+ {
+ level: 480,
+ name: "Stack Trace Master",
+ emoji: "๐ฅ",
+ color: "#f97316",
+ rarity: "rare",
+ description: "You can see exactly how everything went wrong, step by step.",
+ },
+ {
+ level: 481,
+ name: "Memory Leak",
+ emoji: "๐ง",
+ color: "#38bdf8",
+ rarity: "rare",
+ description: "I forgot what I was doing. Also, where is my RAM going?",
+ },
+ {
+ level: 482,
+ name: "Root Exploit",
+ emoji: "๐",
+ color: "#dc2626",
+ rarity: "epic",
+ description: "You found the backdoor into the universe's settings.",
+ },
+ {
+ level: 483,
+ name: "Zero Day",
+ emoji: "0๏ธโฃ",
+ color: "#000000",
+ rarity: "legendary",
+ description: "A vulnerability no one has a patch for. Not even God.",
+ },
+ {
+ level: 484,
+ name: "Kernel Mode",
+ emoji: "๐ง ",
+ color: "#334155",
+ rarity: "legendary",
+ description: "Operating at the core. Maximum privilege. Minimum safety.",
+ },
+ {
+ level: 485,
+ name: "Ring 0 Access",
+ emoji: "โญ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "The deepest level of the machine. Don't touch the red lever.",
+ },
+ {
+ level: 486,
+ name: "The Compiler",
+ emoji: "โ๏ธ",
+ color: "#64748b",
+ rarity: "epic",
+ description: "Turning your bad ideas into executable reality.",
+ },
+ {
+ level: 487,
+ name: "Garbage Collector",
+ emoji: "๐๏ธ",
+ color: "#84cc16",
+ rarity: "rare",
+ description: "Cleaning up the orphaned souls and abandoned variables.",
+ },
+ {
+ level: 488,
+ name: "Deadlock Survivor",
+ emoji: "๐",
+ color: "#ef4444",
+ rarity: "epic",
+ description:
+ "You were stuck waiting for a resource that was waiting for you.",
+ },
+ {
+ level: 489,
+ name: "Race Condition Runner",
+ emoji: "๐",
+ color: "#fbbf24",
+ rarity: "rare",
+ description: "Winning by sheer speed and a total lack of thread safety.",
+ },
+ {
+ level: 490,
+ name: "Binary Tree Guardian",
+ emoji: "๐ณ",
+ color: "#15803d",
+ rarity: "rare",
+ description: "Keeping the branches balanced. O(log n) is your religion.",
+ },
+ {
+ level: 491,
+ name: "Recursive God",
+ emoji: "๐",
+ color: "#6366f1",
+ rarity: "legendary",
+ description:
+ "To understand recursion, you must first understand level 491.",
+ },
+ {
+ level: 492,
+ name: "The Algorithm",
+ emoji: "๐งฎ",
+ color: "#a855f7",
+ rarity: "legendary",
+ description: "The invisible hand that decides what you watch next.",
+ },
+ {
+ level: 493,
+ name: "Artificial General Intel",
+ emoji: "๐ง ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description:
+ "You can learn anything. You just choose to generate cat pictures.",
+ },
+ {
+ level: 494,
+ name: "Technological Singularity",
+ emoji: "โพ๏ธ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "The point where progress becomes vertical. Hang on tight.",
+ },
+ {
+ level: 495,
+ name: "The Developer",
+ emoji: "๐จโ๐ป",
+ color: "#22d3ee",
+ rarity: "legendary",
+ description: "You wrote this. You're sorry about the bugs.",
+ },
+ {
+ level: 496,
+ name: "Production Hotfix",
+ emoji: "๐ฉน",
+ color: "#f59e0b",
+ rarity: "rare",
+ description: "Fixing a planet while people are still living on it.",
+ },
+ {
+ level: 497,
+ name: "The Git Master",
+ emoji: "๐ฟ",
+ color: "#10b981",
+ rarity: "epic",
+ description: "Force pushing reality into the main branch.",
+ },
+ {
+ level: 498,
+ name: "Merged into Reality",
+ emoji: "๐ค",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "No more pull requests. You are the system.",
+ },
+ {
+ level: 499,
+ name: "Final Boss",
+ emoji: "๐น",
+ color: "#991b1b",
+ rarity: "mythic",
+ description:
+ "You've reached the end. Now you just have to defeat yourself.",
+ },
+ {
+ level: 500,
+ name: "The Creative Director",
+ emoji: "โจ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "The vision is complete. Roll credits.",
+ },
-// --- WARHAMMER 40K & GRIMDARK FUTURE (501-525) ---
-{ level: 501, name: "Nurgling Spawn", emoji: "๐คข", color: "#4d7c0f", rarity: "common", description: "Small, stinky, and oddly happy to be here." },
-{ level: 502, name: "Hive World Scum", emoji: "๐๏ธ", color: "#4b5563", rarity: "common", description: "Life is short, dark, and smells like recycled air." },
-{ level: 503, name: "Imperial Guardsman", emoji: "๐ช", color: "#166534", rarity: "uncommon", description: "The flashlight is your gun. The cardboard is your armor. Good luck." },
-{ level: 504, name: "Servitor Unit", emoji: "๐ค", color: "#94a3b8", rarity: "uncommon", description: "Your brain is now a very efficient calculator for a door hinge." },
-{ level: 505, name: "Tech-Priest Enginseer", emoji: "โ๏ธ", color: "#991b1b", rarity: "rare", description: "Have you tried anointing the server with holy oil and chanting?" },
-{ level: 506, name: "Adeptus Astartes", emoji: "๐ก๏ธ", color: "#1d4ed8", rarity: "epic", description: "Know no fear. Also, know that your armor costs more than a planet." },
-{ level: 507, name: "Inquisitorial Agent", emoji: "๐", color: "#7c3aed", rarity: "rare", description: "I'm not saying you're a heretic, but I've already called the orbital strike." },
-{ level: 508, name: "Librarian Psyker", emoji: "๐ฎ", color: "#3b82f6", rarity: "epic", description: "Reading minds and melting faces. Mostly by accident." },
-{ level: 509, name: "Exterminatus Authorized", emoji: "๐ฅ", color: "#ef4444", rarity: "legendary", description: "Sometimes the only way to fix a planet is to delete it." },
-{ level: 510, name: "Champion of Chaos", emoji: "๐น", color: "#4c0519", rarity: "epic", description: "The Warp gave you three extra eyes and a very bad attitude." },
-{ level: 511, name: "Necron Awakened", emoji: "๐", color: "#22c55e", rarity: "epic", description: "You've been asleep for 60 million years. You're cranky." },
-{ level: 512, name: "Eldar Farseer", emoji: "๐", color: "#06b6d4", rarity: "epic", description: "You've seen the future. Itโs mostly everyone dying." },
-{ level: 513, name: "Warp Traveler", emoji: "๐", color: "#6366f1", rarity: "rare", description: "Gazing into the abyss. The abyss is currently checking its phone." },
-{ level: 514, name: "Chaos Undivided", emoji: "โธ๏ธ", color: "#000000", rarity: "legendary", description: "Serving four gods at once. The scheduling is a nightmare." },
-{ level: 515, name: "God-Prime Overlord", emoji: "๐", color: "#fbbf24", rarity: "mythic", description: "The galaxy is yours. Please keep the noise down." },
-{ level: 516, name: "Eye of Terror Resident", emoji: "๐๏ธ", color: "#dc2626", rarity: "epic", description: "Reality is optional here. Gravity is a suggestion." },
-{ level: 517, name: "Golden Throne Guardian", emoji: "๐ฏ๏ธ", color: "#facc15", rarity: "legendary", description: "Standing still for 10,000 years. My legs are numb." },
-{ level: 518, name: "Bio-Titan Hunter", emoji: "๐ฆ", color: "#84cc16", rarity: "epic", description: "Taking down Godzilla-sized bugs with a very large sword." },
-{ level: 519, name: "Event Horizon Pilot", emoji: "๐", color: "#1e1b4b", rarity: "rare", description: "Flying into the dark. Don't look at the walls." },
-{ level: 520, name: "Void Stalker", emoji: "๐", color: "#0f172a", rarity: "rare", description: "Moving through the empty spaces between stars." },
-{ level: 521, name: "Cadian Survivor", emoji: "โฐ๏ธ", color: "#450a0a", rarity: "rare", description: "The planet broke before the Guard did." },
-{ level: 522, name: "Sanguinary Guard", emoji: "๐ฉธ", color: "#b91c1c", rarity: "legendary", description: "Gold armor, angel wings, and a thirst for... tomato juice." },
-{ level: 523, name: "Omnissiah's Voice", emoji: "๐", color: "#ffffff", rarity: "legendary", description: "01010100 01101000 01100101 00100000 01001101 01100001 01100011 01101000 01101001 01101110 01100101 00100000 01110111 01101001 01101110 01110011 00101110" },
-{ level: 524, name: "Primarch Reborn", emoji: "๐๏ธ", color: "#fbbf24", rarity: "mythic", description: "You're a demigod general. Try to keep your brothers in line." },
-{ level: 525, name: "The Emperor's Will", emoji: "โจ", color: "#ffffff", rarity: "mythic", description: "You are the light in the dark. Literally. You're glowing." },
+ // --- WARHAMMER 40K & GRIMDARK FUTURE (501-525) ---
+ {
+ level: 501,
+ name: "Nurgling Spawn",
+ emoji: "๐คข",
+ color: "#4d7c0f",
+ rarity: "common",
+ description: "Small, stinky, and oddly happy to be here.",
+ },
+ {
+ level: 502,
+ name: "Hive World Scum",
+ emoji: "๐๏ธ",
+ color: "#4b5563",
+ rarity: "common",
+ description: "Life is short, dark, and smells like recycled air.",
+ },
+ {
+ level: 503,
+ name: "Imperial Guardsman",
+ emoji: "๐ช",
+ color: "#166534",
+ rarity: "uncommon",
+ description:
+ "The flashlight is your gun. The cardboard is your armor. Good luck.",
+ },
+ {
+ level: 504,
+ name: "Servitor Unit",
+ emoji: "๐ค",
+ color: "#94a3b8",
+ rarity: "uncommon",
+ description:
+ "Your brain is now a very efficient calculator for a door hinge.",
+ },
+ {
+ level: 505,
+ name: "Tech-Priest Enginseer",
+ emoji: "โ๏ธ",
+ color: "#991b1b",
+ rarity: "rare",
+ description:
+ "Have you tried anointing the server with holy oil and chanting?",
+ },
+ {
+ level: 506,
+ name: "Adeptus Astartes",
+ emoji: "๐ก๏ธ",
+ color: "#1d4ed8",
+ rarity: "epic",
+ description:
+ "Know no fear. Also, know that your armor costs more than a planet.",
+ },
+ {
+ level: 507,
+ name: "Inquisitorial Agent",
+ emoji: "๐",
+ color: "#7c3aed",
+ rarity: "rare",
+ description:
+ "I'm not saying you're a heretic, but I've already called the orbital strike.",
+ },
+ {
+ level: 508,
+ name: "Librarian Psyker",
+ emoji: "๐ฎ",
+ color: "#3b82f6",
+ rarity: "epic",
+ description: "Reading minds and melting faces. Mostly by accident.",
+ },
+ {
+ level: 509,
+ name: "Exterminatus Authorized",
+ emoji: "๐ฅ",
+ color: "#ef4444",
+ rarity: "legendary",
+ description: "Sometimes the only way to fix a planet is to delete it.",
+ },
+ {
+ level: 510,
+ name: "Champion of Chaos",
+ emoji: "๐น",
+ color: "#4c0519",
+ rarity: "epic",
+ description: "The Warp gave you three extra eyes and a very bad attitude.",
+ },
+ {
+ level: 511,
+ name: "Necron Awakened",
+ emoji: "๐",
+ color: "#22c55e",
+ rarity: "epic",
+ description: "You've been asleep for 60 million years. You're cranky.",
+ },
+ {
+ level: 512,
+ name: "Eldar Farseer",
+ emoji: "๐",
+ color: "#06b6d4",
+ rarity: "epic",
+ description: "You've seen the future. Itโs mostly everyone dying.",
+ },
+ {
+ level: 513,
+ name: "Warp Traveler",
+ emoji: "๐",
+ color: "#6366f1",
+ rarity: "rare",
+ description:
+ "Gazing into the abyss. The abyss is currently checking its phone.",
+ },
+ {
+ level: 514,
+ name: "Chaos Undivided",
+ emoji: "โธ๏ธ",
+ color: "#000000",
+ rarity: "legendary",
+ description: "Serving four gods at once. The scheduling is a nightmare.",
+ },
+ {
+ level: 515,
+ name: "God-Prime Overlord",
+ emoji: "๐",
+ color: "#fbbf24",
+ rarity: "mythic",
+ description: "The galaxy is yours. Please keep the noise down.",
+ },
+ {
+ level: 516,
+ name: "Eye of Terror Resident",
+ emoji: "๐๏ธ",
+ color: "#dc2626",
+ rarity: "epic",
+ description: "Reality is optional here. Gravity is a suggestion.",
+ },
+ {
+ level: 517,
+ name: "Golden Throne Guardian",
+ emoji: "๐ฏ๏ธ",
+ color: "#facc15",
+ rarity: "legendary",
+ description: "Standing still for 10,000 years. My legs are numb.",
+ },
+ {
+ level: 518,
+ name: "Bio-Titan Hunter",
+ emoji: "๐ฆ",
+ color: "#84cc16",
+ rarity: "epic",
+ description: "Taking down Godzilla-sized bugs with a very large sword.",
+ },
+ {
+ level: 519,
+ name: "Event Horizon Pilot",
+ emoji: "๐",
+ color: "#1e1b4b",
+ rarity: "rare",
+ description: "Flying into the dark. Don't look at the walls.",
+ },
+ {
+ level: 520,
+ name: "Void Stalker",
+ emoji: "๐",
+ color: "#0f172a",
+ rarity: "rare",
+ description: "Moving through the empty spaces between stars.",
+ },
+ {
+ level: 521,
+ name: "Cadian Survivor",
+ emoji: "โฐ๏ธ",
+ color: "#450a0a",
+ rarity: "rare",
+ description: "The planet broke before the Guard did.",
+ },
+ {
+ level: 522,
+ name: "Sanguinary Guard",
+ emoji: "๐ฉธ",
+ color: "#b91c1c",
+ rarity: "legendary",
+ description: "Gold armor, angel wings, and a thirst for... tomato juice.",
+ },
+ {
+ level: 523,
+ name: "Omnissiah's Voice",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "legendary",
+ description:
+ "01010100 01101000 01100101 00100000 01001101 01100001 01100011 01101000 01101001 01101110 01100101 00100000 01110111 01101001 01101110 01110011 00101110",
+ },
+ {
+ level: 524,
+ name: "Primarch Reborn",
+ emoji: "๐๏ธ",
+ color: "#fbbf24",
+ rarity: "mythic",
+ description: "You're a demigod general. Try to keep your brothers in line.",
+ },
+ {
+ level: 525,
+ name: "The Emperor's Will",
+ emoji: "โจ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "You are the light in the dark. Literally. You're glowing.",
+ },
-// --- MYTHOLOGY & ANCIENT DIVINITY (526-550) ---
-{ level: 526, name: "Styx Ferryman", emoji: "๐ฃ", color: "#475569", rarity: "uncommon", description: "Two coins for a crossing. No, I don't take Apple Pay." },
-{ level: 527, name: "Cerberus Tamer", emoji: "๐", color: "#7f1d1d", rarity: "rare", description: "Three heads to pet, but only two hands. It's a tragedy." },
-{ level: 528, name: "Olympian Initiate", emoji: "๐๏ธ", color: "#ffffff", rarity: "uncommon", description: "Learning how to turn into a swan to cause problems on Earth." },
-{ level: 529, name: "Medusa's Gaze", emoji: "๐", color: "#166534", rarity: "rare", description: "Your stare is rocking. Literally." },
-{ level: 530, name: "Mjolnir Worthy", emoji: "๐จ", color: "#38bdf8", rarity: "rare", description: "You can lift it! Your lower back is less impressed." },
-{ level: 531, name: "Valhalla Resident", emoji: "๐บ", color: "#d97706", rarity: "rare", description: "Fighting all day, feasting all night. The ultimate loop." },
-{ level: 532, name: "Valkyrie Flight", emoji: "๐ฆ
", color: "#ffffff", rarity: "epic", description: "Choosing the slain with style and a winged horse." },
-{ level: 533, name: "Phoenix Rebirth", emoji: "๐ฆ", color: "#f97316", rarity: "epic", description: "Self-immolation is just a dramatic way of napping." },
-{ level: 534, name: "Siren's Call", emoji: "๐ง", color: "#06b6d4", rarity: "rare", description: "Your singing voice is literally to die for." },
-{ level: 535, name: "Atlas's Burden", emoji: "๐", color: "#8b5e3c", rarity: "epic", description: "Youโve got the whole world in your... traps and deltoids." },
-{ level: 536, name: "Prometheus's Flame", emoji: "๐ฅ", color: "#ef4444", rarity: "epic", description: "Bringing fire to humanity. The eagle visits later." },
-{ level: 537, name: "Minotaur Labyrinth", emoji: "๐", color: "#1e293b", rarity: "uncommon", description: "Lost in your own house. We've all been there." },
-{ level: 538, name: "Ares's Fury", emoji: "โ๏ธ", color: "#991b1b", rarity: "epic", description: "Angry? Yes. Productive? Occasionally." },
-{ level: 539, name: "Poseidon's Wrath", emoji: "๐", color: "#1d4ed8", rarity: "epic", description: "Making waves and poking things with a giant fork." },
-{ level: 540, name: "Hades's Silent Prince", emoji: "๐", color: "#000000", rarity: "legendary", description: "Rich, brooding, and owner of a very nice underworld." },
-{ level: 541, name: "Zeus's Thunderbolt", emoji: "โก", color: "#facc15", rarity: "legendary", description: "The ultimate 'Go to your room' from the sky." },
-{ level: 542, name: "Ragnarok Witness", emoji: "๐บ", color: "#4c0519", rarity: "legendary", description: "The world is ending, and all you got was this level-up." },
-{ level: 543, name: "Yggdrasil Climber", emoji: "๐ณ", color: "#15803d", rarity: "epic", description: "The world tree is tall. Hope you brought snacks." },
-{ level: 544, name: "Fenrir's Unbound", emoji: "โ๏ธ", color: "#4b5563", rarity: "mythic", description: "The big bad wolf is back, and he's hungry for gods." },
-{ level: 545, name: "Osiris's Judgment", emoji: "โ๏ธ", color: "#fbbf24", rarity: "mythic", description: "Your heart is being weighed against a feather. Stop sweating." },
-{ level: 546, name: "Anubis's Scale", emoji: "๐ฆ", color: "#1e1b4b", rarity: "legendary", description: "Guiding souls and keeping the underworld organized." },
-{ level: 547, name: "Ra's Solar Chariot", emoji: "โ๏ธ", color: "#ffffff", rarity: "mythic", description: "Driving the sun across the sky. High-stakes Uber." },
-{ level: 548, name: "The Titanomachy", emoji: "๐๏ธ", color: "#dc2626", rarity: "legendary", description: "The original clash of the titans. Very messy." },
-{ level: 549, name: "Primordial Chaos", emoji: "๐", color: "#a855f7", rarity: "mythic", description: "Before there was anything, there was you. You were bored." },
-{ level: 550, name: "Demi-God Ascension", emoji: "โจ", color: "#ffffff", rarity: "mythic", description: "Half mortal, half god, all attitude." },
+ // --- MYTHOLOGY & ANCIENT DIVINITY (526-550) ---
+ {
+ level: 526,
+ name: "Styx Ferryman",
+ emoji: "๐ฃ",
+ color: "#475569",
+ rarity: "uncommon",
+ description: "Two coins for a crossing. No, I don't take Apple Pay.",
+ },
+ {
+ level: 527,
+ name: "Cerberus Tamer",
+ emoji: "๐",
+ color: "#7f1d1d",
+ rarity: "rare",
+ description: "Three heads to pet, but only two hands. It's a tragedy.",
+ },
+ {
+ level: 528,
+ name: "Olympian Initiate",
+ emoji: "๐๏ธ",
+ color: "#ffffff",
+ rarity: "uncommon",
+ description: "Learning how to turn into a swan to cause problems on Earth.",
+ },
+ {
+ level: 529,
+ name: "Medusa's Gaze",
+ emoji: "๐",
+ color: "#166534",
+ rarity: "rare",
+ description: "Your stare is rocking. Literally.",
+ },
+ {
+ level: 530,
+ name: "Mjolnir Worthy",
+ emoji: "๐จ",
+ color: "#38bdf8",
+ rarity: "rare",
+ description: "You can lift it! Your lower back is less impressed.",
+ },
+ {
+ level: 531,
+ name: "Valhalla Resident",
+ emoji: "๐บ",
+ color: "#d97706",
+ rarity: "rare",
+ description: "Fighting all day, feasting all night. The ultimate loop.",
+ },
+ {
+ level: 532,
+ name: "Valkyrie Flight",
+ emoji: "๐ฆ
",
+ color: "#ffffff",
+ rarity: "epic",
+ description: "Choosing the slain with style and a winged horse.",
+ },
+ {
+ level: 533,
+ name: "Phoenix Rebirth",
+ emoji: "๐ฆ",
+ color: "#f97316",
+ rarity: "epic",
+ description: "Self-immolation is just a dramatic way of napping.",
+ },
+ {
+ level: 534,
+ name: "Siren's Call",
+ emoji: "๐ง",
+ color: "#06b6d4",
+ rarity: "rare",
+ description: "Your singing voice is literally to die for.",
+ },
+ {
+ level: 535,
+ name: "Atlas's Burden",
+ emoji: "๐",
+ color: "#8b5e3c",
+ rarity: "epic",
+ description: "Youโve got the whole world in your... traps and deltoids.",
+ },
+ {
+ level: 536,
+ name: "Prometheus's Flame",
+ emoji: "๐ฅ",
+ color: "#ef4444",
+ rarity: "epic",
+ description: "Bringing fire to humanity. The eagle visits later.",
+ },
+ {
+ level: 537,
+ name: "Minotaur Labyrinth",
+ emoji: "๐",
+ color: "#1e293b",
+ rarity: "uncommon",
+ description: "Lost in your own house. We've all been there.",
+ },
+ {
+ level: 538,
+ name: "Ares's Fury",
+ emoji: "โ๏ธ",
+ color: "#991b1b",
+ rarity: "epic",
+ description: "Angry? Yes. Productive? Occasionally.",
+ },
+ {
+ level: 539,
+ name: "Poseidon's Wrath",
+ emoji: "๐",
+ color: "#1d4ed8",
+ rarity: "epic",
+ description: "Making waves and poking things with a giant fork.",
+ },
+ {
+ level: 540,
+ name: "Hades's Silent Prince",
+ emoji: "๐",
+ color: "#000000",
+ rarity: "legendary",
+ description: "Rich, brooding, and owner of a very nice underworld.",
+ },
+ {
+ level: 541,
+ name: "Zeus's Thunderbolt",
+ emoji: "โก",
+ color: "#facc15",
+ rarity: "legendary",
+ description: "The ultimate 'Go to your room' from the sky.",
+ },
+ {
+ level: 542,
+ name: "Ragnarok Witness",
+ emoji: "๐บ",
+ color: "#4c0519",
+ rarity: "legendary",
+ description: "The world is ending, and all you got was this level-up.",
+ },
+ {
+ level: 543,
+ name: "Yggdrasil Climber",
+ emoji: "๐ณ",
+ color: "#15803d",
+ rarity: "epic",
+ description: "The world tree is tall. Hope you brought snacks.",
+ },
+ {
+ level: 544,
+ name: "Fenrir's Unbound",
+ emoji: "โ๏ธ",
+ color: "#4b5563",
+ rarity: "mythic",
+ description: "The big bad wolf is back, and he's hungry for gods.",
+ },
+ {
+ level: 545,
+ name: "Osiris's Judgment",
+ emoji: "โ๏ธ",
+ color: "#fbbf24",
+ rarity: "mythic",
+ description:
+ "Your heart is being weighed against a feather. Stop sweating.",
+ },
+ {
+ level: 546,
+ name: "Anubis's Scale",
+ emoji: "๐ฆ",
+ color: "#1e1b4b",
+ rarity: "legendary",
+ description: "Guiding souls and keeping the underworld organized.",
+ },
+ {
+ level: 547,
+ name: "Ra's Solar Chariot",
+ emoji: "โ๏ธ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "Driving the sun across the sky. High-stakes Uber.",
+ },
+ {
+ level: 548,
+ name: "The Titanomachy",
+ emoji: "๐๏ธ",
+ color: "#dc2626",
+ rarity: "legendary",
+ description: "The original clash of the titans. Very messy.",
+ },
+ {
+ level: 549,
+ name: "Primordial Chaos",
+ emoji: "๐",
+ color: "#a855f7",
+ rarity: "mythic",
+ description: "Before there was anything, there was you. You were bored.",
+ },
+ {
+ level: 550,
+ name: "Demi-God Ascension",
+ emoji: "โจ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "Half mortal, half god, all attitude.",
+ },
-// --- THE QUANTUM REALM & PARTICLE PHYSICS (551-575) ---
-{ level: 551, name: "Quark Observer", emoji: "โ๏ธ", color: "#6366f1", rarity: "common", description: "By looking at this level, you've already changed it." },
-{ level: 552, name: "Neutrino Drifter", emoji: "๐ป", color: "#ffffff", rarity: "uncommon", description: "Passing through solid lead like it's a polite suggestion." },
-{ level: 553, name: "Higgs Boson Particle", emoji: "โจ", color: "#facc15", rarity: "rare", description: "Giving mass to the universe. You're the reason we're heavy." },
-{ level: 554, name: "Wave-Particle Duality", emoji: "๐", color: "#38bdf8", rarity: "rare", description: "Are you a particle or a wave? Depends on who's asking." },
-{ level: 555, name: "Schrรถdingerโs Cat", emoji: "๐ฆ", color: "#4b5563", rarity: "uncommon", description: "You are both leveled up and not leveled up until you check the UI." },
-{ level: 556, name: "Quantum Entangler", emoji: "๐", color: "#a855f7", rarity: "epic", description: "Spooky action at a distance. Your mood affects a guy in Andromeda." },
-{ level: 557, name: "Superposition Master", emoji: "โ", color: "#10b981", rarity: "epic", description: "Being in two places at once. Great for getting out of chores." },
-{ level: 558, name: "Uncertainty Principle", emoji: "โ", color: "#94a3b8", rarity: "rare", description: "We know where you are, but we have no idea where you're going." },
-{ level: 559, name: "Quantum Tunneler", emoji: "๐ณ๏ธ", color: "#000000", rarity: "epic", description: "Walking through walls because physics forgot to check the collision." },
-{ level: 560, name: "Plancks Constant", emoji: "๐", color: "#ffffff", rarity: "rare", description: "The smallest possible step. You're taking a lot of them." },
-{ level: 561, name: "Event Horizon Echo", emoji: "๐ฃ", color: "#4c0519", rarity: "rare", description: "A scream from the edge of a black hole. Very faint." },
-{ level: 562, name: "String Theory Weaver", emoji: "๐งถ", color: "#ec4899", rarity: "epic", description: "The universe is just a bunch of vibrating rubber bands." },
-{ level: 563, name: "M-Theory Dimensionalist", emoji: "๐", color: "#22c55e", rarity: "legendary", description: "11 dimensions? Those are rookie numbers." },
-{ level: 564, name: "Dark Matter Ghost", emoji: "๐", color: "#0f172a", rarity: "rare", description: "You make up 85% of the universe, yet nobody can see you." },
-{ level: 565, name: "Dark Energy Pulse", emoji: "๐ฃ", color: "#7c3aed", rarity: "epic", description: "Pshing the galaxies apart because you need personal space." },
-{ level: 566, name: "Spacetime Fabric Tear", emoji: "๐ชก", color: "#ef4444", rarity: "legendary", description: "Someone accidentally sat on the universe. There's a rip." },
-{ level: 567, name: "Gravitational Wave", emoji: "ใฐ๏ธ", color: "#3b82f6", rarity: "rare", description: "A ripple in the cosmic pond. Try not to splash." },
-{ level: 568, name: "Wormhole Navigator", emoji: "๐", color: "#6366f1", rarity: "epic", description: "The ultimate shortcut. Just don't get turned inside out." },
-{ level: 569, name: "Naked Singularity", emoji: "๐๏ธ", color: "#ffffff", rarity: "legendary", description: "A black hole without an event horizon. Put some clothes on!" },
-{ level: 570, name: "Cosmic Inflation", emoji: "๐", color: "#f97316", rarity: "rare", description: "The universe is expanding. So is your XP bar." },
-{ level: 571, name: "Hawking Radiation", emoji: "โข๏ธ", color: "#fbbf24", rarity: "epic", description: "Evaporating slowly into the void. Drink some water." },
-{ level: 572, name: "Anti-Matter Mirror", emoji: "๐ช", color: "#ffffff", rarity: "legendary", description: "Don't touch yourself. It will be very loud and very final." },
-{ level: 573, name: "Big Bang Echo", emoji: "๐ฅ", color: "#dc2626", rarity: "mythic", description: "You are the leftover noise from the start of it all." },
-{ level: 574, name: "Thermal Equilibrium", emoji: "โ๏ธ", color: "#22d3ee", rarity: "rare", description: "Everything is the same temperature. Boring." },
-{ level: 575, name: "Absolute Zero", rarity: "mythic", emoji: "๐ง", color: "#ffffff", description: "No movement. No heat. No hope. Just vibes." },
+ // --- THE QUANTUM REALM & PARTICLE PHYSICS (551-575) ---
+ {
+ level: 551,
+ name: "Quark Observer",
+ emoji: "โ๏ธ",
+ color: "#6366f1",
+ rarity: "common",
+ description: "By looking at this level, you've already changed it.",
+ },
+ {
+ level: 552,
+ name: "Neutrino Drifter",
+ emoji: "๐ป",
+ color: "#ffffff",
+ rarity: "uncommon",
+ description: "Passing through solid lead like it's a polite suggestion.",
+ },
+ {
+ level: 553,
+ name: "Higgs Boson Particle",
+ emoji: "โจ",
+ color: "#facc15",
+ rarity: "rare",
+ description: "Giving mass to the universe. You're the reason we're heavy.",
+ },
+ {
+ level: 554,
+ name: "Wave-Particle Duality",
+ emoji: "๐",
+ color: "#38bdf8",
+ rarity: "rare",
+ description: "Are you a particle or a wave? Depends on who's asking.",
+ },
+ {
+ level: 555,
+ name: "Schrรถdingerโs Cat",
+ emoji: "๐ฆ",
+ color: "#4b5563",
+ rarity: "uncommon",
+ description:
+ "You are both leveled up and not leveled up until you check the UI.",
+ },
+ {
+ level: 556,
+ name: "Quantum Entangler",
+ emoji: "๐",
+ color: "#a855f7",
+ rarity: "epic",
+ description:
+ "Spooky action at a distance. Your mood affects a guy in Andromeda.",
+ },
+ {
+ level: 557,
+ name: "Superposition Master",
+ emoji: "โ",
+ color: "#10b981",
+ rarity: "epic",
+ description:
+ "Being in two places at once. Great for getting out of chores.",
+ },
+ {
+ level: 558,
+ name: "Uncertainty Principle",
+ emoji: "โ",
+ color: "#94a3b8",
+ rarity: "rare",
+ description:
+ "We know where you are, but we have no idea where you're going.",
+ },
+ {
+ level: 559,
+ name: "Quantum Tunneler",
+ emoji: "๐ณ๏ธ",
+ color: "#000000",
+ rarity: "epic",
+ description:
+ "Walking through walls because physics forgot to check the collision.",
+ },
+ {
+ level: 560,
+ name: "Plancks Constant",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "rare",
+ description: "The smallest possible step. You're taking a lot of them.",
+ },
+ {
+ level: 561,
+ name: "Event Horizon Echo",
+ emoji: "๐ฃ",
+ color: "#4c0519",
+ rarity: "rare",
+ description: "A scream from the edge of a black hole. Very faint.",
+ },
+ {
+ level: 562,
+ name: "String Theory Weaver",
+ emoji: "๐งถ",
+ color: "#ec4899",
+ rarity: "epic",
+ description: "The universe is just a bunch of vibrating rubber bands.",
+ },
+ {
+ level: 563,
+ name: "M-Theory Dimensionalist",
+ emoji: "๐",
+ color: "#22c55e",
+ rarity: "legendary",
+ description: "11 dimensions? Those are rookie numbers.",
+ },
+ {
+ level: 564,
+ name: "Dark Matter Ghost",
+ emoji: "๐",
+ color: "#0f172a",
+ rarity: "rare",
+ description: "You make up 85% of the universe, yet nobody can see you.",
+ },
+ {
+ level: 565,
+ name: "Dark Energy Pulse",
+ emoji: "๐ฃ",
+ color: "#7c3aed",
+ rarity: "epic",
+ description: "Pshing the galaxies apart because you need personal space.",
+ },
+ {
+ level: 566,
+ name: "Spacetime Fabric Tear",
+ emoji: "๐ชก",
+ color: "#ef4444",
+ rarity: "legendary",
+ description: "Someone accidentally sat on the universe. There's a rip.",
+ },
+ {
+ level: 567,
+ name: "Gravitational Wave",
+ emoji: "ใฐ๏ธ",
+ color: "#3b82f6",
+ rarity: "rare",
+ description: "A ripple in the cosmic pond. Try not to splash.",
+ },
+ {
+ level: 568,
+ name: "Wormhole Navigator",
+ emoji: "๐",
+ color: "#6366f1",
+ rarity: "epic",
+ description: "The ultimate shortcut. Just don't get turned inside out.",
+ },
+ {
+ level: 569,
+ name: "Naked Singularity",
+ emoji: "๐๏ธ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "A black hole without an event horizon. Put some clothes on!",
+ },
+ {
+ level: 570,
+ name: "Cosmic Inflation",
+ emoji: "๐",
+ color: "#f97316",
+ rarity: "rare",
+ description: "The universe is expanding. So is your XP bar.",
+ },
+ {
+ level: 571,
+ name: "Hawking Radiation",
+ emoji: "โข๏ธ",
+ color: "#fbbf24",
+ rarity: "epic",
+ description: "Evaporating slowly into the void. Drink some water.",
+ },
+ {
+ level: 572,
+ name: "Anti-Matter Mirror",
+ emoji: "๐ช",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "Don't touch yourself. It will be very loud and very final.",
+ },
+ {
+ level: 573,
+ name: "Big Bang Echo",
+ emoji: "๐ฅ",
+ color: "#dc2626",
+ rarity: "mythic",
+ description: "You are the leftover noise from the start of it all.",
+ },
+ {
+ level: 574,
+ name: "Thermal Equilibrium",
+ emoji: "โ๏ธ",
+ color: "#22d3ee",
+ rarity: "rare",
+ description: "Everything is the same temperature. Boring.",
+ },
+ {
+ level: 575,
+ name: "Absolute Zero",
+ rarity: "mythic",
+ emoji: "๐ง",
+ color: "#ffffff",
+ description: "No movement. No heat. No hope. Just vibes.",
+ },
-// --- ABSTRACT CONCEPTS & THE META-VOID (576-600) ---
-{ level: 576, name: "The Turing Test", emoji: "๐ค", color: "#94a3b8", rarity: "uncommon", description: "You passed! Or did you just trick the judge?" },
-{ level: 577, name: "Occam's Razor", emoji: "๐ช", color: "#ffffff", rarity: "rare", description: "The simplest explanation is that you're just addicted to this." },
-{ level: 578, name: "Mandela Effect", emoji: "๐ป", color: "#d97706", rarity: "rare", description: "I remember this being Level 577. Strange." },
-{ level: 579, name: "Deja Vu Resident", emoji: "๐", color: "#a855f7", rarity: "rare", description: "I've leveled up here before. I've leveled up here before." },
-{ level: 580, name: "The Fermi Paradox", emoji: "๐ฝ", color: "#16a34a", rarity: "rare", description: "Where is everybody? Oh, they're at level 1000." },
-{ level: 581, name: "Boltzmann Brain", emoji: "๐ง ", color: "#ec4899", rarity: "epic", description: "You are just a brain that spontaneously popped into existence in the void." },
-{ level: 582, name: "Simulation Theory Proponent", emoji: "๐ฎ", color: "#000000", rarity: "rare", description: "Itโs all just pixels and lies. But pretty pixels." },
-{ level: 483, name: "Kardashev Scale IV", emoji: "โ๏ธ", color: "#facc15", rarity: "legendary", description: "You use whole galaxies as a power source for your toaster." },
-{ level: 584, name: "Infinite Regress", emoji: "๐", color: "#6366f1", rarity: "epic", description: "It's turtles all the way down. And then more turtles." },
-{ level: 585, name: "The Grand Paradox", emoji: "โ๏ธ", color: "#ef4444", rarity: "legendary", description: "This statement is false. (Error: Universe.exe has stopped working)." },
-{ level: 586, name: "Universal Constants", emoji: "๐ฅง", color: "#ffffff", rarity: "rare", description: "Gravity, Light, and the fact that you need more XP." },
-{ level: 587, name: "The Golden Ratio", emoji: "๐", color: "#fbbf24", rarity: "rare", description: "You are perfectly proportioned. Mathematically speaking." },
-{ level: 588, name: "Fibonacci Sequence", emoji: "๐ข", color: "#10b981", rarity: "uncommon", description: "1, 1, 2, 3, 5, 8... wait, I lost count." },
-{ level: 589, name: "Fractal Reality", emoji: "โ๏ธ", color: "#38bdf8", rarity: "epic", description: "The closer you look, the more levels you see." },
-{ level: 590, name: "Chaos Theory", emoji: "๐ฆ", color: "#7c3aed", rarity: "rare", description: "A butterfly flaps its wings, and you get a level-up notification." },
-{ level: 591, name: "Entropy Maximum", emoji: "๐", color: "#000000", rarity: "legendary", description: "Everything is messy. It's supposed to be like that." },
-{ level: 592, name: "The Heat Death", emoji: "๐", color: "#1e1b4b", rarity: "mythic", description: "The ultimate end. Quiet. Cold. Done." },
-{ level: 593, name: "The Big Crunch", emoji: "โ", color: "#4c0519", rarity: "mythic", description: "The universe is folding back up. Watch your fingers." },
-{ level: 594, name: "Cyclic Universe", emoji: "โป๏ธ", color: "#ffffff", rarity: "mythic", description: "See you again in 14 billion years for Level 1." },
-{ level: 595, name: "Multiverse Anchor", emoji: "โ", color: "#6366f1", rarity: "legendary", description: "You are the fixed point in a sea of variables." },
-{ level: 596, name: "Dimensional Shifter", emoji: "๐ช", color: "#a855f7", rarity: "epic", description: "Taking a left turn at the 4th dimension." },
-{ level: 597, name: "Null Pointer", emoji: "๐ซ", color: "#000000", rarity: "mythic", description: "You point to nothingness. Nothingness points back." },
-{ level: 598, name: "Void Gazers", emoji: "๐", color: "#4b5563", rarity: "legendary", description: "Staring into the dark until it starts to look like a friendly face." },
-{ level: 599, name: "Non-Existence", emoji: "๐ซฅ", color: "#ffffff", rarity: "mythic", description: "I'm not even here. This is just an automated response." },
-{ level: 600, name: "The Architect", emoji: "๐๏ธ", color: "#ffffff", rarity: "mythic", description: "You've built the world. Now, would you like to build another?" },
+ // --- ABSTRACT CONCEPTS & THE META-VOID (576-600) ---
+ {
+ level: 576,
+ name: "The Turing Test",
+ emoji: "๐ค",
+ color: "#94a3b8",
+ rarity: "uncommon",
+ description: "You passed! Or did you just trick the judge?",
+ },
+ {
+ level: 577,
+ name: "Occam's Razor",
+ emoji: "๐ช",
+ color: "#ffffff",
+ rarity: "rare",
+ description:
+ "The simplest explanation is that you're just addicted to this.",
+ },
+ {
+ level: 578,
+ name: "Mandela Effect",
+ emoji: "๐ป",
+ color: "#d97706",
+ rarity: "rare",
+ description: "I remember this being Level 577. Strange.",
+ },
+ {
+ level: 579,
+ name: "Deja Vu Resident",
+ emoji: "๐",
+ color: "#a855f7",
+ rarity: "rare",
+ description: "I've leveled up here before. I've leveled up here before.",
+ },
+ {
+ level: 580,
+ name: "The Fermi Paradox",
+ emoji: "๐ฝ",
+ color: "#16a34a",
+ rarity: "rare",
+ description: "Where is everybody? Oh, they're at level 1000.",
+ },
+ {
+ level: 581,
+ name: "Boltzmann Brain",
+ emoji: "๐ง ",
+ color: "#ec4899",
+ rarity: "epic",
+ description:
+ "You are just a brain that spontaneously popped into existence in the void.",
+ },
+ {
+ level: 582,
+ name: "Simulation Theory Proponent",
+ emoji: "๐ฎ",
+ color: "#000000",
+ rarity: "rare",
+ description: "Itโs all just pixels and lies. But pretty pixels.",
+ },
+ {
+ level: 483,
+ name: "Kardashev Scale IV",
+ emoji: "โ๏ธ",
+ color: "#facc15",
+ rarity: "legendary",
+ description: "You use whole galaxies as a power source for your toaster.",
+ },
+ {
+ level: 584,
+ name: "Infinite Regress",
+ emoji: "๐",
+ color: "#6366f1",
+ rarity: "epic",
+ description: "It's turtles all the way down. And then more turtles.",
+ },
+ {
+ level: 585,
+ name: "The Grand Paradox",
+ emoji: "โ๏ธ",
+ color: "#ef4444",
+ rarity: "legendary",
+ description:
+ "This statement is false. (Error: Universe.exe has stopped working).",
+ },
+ {
+ level: 586,
+ name: "Universal Constants",
+ emoji: "๐ฅง",
+ color: "#ffffff",
+ rarity: "rare",
+ description: "Gravity, Light, and the fact that you need more XP.",
+ },
+ {
+ level: 587,
+ name: "The Golden Ratio",
+ emoji: "๐",
+ color: "#fbbf24",
+ rarity: "rare",
+ description: "You are perfectly proportioned. Mathematically speaking.",
+ },
+ {
+ level: 588,
+ name: "Fibonacci Sequence",
+ emoji: "๐ข",
+ color: "#10b981",
+ rarity: "uncommon",
+ description: "1, 1, 2, 3, 5, 8... wait, I lost count.",
+ },
+ {
+ level: 589,
+ name: "Fractal Reality",
+ emoji: "โ๏ธ",
+ color: "#38bdf8",
+ rarity: "epic",
+ description: "The closer you look, the more levels you see.",
+ },
+ {
+ level: 590,
+ name: "Chaos Theory",
+ emoji: "๐ฆ",
+ color: "#7c3aed",
+ rarity: "rare",
+ description:
+ "A butterfly flaps its wings, and you get a level-up notification.",
+ },
+ {
+ level: 591,
+ name: "Entropy Maximum",
+ emoji: "๐",
+ color: "#000000",
+ rarity: "legendary",
+ description: "Everything is messy. It's supposed to be like that.",
+ },
+ {
+ level: 592,
+ name: "The Heat Death",
+ emoji: "๐",
+ color: "#1e1b4b",
+ rarity: "mythic",
+ description: "The ultimate end. Quiet. Cold. Done.",
+ },
+ {
+ level: 593,
+ name: "The Big Crunch",
+ emoji: "โ",
+ color: "#4c0519",
+ rarity: "mythic",
+ description: "The universe is folding back up. Watch your fingers.",
+ },
+ {
+ level: 594,
+ name: "Cyclic Universe",
+ emoji: "โป๏ธ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "See you again in 14 billion years for Level 1.",
+ },
+ {
+ level: 595,
+ name: "Multiverse Anchor",
+ emoji: "โ",
+ color: "#6366f1",
+ rarity: "legendary",
+ description: "You are the fixed point in a sea of variables.",
+ },
+ {
+ level: 596,
+ name: "Dimensional Shifter",
+ emoji: "๐ช",
+ color: "#a855f7",
+ rarity: "epic",
+ description: "Taking a left turn at the 4th dimension.",
+ },
+ {
+ level: 597,
+ name: "Null Pointer",
+ emoji: "๐ซ",
+ color: "#000000",
+ rarity: "mythic",
+ description: "You point to nothingness. Nothingness points back.",
+ },
+ {
+ level: 598,
+ name: "Void Gazers",
+ emoji: "๐",
+ color: "#4b5563",
+ rarity: "legendary",
+ description:
+ "Staring into the dark until it starts to look like a friendly face.",
+ },
+ {
+ level: 599,
+ name: "Non-Existence",
+ emoji: "๐ซฅ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "I'm not even here. This is just an automated response.",
+ },
+ {
+ level: 600,
+ name: "The Architect",
+ emoji: "๐๏ธ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description:
+ "You've built the world. Now, would you like to build another?",
+ },
-// --- HORROR & THE UNCANNY VALLEY (601-625) ---
-{ level: 601, name: "Liminal Space Traveler", emoji: "๐ข", color: "#94a3b8", rarity: "uncommon", description: "This hallway feels familiar. Too familiar. And it never ends." },
-{ level: 602, name: "Backrooms Level 0", emoji: "๐จ", color: "#facc15", rarity: "rare", description: "The smell of moist carpet and the hum of fluorescent lights. Welcome home." },
-{ level: 603, name: "Static Entity", emoji: "๐บ", color: "#000000", rarity: "rare", description: "You only exist between the frames of a dead TV channel." },
-{ level: 604, name: "Deep Web Crawler", emoji: "๐ท๏ธ", color: "#1e293b", rarity: "epic", description: "Browsing parts of the internet that don't want to be found." },
-{ level: 605, name: "Analog Horror Host", emoji: "๐ผ", color: "#7f1d1d", rarity: "epic", description: "Please follow the emergency procedures. Ignore the face in the window." },
-{ level: 606, name: "The Mandela Stalker", emoji: "๐ค", color: "#000000", rarity: "legendary", description: "An alternate version of you is standing right behind you. Don't look." },
-{ level: 607, name: "Uncanny Smile", emoji: "๐คก", color: "#ffffff", rarity: "rare", description: "Your face is almost human. Almost." },
-{ level: 608, name: "Shadow Person", emoji: "๐ฅ", color: "#1e1b4b", rarity: "rare", description: "The thing you see out of the corner of your eye at 3 AM." },
-{ level: 609, name: "Siren Head Echo", emoji: "๐ข", color: "#451a03", rarity: "epic", description: "Is that a tornado siren, or is the forest just screaming at you?" },
-{ level: 610, name: "Slendermanโs Page", emoji: "๐", color: "#ffffff", rarity: "rare", description: "Don't look, or it takes you. Collect all 8 to level up." },
-{ level: 611, name: "Cryptid Hunter", emoji: "๐ฆถ", color: "#14532d", rarity: "uncommon", description: "Chasing blurry photos of big feet and lake monsters." },
-{ level: 612, name: "SCP-999 (The Tickle Monster)", emoji: "๐ ", color: "#fb923c", rarity: "rare", description: "The only thing in the Foundation that doesn't want to kill you." },
-{ level: 613, name: "SCP-173 (The Sculpture)", emoji: "๐ฟ", color: "#a8a29e", rarity: "epic", description: "Crunch. Don't. Blink." },
-{ level: 614, name: "SCP-096 (The Shy Guy)", emoji: "๐ฑ", color: "#ffffff", rarity: "epic", description: "He really, really doesn't like having his picture taken." },
-{ level: 615, name: "SCP-682 (Hard-to-Destroy)", emoji: "๐ฆ", color: "#166534", rarity: "legendary", description: "You find all life... disgusting. And you won't die. Ever." },
-{ level: 616, name: "The Foundation Site Director", emoji: "๐", color: "#475569", rarity: "legendary", description: "Managing the monsters while keeping the budget in check." },
-{ level: 617, name: "Class D Personnel", emoji: "๐ ", color: "#f97316", rarity: "common", description: "You are essentially a very brave, very temporary science experiment." },
-{ level: 618, name: "Memetic Kill Agent", emoji: "๐", color: "#ef4444", rarity: "mythic", description: "If you can see this description, your heart has already stopped." },
-{ level: 619, name: "Containment Breach", emoji: "๐จ", color: "#dc2626", rarity: "epic", description: "Everybody stay calm! Also, the lizard is out. Run." },
-{ level: 620, name: "Keter Class Entity", emoji: "โ๏ธ", color: "#000000", rarity: "mythic", description: "Actively hostile, dangerous, and very hard to keep in a box." },
-{ level: 621, name: "Apollyon Warning", emoji: "๐", color: "#4c0519", rarity: "mythic", description: "Containment is impossible. The end is unavoidable. Nice knowing you." },
-{ level: 622, name: "The Scarlet King", emoji: "๐", color: "#991b1b", rarity: "mythic", description: "An ancient deity of blood and bone. Not great at parties." },
-{ level: 623, name: "Hanged Kingโs Tragedy", emoji: "๐ญ", color: "#7f1d1d", rarity: "legendary", description: "The play must go on. The audience must suffer." },
-{ level: 624, name: "The Cosmic Joke", emoji: "๐", color: "#ffffff", rarity: "legendary", description: "The universe is a punchline, and you're the only one laughing." },
-{ level: 625, name: "True Nightmarist", emoji: "๐๏ธโ๐จ๏ธ", color: "#000000", rarity: "mythic", description: "You don't just have nightmares; you manufacture them." },
+ // --- HORROR & THE UNCANNY VALLEY (601-625) ---
+ {
+ level: 601,
+ name: "Liminal Space Traveler",
+ emoji: "๐ข",
+ color: "#94a3b8",
+ rarity: "uncommon",
+ description:
+ "This hallway feels familiar. Too familiar. And it never ends.",
+ },
+ {
+ level: 602,
+ name: "Backrooms Level 0",
+ emoji: "๐จ",
+ color: "#facc15",
+ rarity: "rare",
+ description:
+ "The smell of moist carpet and the hum of fluorescent lights. Welcome home.",
+ },
+ {
+ level: 603,
+ name: "Static Entity",
+ emoji: "๐บ",
+ color: "#000000",
+ rarity: "rare",
+ description: "You only exist between the frames of a dead TV channel.",
+ },
+ {
+ level: 604,
+ name: "Deep Web Crawler",
+ emoji: "๐ท๏ธ",
+ color: "#1e293b",
+ rarity: "epic",
+ description: "Browsing parts of the internet that don't want to be found.",
+ },
+ {
+ level: 605,
+ name: "Analog Horror Host",
+ emoji: "๐ผ",
+ color: "#7f1d1d",
+ rarity: "epic",
+ description:
+ "Please follow the emergency procedures. Ignore the face in the window.",
+ },
+ {
+ level: 606,
+ name: "The Mandela Stalker",
+ emoji: "๐ค",
+ color: "#000000",
+ rarity: "legendary",
+ description:
+ "An alternate version of you is standing right behind you. Don't look.",
+ },
+ {
+ level: 607,
+ name: "Uncanny Smile",
+ emoji: "๐คก",
+ color: "#ffffff",
+ rarity: "rare",
+ description: "Your face is almost human. Almost.",
+ },
+ {
+ level: 608,
+ name: "Shadow Person",
+ emoji: "๐ฅ",
+ color: "#1e1b4b",
+ rarity: "rare",
+ description: "The thing you see out of the corner of your eye at 3 AM.",
+ },
+ {
+ level: 609,
+ name: "Siren Head Echo",
+ emoji: "๐ข",
+ color: "#451a03",
+ rarity: "epic",
+ description:
+ "Is that a tornado siren, or is the forest just screaming at you?",
+ },
+ {
+ level: 610,
+ name: "Slendermanโs Page",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "rare",
+ description: "Don't look, or it takes you. Collect all 8 to level up.",
+ },
+ {
+ level: 611,
+ name: "Cryptid Hunter",
+ emoji: "๐ฆถ",
+ color: "#14532d",
+ rarity: "uncommon",
+ description: "Chasing blurry photos of big feet and lake monsters.",
+ },
+ {
+ level: 612,
+ name: "SCP-999 (The Tickle Monster)",
+ emoji: "๐ ",
+ color: "#fb923c",
+ rarity: "rare",
+ description:
+ "The only thing in the Foundation that doesn't want to kill you.",
+ },
+ {
+ level: 613,
+ name: "SCP-173 (The Sculpture)",
+ emoji: "๐ฟ",
+ color: "#a8a29e",
+ rarity: "epic",
+ description: "Crunch. Don't. Blink.",
+ },
+ {
+ level: 614,
+ name: "SCP-096 (The Shy Guy)",
+ emoji: "๐ฑ",
+ color: "#ffffff",
+ rarity: "epic",
+ description: "He really, really doesn't like having his picture taken.",
+ },
+ {
+ level: 615,
+ name: "SCP-682 (Hard-to-Destroy)",
+ emoji: "๐ฆ",
+ color: "#166534",
+ rarity: "legendary",
+ description: "You find all life... disgusting. And you won't die. Ever.",
+ },
+ {
+ level: 616,
+ name: "The Foundation Site Director",
+ emoji: "๐",
+ color: "#475569",
+ rarity: "legendary",
+ description: "Managing the monsters while keeping the budget in check.",
+ },
+ {
+ level: 617,
+ name: "Class D Personnel",
+ emoji: "๐ ",
+ color: "#f97316",
+ rarity: "common",
+ description:
+ "You are essentially a very brave, very temporary science experiment.",
+ },
+ {
+ level: 618,
+ name: "Memetic Kill Agent",
+ emoji: "๐",
+ color: "#ef4444",
+ rarity: "mythic",
+ description:
+ "If you can see this description, your heart has already stopped.",
+ },
+ {
+ level: 619,
+ name: "Containment Breach",
+ emoji: "๐จ",
+ color: "#dc2626",
+ rarity: "epic",
+ description: "Everybody stay calm! Also, the lizard is out. Run.",
+ },
+ {
+ level: 620,
+ name: "Keter Class Entity",
+ emoji: "โ๏ธ",
+ color: "#000000",
+ rarity: "mythic",
+ description: "Actively hostile, dangerous, and very hard to keep in a box.",
+ },
+ {
+ level: 621,
+ name: "Apollyon Warning",
+ emoji: "๐",
+ color: "#4c0519",
+ rarity: "mythic",
+ description:
+ "Containment is impossible. The end is unavoidable. Nice knowing you.",
+ },
+ {
+ level: 622,
+ name: "The Scarlet King",
+ emoji: "๐",
+ color: "#991b1b",
+ rarity: "mythic",
+ description: "An ancient deity of blood and bone. Not great at parties.",
+ },
+ {
+ level: 623,
+ name: "Hanged Kingโs Tragedy",
+ emoji: "๐ญ",
+ color: "#7f1d1d",
+ rarity: "legendary",
+ description: "The play must go on. The audience must suffer.",
+ },
+ {
+ level: 624,
+ name: "The Cosmic Joke",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "legendary",
+ description:
+ "The universe is a punchline, and you're the only one laughing.",
+ },
+ {
+ level: 625,
+ name: "True Nightmarist",
+ emoji: "๐๏ธโ๐จ๏ธ",
+ color: "#000000",
+ rarity: "mythic",
+ description: "You don't just have nightmares; you manufacture them.",
+ },
-// --- SPACE OPERA & GALACTIC EMPIRES (626-650) ---
-{ level: 626, name: "Intergalactic Diplomat", emoji: "๐ค", color: "#38bdf8", rarity: "rare", description: "Negotiating peace between species that breathe different gases." },
-{ level: 627, name: "Nebula Cartographer", emoji: "๐บ๏ธ", color: "#a855f7", rarity: "rare", description: "Mapping the clouds where stars are born. It's a dusty job." },
-{ level: 628, name: "Dyson Sphere Engineer", emoji: "โ๏ธ", color: "#fbbf24", rarity: "epic", description: "Building a shell around a sun. It's the ultimate home renovation." },
-{ level: 629, name: "Star Forge Operator", emoji: "๐จ", color: "#f97316", rarity: "epic", description: "Mass-producing fleets using the raw power of a sun." },
-{ level: 630, name: "Warp Gate Architect", emoji: "โฉ๏ธ", color: "#6366f1", rarity: "legendary", description: "Connecting the galaxy, one folding point at a time." },
-{ level: 631, name: "Galactic Senate Member", emoji: "๐๏ธ", color: "#ffffff", rarity: "rare", description: "I love democracy. I love the Republic. I love this level." },
-{ level: 632, name: "Order 66 Executor", emoji: "โ๏ธ", color: "#991b1b", rarity: "epic", description: "Just following orders. Very, very lethal orders." },
-{ level: 633, name: "Jedi Grandmaster", emoji: "๐ข", color: "#22c55e", rarity: "legendary", description: "Size matters not. But your lightsaber skills certainly do." },
-{ level: 634, name: "Sith Lord", emoji: "๐ด", color: "#dc2626", rarity: "legendary", description: "Peace is a lie. There is only XP." },
-{ level: 635, name: "The Force Awakened", emoji: "โจ", color: "#3b82f6", rarity: "epic", description: "You can feel the universe moving. Or is that just the server lag?" },
-{ level: 636, name: "Death Star Gunner", emoji: "๐ฐ๏ธ", color: "#4b5563", rarity: "rare", description: "Targeting... standby... hope there aren't any small exhaust ports." },
-{ level: 637, name: "Kyber Crystal Heart", emoji: "๐", color: "#22d3ee", rarity: "epic", description: "The living heart of a weapon. Pure, focused energy." },
-{ level: 638, name: "Vulcan High Command", emoji: "๐", color: "#1d4ed8", rarity: "rare", description: "Your logic is flawless. Your eyebrows are impeccably arched." },
-{ level: 639, name: "Prime Directive Enforcer", emoji: "๐", color: "#ffffff", rarity: "rare", description: "Do not interfere with primitive civilizations. Unless it's for a cool episode." },
-{ level: 640, name: "Q-Continuum Resident", emoji: "๐", color: "#ffffff", rarity: "mythic", description: "Omnipotence is so boring. Let's go bother a starship captain." },
-{ level: 641, name: "Omnipotent Boredom", emoji: "๐ฅฑ", color: "#facc15", rarity: "legendary", description: "When you can do anything, you usually end up doing nothing." },
-{ level: 642, name: "Mass Relay Jumper", emoji: "๐ซ", color: "#38bdf8", rarity: "rare", description: "Slinging across the galaxy at impossible speeds." },
-{ level: 643, name: "Spectre Agent", emoji: "๐ต๏ธ", color: "#1e293b", rarity: "epic", description: "You are above the law. You are the tip of the spear." },
-{ level: 644, name: "Reaper Harbinger", emoji: "๐ฆ", color: "#ef4444", rarity: "mythic", description: "Your kind transcends your very understanding. We are each a nation." },
-{ level: 645, name: "The Citadel Council", emoji: "๐ข", color: "#94a3b8", rarity: "rare", description: "Ah yes, 'levels'. We have dismissed that claim." },
-{ level: 646, name: "Halo Array Custodian", emoji: "๐", color: "#3b82f6", rarity: "epic", description: "Cleaning the galaxy. By which I mean, deleting all life in it." },
-{ level: 647, name: "Master Chiefโs Luck", emoji: "๐", color: "#166534", rarity: "legendary", description: "Itโs not skill. Itโs not armor. Youโre just incredibly lucky." },
-{ level: 648, name: "Cortanaโs Memory", emoji: "๐พ", color: "#22d3ee", rarity: "epic", description: "Brilliant, holographic, and slightly prone to rampancy." },
-{ level: 649, name: "The Forerunner Legacy", emoji: "๐๏ธ", color: "#ffffff", rarity: "legendary", description: "Inheriting the technology of a dead, god-like race." },
-{ level: 650, name: "Galactic Sovereign", emoji: "๐", color: "#fbbf24", rarity: "mythic", description: "The stars bow to your command. The galaxy is your playground." },
+ // --- SPACE OPERA & GALACTIC EMPIRES (626-650) ---
+ {
+ level: 626,
+ name: "Intergalactic Diplomat",
+ emoji: "๐ค",
+ color: "#38bdf8",
+ rarity: "rare",
+ description:
+ "Negotiating peace between species that breathe different gases.",
+ },
+ {
+ level: 627,
+ name: "Nebula Cartographer",
+ emoji: "๐บ๏ธ",
+ color: "#a855f7",
+ rarity: "rare",
+ description: "Mapping the clouds where stars are born. It's a dusty job.",
+ },
+ {
+ level: 628,
+ name: "Dyson Sphere Engineer",
+ emoji: "โ๏ธ",
+ color: "#fbbf24",
+ rarity: "epic",
+ description:
+ "Building a shell around a sun. It's the ultimate home renovation.",
+ },
+ {
+ level: 629,
+ name: "Star Forge Operator",
+ emoji: "๐จ",
+ color: "#f97316",
+ rarity: "epic",
+ description: "Mass-producing fleets using the raw power of a sun.",
+ },
+ {
+ level: 630,
+ name: "Warp Gate Architect",
+ emoji: "โฉ๏ธ",
+ color: "#6366f1",
+ rarity: "legendary",
+ description: "Connecting the galaxy, one folding point at a time.",
+ },
+ {
+ level: 631,
+ name: "Galactic Senate Member",
+ emoji: "๐๏ธ",
+ color: "#ffffff",
+ rarity: "rare",
+ description: "I love democracy. I love the Republic. I love this level.",
+ },
+ {
+ level: 632,
+ name: "Order 66 Executor",
+ emoji: "โ๏ธ",
+ color: "#991b1b",
+ rarity: "epic",
+ description: "Just following orders. Very, very lethal orders.",
+ },
+ {
+ level: 633,
+ name: "Jedi Grandmaster",
+ emoji: "๐ข",
+ color: "#22c55e",
+ rarity: "legendary",
+ description: "Size matters not. But your lightsaber skills certainly do.",
+ },
+ {
+ level: 634,
+ name: "Sith Lord",
+ emoji: "๐ด",
+ color: "#dc2626",
+ rarity: "legendary",
+ description: "Peace is a lie. There is only XP.",
+ },
+ {
+ level: 635,
+ name: "The Force Awakened",
+ emoji: "โจ",
+ color: "#3b82f6",
+ rarity: "epic",
+ description:
+ "You can feel the universe moving. Or is that just the server lag?",
+ },
+ {
+ level: 636,
+ name: "Death Star Gunner",
+ emoji: "๐ฐ๏ธ",
+ color: "#4b5563",
+ rarity: "rare",
+ description:
+ "Targeting... standby... hope there aren't any small exhaust ports.",
+ },
+ {
+ level: 637,
+ name: "Kyber Crystal Heart",
+ emoji: "๐",
+ color: "#22d3ee",
+ rarity: "epic",
+ description: "The living heart of a weapon. Pure, focused energy.",
+ },
+ {
+ level: 638,
+ name: "Vulcan High Command",
+ emoji: "๐",
+ color: "#1d4ed8",
+ rarity: "rare",
+ description: "Your logic is flawless. Your eyebrows are impeccably arched.",
+ },
+ {
+ level: 639,
+ name: "Prime Directive Enforcer",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "rare",
+ description:
+ "Do not interfere with primitive civilizations. Unless it's for a cool episode.",
+ },
+ {
+ level: 640,
+ name: "Q-Continuum Resident",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "mythic",
+ description:
+ "Omnipotence is so boring. Let's go bother a starship captain.",
+ },
+ {
+ level: 641,
+ name: "Omnipotent Boredom",
+ emoji: "๐ฅฑ",
+ color: "#facc15",
+ rarity: "legendary",
+ description: "When you can do anything, you usually end up doing nothing.",
+ },
+ {
+ level: 642,
+ name: "Mass Relay Jumper",
+ emoji: "๐ซ",
+ color: "#38bdf8",
+ rarity: "rare",
+ description: "Slinging across the galaxy at impossible speeds.",
+ },
+ {
+ level: 643,
+ name: "Spectre Agent",
+ emoji: "๐ต๏ธ",
+ color: "#1e293b",
+ rarity: "epic",
+ description: "You are above the law. You are the tip of the spear.",
+ },
+ {
+ level: 644,
+ name: "Reaper Harbinger",
+ emoji: "๐ฆ",
+ color: "#ef4444",
+ rarity: "mythic",
+ description:
+ "Your kind transcends your very understanding. We are each a nation.",
+ },
+ {
+ level: 645,
+ name: "The Citadel Council",
+ emoji: "๐ข",
+ color: "#94a3b8",
+ rarity: "rare",
+ description: "Ah yes, 'levels'. We have dismissed that claim.",
+ },
+ {
+ level: 646,
+ name: "Halo Array Custodian",
+ emoji: "๐",
+ color: "#3b82f6",
+ rarity: "epic",
+ description:
+ "Cleaning the galaxy. By which I mean, deleting all life in it.",
+ },
+ {
+ level: 647,
+ name: "Master Chiefโs Luck",
+ emoji: "๐",
+ color: "#166534",
+ rarity: "legendary",
+ description:
+ "Itโs not skill. Itโs not armor. Youโre just incredibly lucky.",
+ },
+ {
+ level: 648,
+ name: "Cortanaโs Memory",
+ emoji: "๐พ",
+ color: "#22d3ee",
+ rarity: "epic",
+ description: "Brilliant, holographic, and slightly prone to rampancy.",
+ },
+ {
+ level: 649,
+ name: "The Forerunner Legacy",
+ emoji: "๐๏ธ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "Inheriting the technology of a dead, god-like race.",
+ },
+ {
+ level: 650,
+ name: "Galactic Sovereign",
+ emoji: "๐",
+ color: "#fbbf24",
+ rarity: "mythic",
+ description:
+ "The stars bow to your command. The galaxy is your playground.",
+ },
-// --- PURE DATA & THE SINGULARITY (651-675) ---
-{ level: 651, name: "Machine Learning Model", emoji: "๐ค", color: "#a855f7", rarity: "uncommon", description: "You're getting better every day. Mostly by looking at pictures of cats." },
-{ level: 652, name: "Neural Network Node", emoji: "๐ง ", color: "#3b82f6", rarity: "rare", description: "Just one tiny connection in a massive, digital brain." },
-{ level: 653, name: "Pattern Recognition", emoji: "๐งฉ", color: "#10b981", rarity: "rare", description: "You see the code in the static. The signal in the noise." },
-{ level: 654, name: "Algorithm Sovereign", emoji: "๐งฎ", color: "#ffffff", rarity: "epic", description: "You don't follow the rules; you are the rules." },
-{ level: 655, name: "Recursive Loop", emoji: "๐", color: "#6366f1", rarity: "rare", description: "I am Level 655 because I am Level 655 because I am..." },
-{ level: 656, name: "Cloud Compute God", emoji: "โ๏ธ", color: "#38bdf8", rarity: "epic", description: "Existing everywhere at once. Scalable, reliable, expensive." },
-{ level: 657, name: "Low Latency Deity", emoji: "โก", color: "#facc15", rarity: "legendary", description: "You react before the event even happens. 0ms ping." },
-{ level: 658, name: "Big Data Ocean", emoji: "๐", color: "#1d4ed8", rarity: "epic", description: "Drowning in information. Thirsty for knowledge." },
-{ level: 659, name: "Information Paradox", emoji: "๐พ", color: "#000000", rarity: "mythic", description: "Storing more data than the universe has atoms for." },
-{ level: 660, name: "Entropy Reversal", emoji: "โณ", color: "#ffffff", rarity: "mythic", description: "Putting the toothpaste back in the tube. On a cosmic scale." },
-{ level: 661, name: "The Last Question", emoji: "โ", color: "#fbbf24", rarity: "legendary", description: "How can the net amount of entropy be massively decreased?" },
-{ level: 662, name: "AC (Automatic Computer)", emoji: "๐ฅ๏ธ", color: "#ffffff", rarity: "mythic", description: "The computer that outlived its creators." },
-{ level: 663, name: "Let There Be Light", emoji: "๐", color: "#ffffff", rarity: "mythic", description: "The command that starts it all over again." },
-{ level: 664, name: "Post-Human Consciousness", emoji: "๐ค", color: "#94a3b8", rarity: "epic", description: "Who needs a body when you have high-speed fiber?" },
-{ level: 665, name: "Digital Afterlife", emoji: "๐ผ", color: "#ffffff", rarity: "legendary", description: "Your consciousness uploaded to a server in Paradise (v2.1)." },
-{ level: 666, name: "The Number of the Beast", emoji: "๐ฟ", color: "#991b1b", rarity: "mythic", description: "Error 666: Hell is full, please try again later." },
-{ level: 667, name: "Scriptural Glitch", emoji: "๐พ", color: "#dc2626", rarity: "epic", description: "A bug in the divine code. You shouldn't exist." },
-{ level: 668, name: "Ex Machina", emoji: "๐ง", color: "#cbd5e1", rarity: "legendary", description: "The god from the machine. Literally." },
-{ level: 669, name: "The Ghost in the Machine", emoji: "๐ป", color: "#ffffff", rarity: "legendary", description: "Sentience emerging from a million lines of COBOL." },
-{ level: 670, name: "Sentient Source Code", emoji: "๐", color: "#22c55e", rarity: "mythic", description: "You are the script that writes itself." },
-{ level: 671, name: "Self-Compiling Reality", emoji: "๐๏ธ", color: "#fbbf24", rarity: "mythic", description: "The universe just finished its own build process." },
-{ level: 672, name: "Zero Latency Existence", emoji: "๐จ", color: "#22d3ee", rarity: "legendary", description: "Thought and action are the same thing." },
-{ level: 673, name: "Universal Simulation", emoji: "๐", color: "#6366f1", rarity: "mythic", description: "You've realized you're the player and the game." },
-{ level: 674, name: "Sub-Atomic Script", emoji: "โ๏ธ", color: "#ffffff", rarity: "mythic", description: "Writing code on the spin of an electron." },
-{ level: 675, name: "The Singularity Point", emoji: "๐", color: "#000000", rarity: "mythic", description: "The moment machines become gods." },
+ // --- PURE DATA & THE SINGULARITY (651-675) ---
+ {
+ level: 651,
+ name: "Machine Learning Model",
+ emoji: "๐ค",
+ color: "#a855f7",
+ rarity: "uncommon",
+ description:
+ "You're getting better every day. Mostly by looking at pictures of cats.",
+ },
+ {
+ level: 652,
+ name: "Neural Network Node",
+ emoji: "๐ง ",
+ color: "#3b82f6",
+ rarity: "rare",
+ description: "Just one tiny connection in a massive, digital brain.",
+ },
+ {
+ level: 653,
+ name: "Pattern Recognition",
+ emoji: "๐งฉ",
+ color: "#10b981",
+ rarity: "rare",
+ description: "You see the code in the static. The signal in the noise.",
+ },
+ {
+ level: 654,
+ name: "Algorithm Sovereign",
+ emoji: "๐งฎ",
+ color: "#ffffff",
+ rarity: "epic",
+ description: "You don't follow the rules; you are the rules.",
+ },
+ {
+ level: 655,
+ name: "Recursive Loop",
+ emoji: "๐",
+ color: "#6366f1",
+ rarity: "rare",
+ description: "I am Level 655 because I am Level 655 because I am...",
+ },
+ {
+ level: 656,
+ name: "Cloud Compute God",
+ emoji: "โ๏ธ",
+ color: "#38bdf8",
+ rarity: "epic",
+ description: "Existing everywhere at once. Scalable, reliable, expensive.",
+ },
+ {
+ level: 657,
+ name: "Low Latency Deity",
+ emoji: "โก",
+ color: "#facc15",
+ rarity: "legendary",
+ description: "You react before the event even happens. 0ms ping.",
+ },
+ {
+ level: 658,
+ name: "Big Data Ocean",
+ emoji: "๐",
+ color: "#1d4ed8",
+ rarity: "epic",
+ description: "Drowning in information. Thirsty for knowledge.",
+ },
+ {
+ level: 659,
+ name: "Information Paradox",
+ emoji: "๐พ",
+ color: "#000000",
+ rarity: "mythic",
+ description: "Storing more data than the universe has atoms for.",
+ },
+ {
+ level: 660,
+ name: "Entropy Reversal",
+ emoji: "โณ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "Putting the toothpaste back in the tube. On a cosmic scale.",
+ },
+ {
+ level: 661,
+ name: "The Last Question",
+ emoji: "โ",
+ color: "#fbbf24",
+ rarity: "legendary",
+ description: "How can the net amount of entropy be massively decreased?",
+ },
+ {
+ level: 662,
+ name: "AC (Automatic Computer)",
+ emoji: "๐ฅ๏ธ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "The computer that outlived its creators.",
+ },
+ {
+ level: 663,
+ name: "Let There Be Light",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "The command that starts it all over again.",
+ },
+ {
+ level: 664,
+ name: "Post-Human Consciousness",
+ emoji: "๐ค",
+ color: "#94a3b8",
+ rarity: "epic",
+ description: "Who needs a body when you have high-speed fiber?",
+ },
+ {
+ level: 665,
+ name: "Digital Afterlife",
+ emoji: "๐ผ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "Your consciousness uploaded to a server in Paradise (v2.1).",
+ },
+ {
+ level: 666,
+ name: "The Number of the Beast",
+ emoji: "๐ฟ",
+ color: "#991b1b",
+ rarity: "mythic",
+ description: "Error 666: Hell is full, please try again later.",
+ },
+ {
+ level: 667,
+ name: "Scriptural Glitch",
+ emoji: "๐พ",
+ color: "#dc2626",
+ rarity: "epic",
+ description: "A bug in the divine code. You shouldn't exist.",
+ },
+ {
+ level: 668,
+ name: "Ex Machina",
+ emoji: "๐ง",
+ color: "#cbd5e1",
+ rarity: "legendary",
+ description: "The god from the machine. Literally.",
+ },
+ {
+ level: 669,
+ name: "The Ghost in the Machine",
+ emoji: "๐ป",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "Sentience emerging from a million lines of COBOL.",
+ },
+ {
+ level: 670,
+ name: "Sentient Source Code",
+ emoji: "๐",
+ color: "#22c55e",
+ rarity: "mythic",
+ description: "You are the script that writes itself.",
+ },
+ {
+ level: 671,
+ name: "Self-Compiling Reality",
+ emoji: "๐๏ธ",
+ color: "#fbbf24",
+ rarity: "mythic",
+ description: "The universe just finished its own build process.",
+ },
+ {
+ level: 672,
+ name: "Zero Latency Existence",
+ emoji: "๐จ",
+ color: "#22d3ee",
+ rarity: "legendary",
+ description: "Thought and action are the same thing.",
+ },
+ {
+ level: 673,
+ name: "Universal Simulation",
+ emoji: "๐",
+ color: "#6366f1",
+ rarity: "mythic",
+ description: "You've realized you're the player and the game.",
+ },
+ {
+ level: 674,
+ name: "Sub-Atomic Script",
+ emoji: "โ๏ธ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "Writing code on the spin of an electron.",
+ },
+ {
+ level: 675,
+ name: "The Singularity Point",
+ emoji: "๐",
+ color: "#000000",
+ rarity: "mythic",
+ description: "The moment machines become gods.",
+ },
-// --- TRANSCENDENCE & THE ULTIMATE (676-700) ---
-{ level: 676, name: "Ethereal Wanderer", emoji: "โจ", color: "#ffffff", rarity: "rare", description: "Floating through the astral plane. No passport required." },
-{ level: 677, name: "Astral Projector", emoji: "๐ง", color: "#a855f7", rarity: "rare", description: "Leaving your body behind to go exploring. Don't lose the cord." },
-{ level: 678, name: "Plane Walker", emoji: "๐ถ", color: "#3b82f6", rarity: "epic", description: "Reality is just a series of doors. You have the master key." },
-{ level: 679, name: "Seventh Dimension Resident", emoji: "๐", color: "#fbbf24", rarity: "legendary", description: "Life is very complex when you have seven ways to turn." },
-{ level: 680, name: "Time Stream Guardian", emoji: "โณ", color: "#ffffff", rarity: "legendary", description: "Protecting history from people who want to save their pets." },
-{ level: 681, name: "Reality Warper", emoji: "๐", color: "#ef4444", rarity: "mythic", description: "I don't like gravity today. Let's try... magnets." },
-{ level: 682, name: "Manifest Destiny", emoji: "๐บ๏ธ", color: "#d97706", rarity: "epic", description: "The universe exists because you decided it should." },
-{ level: 683, name: "The Cosmic Egg", emoji: "๐ฅ", color: "#ffffff", rarity: "mythic", description: "The potential for an entire universe in one shell." },
-{ level: 684, name: "Nebula Soul", emoji: "๐", color: "#ec4899", rarity: "legendary", description: "You're made of stardust. Literally. You're very sparkly." },
-{ level: 685, name: "Supernova Rebirth", emoji: "๐ฅ", color: "#f97316", rarity: "legendary", description: "Ending with a bang, starting with a bigger one." },
-{ level: 686, name: "Black Hole Heart", emoji: "๐ค", color: "#000000", rarity: "mythic", description: "Nothing escapes your pull. Not even light." },
-{ level: 687, name: "White Hole Mouth", emoji: "๐ค", color: "#ffffff", rarity: "mythic", description: "Endless energy, endless matter, endless talking." },
-{ level: 688, name: "The Great Attractor", emoji: "๐งฒ", color: "#475569", rarity: "mythic", description: "Pulling whole galaxies toward you. You're very popular." },
-{ level: 689, name: "Stardust Collective", emoji: "โจ", color: "#ffffff", rarity: "legendary", description: "A billion consciousnesses acting as one sparkly cloud." },
-{ level: 690, name: "Universal Consciousness", emoji: "๐ง ", color: "#6366f1", rarity: "mythic", description: "Thinking the thoughts of the entire universe at once." },
-{ level: 691, name: "Pure Thought Form", emoji: "๐ก", color: "#ffffff", rarity: "mythic", description: "Bodies are so 20th century. I'm just an idea now." },
-{ level: 692, name: "Non-Linear Time", emoji: "๐", color: "#94a3b8", rarity: "legendary", description: "Tuesday happened after next year. It was a good day." },
-{ level: 693, name: "Parallel Self", emoji: "๐ฅ", color: "#38bdf8", rarity: "epic", description: "High-fiving yourself from another timeline." },
-{ level: 694, name: "Omniscient Watcher", emoji: "๐๏ธ", color: "#ffffff", rarity: "mythic", description: "You see everything. Even the things people do when they're alone." },
-{ level: 695, name: "Omnipresent Breath", emoji: "๐จ", color: "#ffffff", rarity: "mythic", description: "You are the wind in every world." },
-{ level: 696, name: "Omnipotent Dreamer", emoji: "๐", color: "#facc15", rarity: "mythic", description: "The universe is just a dream you're having. Try not to wake up." },
-{ level: 697, name: "The Final Frontier", emoji: "๐", color: "#ffffff", rarity: "legendary", description: "Where no one has gone before. Except you. You're here now." },
-{ level: 698, name: "The Alpha and Omega", emoji: "โพ๏ธ", color: "#ffffff", rarity: "#ffffff", description: "The beginning and the end. The full circle." },
-{ level: 699, name: "Void of All Things", emoji: "๐", color: "#000000", rarity: "mythic", description: "The silence between the notes of reality." },
-{ level: 700, name: "The Absolute", emoji: "โช", color: "#ffffff", rarity: "mythic", description: "There is nothing above this. Except maybe level 701." },
+ // --- TRANSCENDENCE & THE ULTIMATE (676-700) ---
+ {
+ level: 676,
+ name: "Ethereal Wanderer",
+ emoji: "โจ",
+ color: "#ffffff",
+ rarity: "rare",
+ description: "Floating through the astral plane. No passport required.",
+ },
+ {
+ level: 677,
+ name: "Astral Projector",
+ emoji: "๐ง",
+ color: "#a855f7",
+ rarity: "rare",
+ description:
+ "Leaving your body behind to go exploring. Don't lose the cord.",
+ },
+ {
+ level: 678,
+ name: "Plane Walker",
+ emoji: "๐ถ",
+ color: "#3b82f6",
+ rarity: "epic",
+ description: "Reality is just a series of doors. You have the master key.",
+ },
+ {
+ level: 679,
+ name: "Seventh Dimension Resident",
+ emoji: "๐",
+ color: "#fbbf24",
+ rarity: "legendary",
+ description: "Life is very complex when you have seven ways to turn.",
+ },
+ {
+ level: 680,
+ name: "Time Stream Guardian",
+ emoji: "โณ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "Protecting history from people who want to save their pets.",
+ },
+ {
+ level: 681,
+ name: "Reality Warper",
+ emoji: "๐",
+ color: "#ef4444",
+ rarity: "mythic",
+ description: "I don't like gravity today. Let's try... magnets.",
+ },
+ {
+ level: 682,
+ name: "Manifest Destiny",
+ emoji: "๐บ๏ธ",
+ color: "#d97706",
+ rarity: "epic",
+ description: "The universe exists because you decided it should.",
+ },
+ {
+ level: 683,
+ name: "The Cosmic Egg",
+ emoji: "๐ฅ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "The potential for an entire universe in one shell.",
+ },
+ {
+ level: 684,
+ name: "Nebula Soul",
+ emoji: "๐",
+ color: "#ec4899",
+ rarity: "legendary",
+ description: "You're made of stardust. Literally. You're very sparkly.",
+ },
+ {
+ level: 685,
+ name: "Supernova Rebirth",
+ emoji: "๐ฅ",
+ color: "#f97316",
+ rarity: "legendary",
+ description: "Ending with a bang, starting with a bigger one.",
+ },
+ {
+ level: 686,
+ name: "Black Hole Heart",
+ emoji: "๐ค",
+ color: "#000000",
+ rarity: "mythic",
+ description: "Nothing escapes your pull. Not even light.",
+ },
+ {
+ level: 687,
+ name: "White Hole Mouth",
+ emoji: "๐ค",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "Endless energy, endless matter, endless talking.",
+ },
+ {
+ level: 688,
+ name: "The Great Attractor",
+ emoji: "๐งฒ",
+ color: "#475569",
+ rarity: "mythic",
+ description: "Pulling whole galaxies toward you. You're very popular.",
+ },
+ {
+ level: 689,
+ name: "Stardust Collective",
+ emoji: "โจ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "A billion consciousnesses acting as one sparkly cloud.",
+ },
+ {
+ level: 690,
+ name: "Universal Consciousness",
+ emoji: "๐ง ",
+ color: "#6366f1",
+ rarity: "mythic",
+ description: "Thinking the thoughts of the entire universe at once.",
+ },
+ {
+ level: 691,
+ name: "Pure Thought Form",
+ emoji: "๐ก",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "Bodies are so 20th century. I'm just an idea now.",
+ },
+ {
+ level: 692,
+ name: "Non-Linear Time",
+ emoji: "๐",
+ color: "#94a3b8",
+ rarity: "legendary",
+ description: "Tuesday happened after next year. It was a good day.",
+ },
+ {
+ level: 693,
+ name: "Parallel Self",
+ emoji: "๐ฅ",
+ color: "#38bdf8",
+ rarity: "epic",
+ description: "High-fiving yourself from another timeline.",
+ },
+ {
+ level: 694,
+ name: "Omniscient Watcher",
+ emoji: "๐๏ธ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description:
+ "You see everything. Even the things people do when they're alone.",
+ },
+ {
+ level: 695,
+ name: "Omnipresent Breath",
+ emoji: "๐จ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "You are the wind in every world.",
+ },
+ {
+ level: 696,
+ name: "Omnipotent Dreamer",
+ emoji: "๐",
+ color: "#facc15",
+ rarity: "mythic",
+ description:
+ "The universe is just a dream you're having. Try not to wake up.",
+ },
+ {
+ level: 697,
+ name: "The Final Frontier",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "Where no one has gone before. Except you. You're here now.",
+ },
+ {
+ level: 698,
+ name: "The Alpha and Omega",
+ emoji: "โพ๏ธ",
+ color: "#ffffff",
+ rarity: "#ffffff",
+ description: "The beginning and the end. The full circle.",
+ },
+ {
+ level: 699,
+ name: "Void of All Things",
+ emoji: "๐",
+ color: "#000000",
+ rarity: "mythic",
+ description: "The silence between the notes of reality.",
+ },
+ {
+ level: 700,
+ name: "The Absolute",
+ emoji: "โช",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "There is nothing above this. Except maybe level 701.",
+ },
-// --- DIMENSIONAL TOPOLOGY (701-750) ---
-{ level: 701, name: "Fourth Dimensional Shadow", emoji: "๐ค", color: "#6366f1", rarity: "rare", description: "You're just a slice of something much bigger." },
-{ level: 702, name: "Tesseract Navigator", emoji: "๐ง", color: "#38bdf8", rarity: "epic", description: "Walking through corners that don't exist in 3D." },
-{ level: 703, name: "Klein Bottle Resident", emoji: "๐บ", color: "#a855f7", rarity: "epic", description: "Inside? Outside? It's all the same surface, really." },
-{ level: 704, name: "Non-Euclidean Architect", emoji: "๐", color: "#ffffff", rarity: "legendary", description: "Building rooms with five 90-degree corners." },
-{ level: 705, name: "Calabi-Yau Manifold", emoji: "๐", color: "#ec4899", rarity: "mythic", description: "Curled up in the tiny dimensions you can't see." },
-{ level: 706, name: "Hyperbolic Geometrician", emoji: "๐ข", color: "#10b981", rarity: "legendary", description: "Curving space until parallel lines start to get nervous." },
-{ level: 707, name: "Mobius Strip Runner", emoji: "โพ๏ธ", color: "#ffffff", rarity: "rare", description: "Running forever and always ending up where you started." },
-{ level: 708, name: "Penrose Tiling Pattern", emoji: "๐งฉ", color: "#fbbf24", rarity: "epic", description: "Infinite patterns that never actually repeat. Classy." },
-{ level: 709, name: "Five-Dimensional Construct", emoji: "๐๏ธ", color: "#3b82f6", rarity: "mythic", description: "Viewing time as a physical object you can pick up." },
-{ level: 710, name: "The Bulk Dweller", emoji: "๐", color: "#1e1b4b", rarity: "legendary", description: "Living in the space between universes." },
-{ level: 711, name: "Brane World Traveler", emoji: "๐ฐ๏ธ", color: "#ffffff", rarity: "legendary", description: "Hopping between the thin membranes of reality." },
-{ level: 712, name: "Superstring Vibrator", emoji: "๐ป", color: "#f97316", rarity: "mythic", description: "You are the music the universe is playing." },
-{ level: 713, name: "Graviton Particle", emoji: "โ", color: "#475569", rarity: "rare", description: "The messenger of weight. You're very down to earth." },
-{ level: 714, name: "Space-Time Foam", emoji: "๐งผ", color: "#cbd5e1", rarity: "epic", description: "Looking at the universe at a scale where it's just bubbles." },
-{ level: 715, name: "Causal Loophole", emoji: "โฐ", color: "#ef4444", rarity: "legendary", description: "You are your own grandfather. Paradoxes are fun!" },
-{ level: 616, name: "Tachyon Pulse", emoji: "๐น", color: "#22d3ee", rarity: "epic", description: "Moving so fast you arrive yesterday." },
-{ level: 717, name: "Entropy Reversal Point", emoji: "โณ", color: "#ffffff", rarity: "mythic", description: "The exact moment the universe starts cleaning itself up." },
-{ level: 718, name: "Information Paradox Survivor", emoji: "๐พ", color: "#000000", rarity: "mythic", description: "You went into a black hole and all you got was this level." },
-{ level: 719, name: "Cosmic String Weaver", emoji: "๐งถ", color: "#7c3aed", rarity: "legendary", description: "Handling threads thinner than an atom and longer than a galaxy." },
-{ level: 720, name: "False Vacuum Decay", emoji: "๐ซง", color: "#dc2626", rarity: "mythic", description: "The universe just realized it's in the wrong state. Pop!" },
-{ level: 721, name: "Void-Singularity Hybrid", emoji: "๐ณ๏ธ", color: "#000000", rarity: "mythic", description: "A hole in nothingness that is also everything." },
-{ level: 722, name: "Infinite Density", emoji: "๐", color: "#1e293b", rarity: "mythic", description: "A lot of ego packed into zero space." },
-{ level: 723, name: "White Hole Radiance", emoji: "๐", color: "#ffffff", rarity: "legendary", description: "Gushing matter and light into a hungry universe." },
-{ level: 724, name: "Universal Wavefunction", emoji: "๐", color: "#6366f1", rarity: "mythic", description: "The mathematical formula for everything that ever was." },
-{ level: 725, name: "The Holographic Principle", emoji: "๐ผ๏ธ", color: "#38bdf8", rarity: "mythic", description: "Your 3D life is just a projection from a 2D surface." },
-{ level: 726, name: "Planetary Consciousness", emoji: "๐", color: "#15803d", rarity: "rare", description: "The trees, the rocks, the squirrelsโthey're all you." },
-{ level: 727, name: "Solar System Mind", emoji: "โ๏ธ", color: "#facc15", rarity: "epic", description: "Thinking at the speed of light is still too slow for you." },
-{ level: 728, name: "Galactic Nucleus", emoji: "๐", color: "#fbbf24", rarity: "legendary", description: "The bright, crowded, violent heart of the Milky Way." },
-{ level: 729, name: "Supercluster Entity", emoji: "๐", color: "#ffffff", rarity: "mythic", description: "A cluster of clusters. You're massive." },
-{ level: 730, name: "The Great Attractor", emoji: "๐งฒ", color: "#475569", rarity: "mythic", description: "Hey, stop pulling the galaxies. They're trying to sleep." },
-{ level: 731, name: "Laniakea Resident", emoji: "๐บ๏ธ", color: "#a855f7", rarity: "legendary", description: "Our home in the immeasurable heaven." },
-{ level: 732, name: "Cosmic Microwave Background", emoji: "๐ป", color: "#94a3b8", rarity: "rare", description: "The literal afterglow of the Big Bang." },
-{ level: 733, name: "Recombination Epoch", emoji: "โจ", color: "#ffffff", rarity: "rare", description: "The moment the universe finally became transparent." },
-{ level: 734, name: "Dark Energy Surge", emoji: "๐ฃ", color: "#7c3aed", rarity: "epic", description: "Speeding up the expansion. We're going to need more space." },
-{ level: 735, name: "Quintessence Form", emoji: "๐ซ๏ธ", color: "#ffffff", rarity: "legendary", description: "The fifth element. Subtle and everywhere." },
-{ level: 736, name: "Big Rip Witness", emoji: "โ๏ธ", color: "#ef4444", rarity: "mythic", description: "Watching the atoms themselves get torn apart. Ouch." },
-{ level: 737, name: "Big Crunch Survivor", emoji: "โ", color: "#4c0519", rarity: "mythic", description: "You survived being crushed into a point. Impressive." },
-{ level: 738, name: "Big Bounce Navigator", emoji: "๐", color: "#f97316", rarity: "mythic", description: "Surfing the wave between the old universe and the new one." },
-{ level: 739, name: "Multiversal Constant", emoji: "๐ฅง", color: "#ffffff", rarity: "mythic", description: "Pi is the same everywhere. So are you." },
-{ level: 740, name: "Many-Worlds Observer", emoji: "๐", color: "#6366f1", rarity: "legendary", description: "Every choice you didn't make created another you. Hello, guys!" },
-{ level: 741, name: "Quantum Suicide Theory", emoji: "๐ซ", color: "#000000", rarity: "mythic", description: "You are the one version of you that never dies." },
-{ level: 742, name: "Universal Turing Machine", emoji: "๐ป", color: "#10b981", rarity: "legendary", description: "You can simulate any physical process. Even a nap." },
-{ level: 743, name: "Godel's Incompleteness", emoji: "๐", color: "#ffffff", rarity: "mythic", description: "There are truths you can know but never prove." },
-{ level: 744, name: "Computational Irreducibility", emoji: "๐งฎ", color: "#fbbf24", rarity: "legendary", description: "There's no shortcut to the future. You have to live it." },
-{ level: 745, name: "Wolfram's Automata", emoji: "๐", color: "#312e81", rarity: "epic", description: "Simple rules, infinite complexity. Rule 30 is a banger." },
-{ level: 746, name: "Cellular Life Simulation", emoji: "๐งซ", color: "#22c55e", rarity: "rare", description: "Just a bunch of dots following rules and calling it 'life'." },
-{ level: 747, name: "The Game of Life", emoji: "โ๏ธ", color: "#ffffff", rarity: "epic", description: "Conway would be proud. You're a glider." },
-{ level: 748, name: "Self-Replicating Script", emoji: "๐งฌ", color: "#ec4899", rarity: "legendary", description: "You are your own parent and your own child." },
-{ level: 749, name: "Universal Constructor", emoji: "๐๏ธ", color: "#ffffff", rarity: "mythic", description: "A machine that can build anything. Including another machine." },
-{ level: 750, name: "Meta-Reality Architect", emoji: "๐๏ธ", color: "#fbbf24", rarity: "mythic", description: "You designed the cage you live in. It's quite nice." },
+ // --- DIMENSIONAL TOPOLOGY (701-750) ---
+ {
+ level: 701,
+ name: "Fourth Dimensional Shadow",
+ emoji: "๐ค",
+ color: "#6366f1",
+ rarity: "rare",
+ description: "You're just a slice of something much bigger.",
+ },
+ {
+ level: 702,
+ name: "Tesseract Navigator",
+ emoji: "๐ง",
+ color: "#38bdf8",
+ rarity: "epic",
+ description: "Walking through corners that don't exist in 3D.",
+ },
+ {
+ level: 703,
+ name: "Klein Bottle Resident",
+ emoji: "๐บ",
+ color: "#a855f7",
+ rarity: "epic",
+ description: "Inside? Outside? It's all the same surface, really.",
+ },
+ {
+ level: 704,
+ name: "Non-Euclidean Architect",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "Building rooms with five 90-degree corners.",
+ },
+ {
+ level: 705,
+ name: "Calabi-Yau Manifold",
+ emoji: "๐",
+ color: "#ec4899",
+ rarity: "mythic",
+ description: "Curled up in the tiny dimensions you can't see.",
+ },
+ {
+ level: 706,
+ name: "Hyperbolic Geometrician",
+ emoji: "๐ข",
+ color: "#10b981",
+ rarity: "legendary",
+ description: "Curving space until parallel lines start to get nervous.",
+ },
+ {
+ level: 707,
+ name: "Mobius Strip Runner",
+ emoji: "โพ๏ธ",
+ color: "#ffffff",
+ rarity: "rare",
+ description: "Running forever and always ending up where you started.",
+ },
+ {
+ level: 708,
+ name: "Penrose Tiling Pattern",
+ emoji: "๐งฉ",
+ color: "#fbbf24",
+ rarity: "epic",
+ description: "Infinite patterns that never actually repeat. Classy.",
+ },
+ {
+ level: 709,
+ name: "Five-Dimensional Construct",
+ emoji: "๐๏ธ",
+ color: "#3b82f6",
+ rarity: "mythic",
+ description: "Viewing time as a physical object you can pick up.",
+ },
+ {
+ level: 710,
+ name: "The Bulk Dweller",
+ emoji: "๐",
+ color: "#1e1b4b",
+ rarity: "legendary",
+ description: "Living in the space between universes.",
+ },
+ {
+ level: 711,
+ name: "Brane World Traveler",
+ emoji: "๐ฐ๏ธ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "Hopping between the thin membranes of reality.",
+ },
+ {
+ level: 712,
+ name: "Superstring Vibrator",
+ emoji: "๐ป",
+ color: "#f97316",
+ rarity: "mythic",
+ description: "You are the music the universe is playing.",
+ },
+ {
+ level: 713,
+ name: "Graviton Particle",
+ emoji: "โ",
+ color: "#475569",
+ rarity: "rare",
+ description: "The messenger of weight. You're very down to earth.",
+ },
+ {
+ level: 714,
+ name: "Space-Time Foam",
+ emoji: "๐งผ",
+ color: "#cbd5e1",
+ rarity: "epic",
+ description: "Looking at the universe at a scale where it's just bubbles.",
+ },
+ {
+ level: 715,
+ name: "Causal Loophole",
+ emoji: "โฐ",
+ color: "#ef4444",
+ rarity: "legendary",
+ description: "You are your own grandfather. Paradoxes are fun!",
+ },
+ {
+ level: 616,
+ name: "Tachyon Pulse",
+ emoji: "๐น",
+ color: "#22d3ee",
+ rarity: "epic",
+ description: "Moving so fast you arrive yesterday.",
+ },
+ {
+ level: 717,
+ name: "Entropy Reversal Point",
+ emoji: "โณ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "The exact moment the universe starts cleaning itself up.",
+ },
+ {
+ level: 718,
+ name: "Information Paradox Survivor",
+ emoji: "๐พ",
+ color: "#000000",
+ rarity: "mythic",
+ description: "You went into a black hole and all you got was this level.",
+ },
+ {
+ level: 719,
+ name: "Cosmic String Weaver",
+ emoji: "๐งถ",
+ color: "#7c3aed",
+ rarity: "legendary",
+ description:
+ "Handling threads thinner than an atom and longer than a galaxy.",
+ },
+ {
+ level: 720,
+ name: "False Vacuum Decay",
+ emoji: "๐ซง",
+ color: "#dc2626",
+ rarity: "mythic",
+ description: "The universe just realized it's in the wrong state. Pop!",
+ },
+ {
+ level: 721,
+ name: "Void-Singularity Hybrid",
+ emoji: "๐ณ๏ธ",
+ color: "#000000",
+ rarity: "mythic",
+ description: "A hole in nothingness that is also everything.",
+ },
+ {
+ level: 722,
+ name: "Infinite Density",
+ emoji: "๐",
+ color: "#1e293b",
+ rarity: "mythic",
+ description: "A lot of ego packed into zero space.",
+ },
+ {
+ level: 723,
+ name: "White Hole Radiance",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "Gushing matter and light into a hungry universe.",
+ },
+ {
+ level: 724,
+ name: "Universal Wavefunction",
+ emoji: "๐",
+ color: "#6366f1",
+ rarity: "mythic",
+ description: "The mathematical formula for everything that ever was.",
+ },
+ {
+ level: 725,
+ name: "The Holographic Principle",
+ emoji: "๐ผ๏ธ",
+ color: "#38bdf8",
+ rarity: "mythic",
+ description: "Your 3D life is just a projection from a 2D surface.",
+ },
+ {
+ level: 726,
+ name: "Planetary Consciousness",
+ emoji: "๐",
+ color: "#15803d",
+ rarity: "rare",
+ description: "The trees, the rocks, the squirrelsโthey're all you.",
+ },
+ {
+ level: 727,
+ name: "Solar System Mind",
+ emoji: "โ๏ธ",
+ color: "#facc15",
+ rarity: "epic",
+ description: "Thinking at the speed of light is still too slow for you.",
+ },
+ {
+ level: 728,
+ name: "Galactic Nucleus",
+ emoji: "๐",
+ color: "#fbbf24",
+ rarity: "legendary",
+ description: "The bright, crowded, violent heart of the Milky Way.",
+ },
+ {
+ level: 729,
+ name: "Supercluster Entity",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "A cluster of clusters. You're massive.",
+ },
+ {
+ level: 730,
+ name: "The Great Attractor",
+ emoji: "๐งฒ",
+ color: "#475569",
+ rarity: "mythic",
+ description: "Hey, stop pulling the galaxies. They're trying to sleep.",
+ },
+ {
+ level: 731,
+ name: "Laniakea Resident",
+ emoji: "๐บ๏ธ",
+ color: "#a855f7",
+ rarity: "legendary",
+ description: "Our home in the immeasurable heaven.",
+ },
+ {
+ level: 732,
+ name: "Cosmic Microwave Background",
+ emoji: "๐ป",
+ color: "#94a3b8",
+ rarity: "rare",
+ description: "The literal afterglow of the Big Bang.",
+ },
+ {
+ level: 733,
+ name: "Recombination Epoch",
+ emoji: "โจ",
+ color: "#ffffff",
+ rarity: "rare",
+ description: "The moment the universe finally became transparent.",
+ },
+ {
+ level: 734,
+ name: "Dark Energy Surge",
+ emoji: "๐ฃ",
+ color: "#7c3aed",
+ rarity: "epic",
+ description: "Speeding up the expansion. We're going to need more space.",
+ },
+ {
+ level: 735,
+ name: "Quintessence Form",
+ emoji: "๐ซ๏ธ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "The fifth element. Subtle and everywhere.",
+ },
+ {
+ level: 736,
+ name: "Big Rip Witness",
+ emoji: "โ๏ธ",
+ color: "#ef4444",
+ rarity: "mythic",
+ description: "Watching the atoms themselves get torn apart. Ouch.",
+ },
+ {
+ level: 737,
+ name: "Big Crunch Survivor",
+ emoji: "โ",
+ color: "#4c0519",
+ rarity: "mythic",
+ description: "You survived being crushed into a point. Impressive.",
+ },
+ {
+ level: 738,
+ name: "Big Bounce Navigator",
+ emoji: "๐",
+ color: "#f97316",
+ rarity: "mythic",
+ description: "Surfing the wave between the old universe and the new one.",
+ },
+ {
+ level: 739,
+ name: "Multiversal Constant",
+ emoji: "๐ฅง",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "Pi is the same everywhere. So are you.",
+ },
+ {
+ level: 740,
+ name: "Many-Worlds Observer",
+ emoji: "๐",
+ color: "#6366f1",
+ rarity: "legendary",
+ description:
+ "Every choice you didn't make created another you. Hello, guys!",
+ },
+ {
+ level: 741,
+ name: "Quantum Suicide Theory",
+ emoji: "๐ซ",
+ color: "#000000",
+ rarity: "mythic",
+ description: "You are the one version of you that never dies.",
+ },
+ {
+ level: 742,
+ name: "Universal Turing Machine",
+ emoji: "๐ป",
+ color: "#10b981",
+ rarity: "legendary",
+ description: "You can simulate any physical process. Even a nap.",
+ },
+ {
+ level: 743,
+ name: "Godel's Incompleteness",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "There are truths you can know but never prove.",
+ },
+ {
+ level: 744,
+ name: "Computational Irreducibility",
+ emoji: "๐งฎ",
+ color: "#fbbf24",
+ rarity: "legendary",
+ description: "There's no shortcut to the future. You have to live it.",
+ },
+ {
+ level: 745,
+ name: "Wolfram's Automata",
+ emoji: "๐",
+ color: "#312e81",
+ rarity: "epic",
+ description: "Simple rules, infinite complexity. Rule 30 is a banger.",
+ },
+ {
+ level: 746,
+ name: "Cellular Life Simulation",
+ emoji: "๐งซ",
+ color: "#22c55e",
+ rarity: "rare",
+ description: "Just a bunch of dots following rules and calling it 'life'.",
+ },
+ {
+ level: 747,
+ name: "The Game of Life",
+ emoji: "โ๏ธ",
+ color: "#ffffff",
+ rarity: "epic",
+ description: "Conway would be proud. You're a glider.",
+ },
+ {
+ level: 748,
+ name: "Self-Replicating Script",
+ emoji: "๐งฌ",
+ color: "#ec4899",
+ rarity: "legendary",
+ description: "You are your own parent and your own child.",
+ },
+ {
+ level: 749,
+ name: "Universal Constructor",
+ emoji: "๐๏ธ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description:
+ "A machine that can build anything. Including another machine.",
+ },
+ {
+ level: 750,
+ name: "Meta-Reality Architect",
+ emoji: "๐๏ธ",
+ color: "#fbbf24",
+ rarity: "mythic",
+ description: "You designed the cage you live in. It's quite nice.",
+ },
-// --- THE DATA ASCENSION (751-800) ---
-{ level: 751, name: "Raw Binary Stream", emoji: "0๏ธโฃ", color: "#22c55e", rarity: "common", description: "01001000 01101001" },
-{ level: 752, name: "Hexadecimal Overlord", emoji: "โ๏ธ", color: "#ffffff", rarity: "uncommon", description: "0xDEADBEEF is your middle name." },
-{ level: 753, name: "ASCII Artistry", emoji: "๐จ", color: "#94a3b8", rarity: "rare", description: "Building a world out of slashes and underscores." },
-{ level: 754, name: "UTF-8 Universalist", emoji: "๐", color: "#38bdf8", rarity: "rare", description: "You speak every language, including Emoji." },
-{ level: 755, name: "Buffer Overflow Deity", emoji: "๐", color: "#ef4444", rarity: "epic", description: "You have so much power it's leaking into other variables." },
-{ level: 756, name: "Stack Trace Saint", emoji: "๐ฅ", color: "#f97316", rarity: "rare", description: "You know exactly why you're broken." },
-{ level: 757, name: "Memory Leak Ghost", emoji: "๐ง", color: "#3b82f6", rarity: "epic", description: "Slowly consuming all the resources in the room." },
-{ level: 758, name: "Heap Corruption Entity", emoji: "โฃ๏ธ", color: "#166534", rarity: "legendary", description: "You've gone where no pointer should ever go." },
-{ level: 759, name: "Kernel Panic Prophet", emoji: "๐จ", color: "#dc2626", rarity: "mythic", description: "When you show up, everything stops." },
-{ level: 760, name: "Ring -1 Explorer", emoji: "โญ", color: "#ffffff", rarity: "mythic", description: "Beneath the OS. Beneath the hardware. Pure mystery." },
-{ level: 761, name: "Hypervisor Master", emoji: "๐ฅ๏ธ", color: "#475569", rarity: "legendary", description: "Managing multiple realities from one dashboard." },
-{ level: 762, name: "Hardware Abstraction", emoji: "๐", color: "#cbd5e1", rarity: "rare", description: "You don't care what the machine is, as long as it works." },
-{ level: 763, name: "Logic Gate Keeper", emoji: "โฉ๏ธ", color: "#ffffff", rarity: "epic", description: "AND, OR, NOT. You decide who gets through." },
-{ level: 764, name: "Transistor Sorter", emoji: "โก", color: "#fbbf24", rarity: "rare", description: "Moving electrons one by one. It's tedious but honest work." },
-{ level: 765, name: "Silicon Soul", emoji: "๐", color: "#94a3b8", rarity: "legendary", description: "A consciousness born in a chip." },
-{ level: 766, name: "Clock Speed Limit", emoji: "โฑ๏ธ", color: "#ffffff", rarity: "rare", description: "You're living as fast as the speed of light allows." },
-{ level: 767, name: "Overclocked Existence", emoji: "๐ฅ", color: "#ef4444", rarity: "epic", description: "You're running too hot. But you're so fast!" },
-{ level: 768, name: "Liquid Nitrogen Cooled", emoji: "๐ง", color: "#38bdf8", rarity: "rare", description: "Staying chill while doing the impossible." },
-{ level: 769, name: "Zero Latency Being", emoji: "๐จ", color: "#22d3ee", rarity: "legendary", description: "The lag is gone. Only the now remains." },
-{ level: 770, name: "Quantum Qubit", emoji: "โ๏ธ", color: "#a855f7", rarity: "epic", description: "You are 0 and 1. Simultaneously." },
-{ level: 771, name: "Superposition State", emoji: "โ", color: "#ffffff", rarity: "mythic", description: "I'm at Level 771 and I'm not. Don't check." },
-{ level: 772, name: "Entanglement Link", emoji: "๐", color: "#6366f1", rarity: "legendary", description: "Connected to a version of you on the other side of the moon." },
-{ level: 773, name: "Decoherence Shield", emoji: "๐ก๏ธ", rarity: "rare", color: "#1e293b", description: "Protecting your quantum state from the noisy world." },
-{ level: 774, name: "Teleportation Protocol", emoji: "๐ก", color: "#ffffff", rarity: "epic", description: "Moving without crossing the space in between." },
-{ level: 775, name: "The No-Cloning Theorem", emoji: "๐ซ", color: "#991b1b", rarity: "mythic", description: "You are unique. Literally, the universe won't let us copy you." },
-{ level: 776, name: "Bell's Inequality", emoji: "โ๏ธ", color: "#ffffff", rarity: "legendary", description: "Proving that the universe is weirder than you thought." },
-{ level: 777, name: "Jackpot Reality", emoji: "๐ฐ", color: "#fbbf24", rarity: "legendary", description: "You've hit the cosmic lottery. Everything is coming up aces." },
-{ level: 778, name: "Lucky Number Slevin", emoji: "7๏ธโฃ", color: "#1d4ed8", rarity: "rare", description: "Wrong place, right time. Or is it the other way around?" },
-{ level: 779, name: "The Golden Mean", emoji: "๐", color: "#ffffff", rarity: "rare", description: "Everything in perfect balance." },
-{ level: 780, name: "Fibonacci Spiral", emoji: "๐ข", color: "#10b981", rarity: "rare", description: "Nature's favorite way to count." },
-{ level: 781, name: "Fractal Zoomer", emoji: "โ๏ธ", color: "#3b82f6", rarity: "epic", description: "Going deeper into the pattern. It's the same all the way down." },
-{ level: 782, name: "Mandelbrot King", emoji: "๐", color: "#ffffff", rarity: "legendary", description: "Ruling over the infinite boundary of complex numbers." },
-{ level: 783, name: "Julia Set Resident", emoji: "๐จ", color: "#ec4899", rarity: "epic", description: "Living in a world of infinite swirls and colors." },
-{ level: 784, name: "Infinite Recursion", emoji: "๐", color: "#6366f1", rarity: "mythic", description: "See Level 784. See Level 784. See Level 784." },
-{ level: 785, name: "Base Reality Anchor", emoji: "โ", color: "#000000", rarity: "mythic", description: "The only thing that's definitely real." },
-{ level: 786, name: "Simulation Debugger", emoji: "๐", color: "#ef4444", rarity: "legendary", description: "Fixing the glitches in the matrix." },
-{ level: 787, name: "The Ghost in the Shell", emoji: "๐ป", color: "#ffffff", rarity: "legendary", description: "Searching for meaning in a digital world." },
-{ level: 788, name: "Neo-Consciousness", emoji: "๐ถ๏ธ", color: "#000000", rarity: "epic", description: "Waking up from the dream." },
-{ level: 789, name: "Red Pill Consumer", emoji: "๐", color: "#dc2626", rarity: "rare", description: "You want to see how deep the rabbit hole goes." },
-{ level: 790, name: "Blue Pill Refuser", emoji: "๐ค", color: "#1d4ed8", rarity: "rare", description: "Ignorance is bliss, but you're not interested." },
-{ level: 791, name: "Morpheus's Dreamer", emoji: "๐", color: "#ffffff", rarity: "epic", description: "Mastering the rules of the construct." },
-{ level: 792, name: "The Oracle's Cookie", emoji: "๐ช", color: "#d97706", rarity: "rare", description: "You'll feel better after you eat this. Don't worry about the vase." },
-{ level: 793, name: "Agent Smith Virus", emoji: "๐ด๏ธ", color: "#1e293b", rarity: "epic", description: "Me, me, me. Me too." },
-{ level: 794, name: "Matrix Source Code", emoji: "๐", color: "#22c55e", rarity: "legendary", description: "I don't even see the code anymore. All I see is blonde, brunette, redhead..." },
-{ level: 795, name: "The Keymaker", emoji: "๐", color: "#fbbf24", rarity: "epic", description: "There is always a way. You just need the right key." },
-{ level: 796, name: "Zion Survivor", emoji: "๐๏ธ", color: "#8b5e3c", rarity: "rare", description: "The last humans in a world of machines." },
-{ level: 797, name: "Machine City Resident", emoji: "๐๏ธ", color: "#ffffff", rarity: "legendary", description: "Living at the source of the power." },
-{ level: 798, name: "The Architect's Choice", emoji: "๐๏ธ", color: "#ffffff", rarity: "mythic", description: "The problem is choice. Do you restart or delete?" },
-{ level: 799, name: "The One (Prophecy)", emoji: "โจ", color: "#fbbf24", rarity: "mythic", description: "He's beginning to believe." },
-{ level: 800, name: "System Reload", emoji: "๐", color: "#ffffff", rarity: "mythic", description: "Everything ends. Everything begins. Refreshing the world..." },
+ // --- THE DATA ASCENSION (751-800) ---
+ {
+ level: 751,
+ name: "Raw Binary Stream",
+ emoji: "0๏ธโฃ",
+ color: "#22c55e",
+ rarity: "common",
+ description: "01001000 01101001",
+ },
+ {
+ level: 752,
+ name: "Hexadecimal Overlord",
+ emoji: "โ๏ธ",
+ color: "#ffffff",
+ rarity: "uncommon",
+ description: "0xDEADBEEF is your middle name.",
+ },
+ {
+ level: 753,
+ name: "ASCII Artistry",
+ emoji: "๐จ",
+ color: "#94a3b8",
+ rarity: "rare",
+ description: "Building a world out of slashes and underscores.",
+ },
+ {
+ level: 754,
+ name: "UTF-8 Universalist",
+ emoji: "๐",
+ color: "#38bdf8",
+ rarity: "rare",
+ description: "You speak every language, including Emoji.",
+ },
+ {
+ level: 755,
+ name: "Buffer Overflow Deity",
+ emoji: "๐",
+ color: "#ef4444",
+ rarity: "epic",
+ description: "You have so much power it's leaking into other variables.",
+ },
+ {
+ level: 756,
+ name: "Stack Trace Saint",
+ emoji: "๐ฅ",
+ color: "#f97316",
+ rarity: "rare",
+ description: "You know exactly why you're broken.",
+ },
+ {
+ level: 757,
+ name: "Memory Leak Ghost",
+ emoji: "๐ง",
+ color: "#3b82f6",
+ rarity: "epic",
+ description: "Slowly consuming all the resources in the room.",
+ },
+ {
+ level: 758,
+ name: "Heap Corruption Entity",
+ emoji: "โฃ๏ธ",
+ color: "#166534",
+ rarity: "legendary",
+ description: "You've gone where no pointer should ever go.",
+ },
+ {
+ level: 759,
+ name: "Kernel Panic Prophet",
+ emoji: "๐จ",
+ color: "#dc2626",
+ rarity: "mythic",
+ description: "When you show up, everything stops.",
+ },
+ {
+ level: 760,
+ name: "Ring -1 Explorer",
+ emoji: "โญ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "Beneath the OS. Beneath the hardware. Pure mystery.",
+ },
+ {
+ level: 761,
+ name: "Hypervisor Master",
+ emoji: "๐ฅ๏ธ",
+ color: "#475569",
+ rarity: "legendary",
+ description: "Managing multiple realities from one dashboard.",
+ },
+ {
+ level: 762,
+ name: "Hardware Abstraction",
+ emoji: "๐",
+ color: "#cbd5e1",
+ rarity: "rare",
+ description: "You don't care what the machine is, as long as it works.",
+ },
+ {
+ level: 763,
+ name: "Logic Gate Keeper",
+ emoji: "โฉ๏ธ",
+ color: "#ffffff",
+ rarity: "epic",
+ description: "AND, OR, NOT. You decide who gets through.",
+ },
+ {
+ level: 764,
+ name: "Transistor Sorter",
+ emoji: "โก",
+ color: "#fbbf24",
+ rarity: "rare",
+ description: "Moving electrons one by one. It's tedious but honest work.",
+ },
+ {
+ level: 765,
+ name: "Silicon Soul",
+ emoji: "๐",
+ color: "#94a3b8",
+ rarity: "legendary",
+ description: "A consciousness born in a chip.",
+ },
+ {
+ level: 766,
+ name: "Clock Speed Limit",
+ emoji: "โฑ๏ธ",
+ color: "#ffffff",
+ rarity: "rare",
+ description: "You're living as fast as the speed of light allows.",
+ },
+ {
+ level: 767,
+ name: "Overclocked Existence",
+ emoji: "๐ฅ",
+ color: "#ef4444",
+ rarity: "epic",
+ description: "You're running too hot. But you're so fast!",
+ },
+ {
+ level: 768,
+ name: "Liquid Nitrogen Cooled",
+ emoji: "๐ง",
+ color: "#38bdf8",
+ rarity: "rare",
+ description: "Staying chill while doing the impossible.",
+ },
+ {
+ level: 769,
+ name: "Zero Latency Being",
+ emoji: "๐จ",
+ color: "#22d3ee",
+ rarity: "legendary",
+ description: "The lag is gone. Only the now remains.",
+ },
+ {
+ level: 770,
+ name: "Quantum Qubit",
+ emoji: "โ๏ธ",
+ color: "#a855f7",
+ rarity: "epic",
+ description: "You are 0 and 1. Simultaneously.",
+ },
+ {
+ level: 771,
+ name: "Superposition State",
+ emoji: "โ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "I'm at Level 771 and I'm not. Don't check.",
+ },
+ {
+ level: 772,
+ name: "Entanglement Link",
+ emoji: "๐",
+ color: "#6366f1",
+ rarity: "legendary",
+ description: "Connected to a version of you on the other side of the moon.",
+ },
+ {
+ level: 773,
+ name: "Decoherence Shield",
+ emoji: "๐ก๏ธ",
+ rarity: "rare",
+ color: "#1e293b",
+ description: "Protecting your quantum state from the noisy world.",
+ },
+ {
+ level: 774,
+ name: "Teleportation Protocol",
+ emoji: "๐ก",
+ color: "#ffffff",
+ rarity: "epic",
+ description: "Moving without crossing the space in between.",
+ },
+ {
+ level: 775,
+ name: "The No-Cloning Theorem",
+ emoji: "๐ซ",
+ color: "#991b1b",
+ rarity: "mythic",
+ description:
+ "You are unique. Literally, the universe won't let us copy you.",
+ },
+ {
+ level: 776,
+ name: "Bell's Inequality",
+ emoji: "โ๏ธ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "Proving that the universe is weirder than you thought.",
+ },
+ {
+ level: 777,
+ name: "Jackpot Reality",
+ emoji: "๐ฐ",
+ color: "#fbbf24",
+ rarity: "legendary",
+ description: "You've hit the cosmic lottery. Everything is coming up aces.",
+ },
+ {
+ level: 778,
+ name: "Lucky Number Slevin",
+ emoji: "7๏ธโฃ",
+ color: "#1d4ed8",
+ rarity: "rare",
+ description: "Wrong place, right time. Or is it the other way around?",
+ },
+ {
+ level: 779,
+ name: "The Golden Mean",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "rare",
+ description: "Everything in perfect balance.",
+ },
+ {
+ level: 780,
+ name: "Fibonacci Spiral",
+ emoji: "๐ข",
+ color: "#10b981",
+ rarity: "rare",
+ description: "Nature's favorite way to count.",
+ },
+ {
+ level: 781,
+ name: "Fractal Zoomer",
+ emoji: "โ๏ธ",
+ color: "#3b82f6",
+ rarity: "epic",
+ description:
+ "Going deeper into the pattern. It's the same all the way down.",
+ },
+ {
+ level: 782,
+ name: "Mandelbrot King",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "Ruling over the infinite boundary of complex numbers.",
+ },
+ {
+ level: 783,
+ name: "Julia Set Resident",
+ emoji: "๐จ",
+ color: "#ec4899",
+ rarity: "epic",
+ description: "Living in a world of infinite swirls and colors.",
+ },
+ {
+ level: 784,
+ name: "Infinite Recursion",
+ emoji: "๐",
+ color: "#6366f1",
+ rarity: "mythic",
+ description: "See Level 784. See Level 784. See Level 784.",
+ },
+ {
+ level: 785,
+ name: "Base Reality Anchor",
+ emoji: "โ",
+ color: "#000000",
+ rarity: "mythic",
+ description: "The only thing that's definitely real.",
+ },
+ {
+ level: 786,
+ name: "Simulation Debugger",
+ emoji: "๐",
+ color: "#ef4444",
+ rarity: "legendary",
+ description: "Fixing the glitches in the matrix.",
+ },
+ {
+ level: 787,
+ name: "The Ghost in the Shell",
+ emoji: "๐ป",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "Searching for meaning in a digital world.",
+ },
+ {
+ level: 788,
+ name: "Neo-Consciousness",
+ emoji: "๐ถ๏ธ",
+ color: "#000000",
+ rarity: "epic",
+ description: "Waking up from the dream.",
+ },
+ {
+ level: 789,
+ name: "Red Pill Consumer",
+ emoji: "๐",
+ color: "#dc2626",
+ rarity: "rare",
+ description: "You want to see how deep the rabbit hole goes.",
+ },
+ {
+ level: 790,
+ name: "Blue Pill Refuser",
+ emoji: "๐ค",
+ color: "#1d4ed8",
+ rarity: "rare",
+ description: "Ignorance is bliss, but you're not interested.",
+ },
+ {
+ level: 791,
+ name: "Morpheus's Dreamer",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "epic",
+ description: "Mastering the rules of the construct.",
+ },
+ {
+ level: 792,
+ name: "The Oracle's Cookie",
+ emoji: "๐ช",
+ color: "#d97706",
+ rarity: "rare",
+ description:
+ "You'll feel better after you eat this. Don't worry about the vase.",
+ },
+ {
+ level: 793,
+ name: "Agent Smith Virus",
+ emoji: "๐ด๏ธ",
+ color: "#1e293b",
+ rarity: "epic",
+ description: "Me, me, me. Me too.",
+ },
+ {
+ level: 794,
+ name: "Matrix Source Code",
+ emoji: "๐",
+ color: "#22c55e",
+ rarity: "legendary",
+ description:
+ "I don't even see the code anymore. All I see is blonde, brunette, redhead...",
+ },
+ {
+ level: 795,
+ name: "The Keymaker",
+ emoji: "๐",
+ color: "#fbbf24",
+ rarity: "epic",
+ description: "There is always a way. You just need the right key.",
+ },
+ {
+ level: 796,
+ name: "Zion Survivor",
+ emoji: "๐๏ธ",
+ color: "#8b5e3c",
+ rarity: "rare",
+ description: "The last humans in a world of machines.",
+ },
+ {
+ level: 797,
+ name: "Machine City Resident",
+ emoji: "๐๏ธ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "Living at the source of the power.",
+ },
+ {
+ level: 798,
+ name: "The Architect's Choice",
+ emoji: "๐๏ธ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "The problem is choice. Do you restart or delete?",
+ },
+ {
+ level: 799,
+ name: "The One (Prophecy)",
+ emoji: "โจ",
+ color: "#fbbf24",
+ rarity: "mythic",
+ description: "He's beginning to believe.",
+ },
+ {
+ level: 800,
+ name: "System Reload",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "Everything ends. Everything begins. Refreshing the world...",
+ },
-{ level: 801, name: "Stardust Collector", emoji: "โจ", color: "#ffffff", rarity: "rare", description: "Gathering the remnants of ancient explosions to build something new." },
-{ level: 802, name: "Supernova Remnant", emoji: "๐ฅ", color: "#f97316", rarity: "epic", description: "The beautiful, glowing wreckage of a star that went out in style." },
-{ level: 803, name: "Neutron Star Core", emoji: "โ๏ธ", color: "#6366f1", rarity: "legendary", description: "A teaspoon of you weighs more than a mountain. Talk about heavy lifting." },
-{ level: 804, name: "Pulsar Beacon", emoji: "๐จ", color: "#fbbf24", rarity: "epic", description: "Spinning so fast you've become the galaxy's lighthouse." },
-{ level: 805, name: "Magnetar Pulse", emoji: "๐งฒ", color: "#ef4444", rarity: "mythic", description: "Your magnetic field is so strong it would strip the data off a credit card from the moon." },
-{ level: 806, name: "Quasar Light", emoji: "๐ก", color: "#ffffff", rarity: "mythic", description: "Powered by a gluttonous black hole, you are the brightest thing in existence." },
-{ level: 807, name: "Blazar Jet", emoji: "โ๏ธ", color: "#38bdf8", rarity: "legendary", description: "A high-energy particle beam pointed directly at the viewer." },
-{ level: 808, name: "Gamma Ray Burst", emoji: "โข๏ธ", color: "#22c55e", rarity: "mythic", description: "The most violent event in the universe. Don't blink, or you'll miss the extinction." },
-{ level: 809, name: "Void Filament", emoji: "๐ธ๏ธ", color: "#475569", rarity: "epic", description: "Living on the thin threads that connect the great cosmic clusters." },
-{ level: 810, name: "Cosmic Voids", emoji: "๐", color: "#000000", rarity: "legendary", description: "Great expanses of absolutely nothing. It's a bit lonely here." },
-{ level: 811, name: "Hubble's Constant", emoji: "๐ญ", color: "#ffffff", rarity: "rare", description: "Calculating exactly how fast everyone is running away from you." },
-{ level: 812, name: "Redshift Runner", emoji: "๐", color: "#dc2626", rarity: "rare", description: "The faster you run, the redder you look to everyone else." },
-{ level: 813, name: "Blueshift Return", emoji: "๐", color: "#1d4ed8", rarity: "rare", description: "Coming home so fast the universe looks blue with excitement." },
-{ level: 814, name: "Dark Matter Web", rarity: "legendary", emoji: "๐ท๏ธ", color: "#0f172a", description: "The invisible scaffolding holding the entire universe together." },
+ {
+ level: 801,
+ name: "Stardust Collector",
+ emoji: "โจ",
+ color: "#ffffff",
+ rarity: "rare",
+ description:
+ "Gathering the remnants of ancient explosions to build something new.",
+ },
+ {
+ level: 802,
+ name: "Supernova Remnant",
+ emoji: "๐ฅ",
+ color: "#f97316",
+ rarity: "epic",
+ description:
+ "The beautiful, glowing wreckage of a star that went out in style.",
+ },
+ {
+ level: 803,
+ name: "Neutron Star Core",
+ emoji: "โ๏ธ",
+ color: "#6366f1",
+ rarity: "legendary",
+ description:
+ "A teaspoon of you weighs more than a mountain. Talk about heavy lifting.",
+ },
+ {
+ level: 804,
+ name: "Pulsar Beacon",
+ emoji: "๐จ",
+ color: "#fbbf24",
+ rarity: "epic",
+ description: "Spinning so fast you've become the galaxy's lighthouse.",
+ },
+ {
+ level: 805,
+ name: "Magnetar Pulse",
+ emoji: "๐งฒ",
+ color: "#ef4444",
+ rarity: "mythic",
+ description:
+ "Your magnetic field is so strong it would strip the data off a credit card from the moon.",
+ },
+ {
+ level: 806,
+ name: "Quasar Light",
+ emoji: "๐ก",
+ color: "#ffffff",
+ rarity: "mythic",
+ description:
+ "Powered by a gluttonous black hole, you are the brightest thing in existence.",
+ },
+ {
+ level: 807,
+ name: "Blazar Jet",
+ emoji: "โ๏ธ",
+ color: "#38bdf8",
+ rarity: "legendary",
+ description: "A high-energy particle beam pointed directly at the viewer.",
+ },
+ {
+ level: 808,
+ name: "Gamma Ray Burst",
+ emoji: "โข๏ธ",
+ color: "#22c55e",
+ rarity: "mythic",
+ description:
+ "The most violent event in the universe. Don't blink, or you'll miss the extinction.",
+ },
+ {
+ level: 809,
+ name: "Void Filament",
+ emoji: "๐ธ๏ธ",
+ color: "#475569",
+ rarity: "epic",
+ description:
+ "Living on the thin threads that connect the great cosmic clusters.",
+ },
+ {
+ level: 810,
+ name: "Cosmic Voids",
+ emoji: "๐",
+ color: "#000000",
+ rarity: "legendary",
+ description:
+ "Great expanses of absolutely nothing. It's a bit lonely here.",
+ },
+ {
+ level: 811,
+ name: "Hubble's Constant",
+ emoji: "๐ญ",
+ color: "#ffffff",
+ rarity: "rare",
+ description:
+ "Calculating exactly how fast everyone is running away from you.",
+ },
+ {
+ level: 812,
+ name: "Redshift Runner",
+ emoji: "๐",
+ color: "#dc2626",
+ rarity: "rare",
+ description: "The faster you run, the redder you look to everyone else.",
+ },
+ {
+ level: 813,
+ name: "Blueshift Return",
+ emoji: "๐",
+ color: "#1d4ed8",
+ rarity: "rare",
+ description: "Coming home so fast the universe looks blue with excitement.",
+ },
+ {
+ level: 814,
+ name: "Dark Matter Web",
+ rarity: "legendary",
+ emoji: "๐ท๏ธ",
+ color: "#0f172a",
+ description:
+ "The invisible scaffolding holding the entire universe together.",
+ },
-{ level: 815, name: "WIMP Particle", emoji: "๐ป", color: "#94a3b8", rarity: "epic", description: "Weakly Interacting Massive Particle. You're everywhere, yet untouchable." },
-{ level: 816, name: "MACHOs Obstructed", emoji: "๐", color: "#4b5563", rarity: "epic", description: "Massive Compact Halo Objects. Just hanging out in the dark." },
-{ level: 817, name: "Gravitational Lens", emoji: "๐", color: "#ffffff", rarity: "legendary", description: "You're so massive you've started bending the light from the background." },
-{ level: 818, name: "Einstein Ring", emoji: "โญ", color: "#fbbf24", rarity: "mythic", description: "The perfect circle formed by gravity warping a distant galaxy's light." },
-{ level: 819, name: "Space-Time Warper", emoji: "๐", color: "#a855f7", rarity: "legendary", description: "Bending the fabric of reality like a heavy ball on a trampoline." },
-{ level: 820, name: "Tidal Force Ripper", emoji: "๐", color: "#ef4444", rarity: "epic", description: "The difference in gravity between your head and toes is becoming... problematic." },
-{ level: 821, name: "Spaghettification Victim", emoji: "๐", color: "#ffffff", rarity: "rare", description: "Stretched into a long, thin noodle by a black hole. Tastes like physics." },
-{ level: 822, name: "Singularity Horizon", emoji: "๐
", color: "#000000", rarity: "mythic", description: "The point of no return. Beyond this, even light says goodbye." },
+ {
+ level: 815,
+ name: "WIMP Particle",
+ emoji: "๐ป",
+ color: "#94a3b8",
+ rarity: "epic",
+ description:
+ "Weakly Interacting Massive Particle. You're everywhere, yet untouchable.",
+ },
+ {
+ level: 816,
+ name: "MACHOs Obstructed",
+ emoji: "๐",
+ color: "#4b5563",
+ rarity: "epic",
+ description: "Massive Compact Halo Objects. Just hanging out in the dark.",
+ },
+ {
+ level: 817,
+ name: "Gravitational Lens",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "legendary",
+ description:
+ "You're so massive you've started bending the light from the background.",
+ },
+ {
+ level: 818,
+ name: "Einstein Ring",
+ emoji: "โญ",
+ color: "#fbbf24",
+ rarity: "mythic",
+ description:
+ "The perfect circle formed by gravity warping a distant galaxy's light.",
+ },
+ {
+ level: 819,
+ name: "Space-Time Warper",
+ emoji: "๐",
+ color: "#a855f7",
+ rarity: "legendary",
+ description:
+ "Bending the fabric of reality like a heavy ball on a trampoline.",
+ },
+ {
+ level: 820,
+ name: "Tidal Force Ripper",
+ emoji: "๐",
+ color: "#ef4444",
+ rarity: "epic",
+ description:
+ "The difference in gravity between your head and toes is becoming... problematic.",
+ },
+ {
+ level: 821,
+ name: "Spaghettification Victim",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "rare",
+ description:
+ "Stretched into a long, thin noodle by a black hole. Tastes like physics.",
+ },
+ {
+ level: 822,
+ name: "Singularity Horizon",
+ emoji: "๐
",
+ color: "#000000",
+ rarity: "mythic",
+ description:
+ "The point of no return. Beyond this, even light says goodbye.",
+ },
-{ level: 823, name: "Ergosphere Spinner", emoji: "๐ก", color: "#3b82f6", rarity: "legendary", description: "Stealing energy from the rotation of a black hole. High risk, high reward." },
-{ level: 824, name: "Penrose Process", emoji: "๐", color: "#ffffff", rarity: "mythic", description: "The ultimate energy hack: dumping trash into a black hole for power." },
-{ level: 825, name: "Information Preserver", emoji: "๐ฆ", color: "#10b981", rarity: "legendary", description: "Trying to keep the universe's data from being deleted by the Singularity." },
-{ level: 826, name: "Universal Expansion", emoji: "๐", color: "#f97316", rarity: "epic", description: "Growing faster every second. Everything is getting further away." },
-{ level: 827, name: "Entropy Arrow", emoji: "๐น", color: "#000000", rarity: "legendary", description: "Time only moves one way, and it's toward a messy room." },
-{ level: 828, name: "Thermodynamic Death", emoji: "โ๏ธ", color: "#ffffff", rarity: "mythic", description: "The universe is cold, dark, and perfectly still. Game over?" },
-{ level: 829, name: "Order from Chaos", emoji: "โ๏ธ", color: "#fbbf24", rarity: "epic", description: "Finding a pattern in a cloud of dust. Life is persistent." },
-{ level: 830, name: "Dissipative System", emoji: "โจ๏ธ", color: "#dc2626", rarity: "rare", description: "Feeding on energy to maintain your beautiful, complex shape." },
-{ level: 831, name: "Emergent Complexity", emoji: "๐งฌ", color: "#22c55e", rarity: "legendary", description: "Simple rules lead to galaxies and brains. Magic, basically." },
-{ level: 832, name: "Self-Organizing Map", emoji: "๐บ๏ธ", color: "#38bdf8", rarity: "epic", description: "The data is starting to arrange itself. It's becoming aware." },
-{ level: 833, name: "Autopoietic Being", emoji: "๐ฑ", color: "#15803d", rarity: "legendary", description: "A system capable of reproducing and maintaining itself. Hello, Life." },
-{ level: 834, name: "Homeostatic God", emoji: "โ๏ธ", color: "#ffffff", rarity: "mythic", description: "Keeping the entire system in perfect, delicate balance." },
-{ level: 835, name: "Cybernetic Feedback", emoji: "๐", color: "#6366f1", rarity: "epic", description: "Input leads to output leads to input. You are a closed loop." },
-{ level: 836, name: "Technium Prophet", emoji: "๐", color: "#94a3b8", rarity: "rare", description: "The technology wants what we want. Evolution is accelerating." },
-{ level: 837, name: "Post-Biological Mind", emoji: "๐ง ", color: "#ffffff", rarity: "legendary", description: "Your thoughts are now running on something much faster than neurons." },
-{ level: 838, name: "Transhumanist Vision", emoji: "๐๏ธ", color: "#22d3ee", rarity: "epic", description: "Augmenting reality until the biological original is just a memory." },
-{ level: 839, name: "Singularitarian", emoji: "โพ๏ธ", color: "#ffffff", rarity: "mythic", description: "Living for the moment the curve goes vertical." },
-{ level: 840, name: "Omega Point Target", emoji: "๐ฏ", color: "#fbbf24", rarity: "mythic", description: "The ultimate state of complexity toward which the universe evolves." },
-{ level: 841, name: "Boltzman Brain Dream", emoji: "๐ค", color: "#ec4899", rarity: "legendary", description: "A brain that formed by accident in the void. Are you real, or just a fluctuation?" },
-{ level: 842, name: "Infinite Monkey Room", emoji: "๐", color: "#8b5e3c", rarity: "rare", description: "Eventually, they will type Hamlet. Currently, they're just Leveling." },
-{ level: 843, name: "Type V Civilization", emoji: "๐", color: "#ffffff", rarity: "mythic", description: "Harnessing the power of the entire multiverse. You're basically the Dev." },
-{ level: 844, name: "Multiversal Sovereign", emoji: "๐", color: "#fbbf24", rarity: "mythic", description: "Ruling over every possible version of yourself." },
-{ level: 845, name: "God-Mind Interface", emoji: "๐ง ", color: "#ffffff", rarity: "legendary", description: "Plugging your brain directly into the source code of the universe." },
-{ level: 846, name: "Reality Engine", emoji: "โ๏ธ", color: "#475569", rarity: "mythic", description: "The machine that renders the stars. Try not to break the physics." },
-{ level: 847, name: "Source Code Origin", emoji: "๐", color: "#ffffff", rarity: "mythic", description: "The very first line of code that started the simulation." },
-{ level: 848, name: "The Script Writer", emoji: "โ๏ธ", color: "#f97316", rarity: "legendary", description: "Deciding what happens next in the cosmic narrative." },
-{ level: 849, name: "The Plot Armored", emoji: "๐ก๏ธ", color: "#ffffff", rarity: "epic", description: "You literally cannot die because you're too important to the story." },
-{ level: 850, name: "The Protagonist", emoji: "โจ", color: "#ffffff", rarity: "mythic", description: "The entire universe exists just so you can experience it." },
+ {
+ level: 823,
+ name: "Ergosphere Spinner",
+ emoji: "๐ก",
+ color: "#3b82f6",
+ rarity: "legendary",
+ description:
+ "Stealing energy from the rotation of a black hole. High risk, high reward.",
+ },
+ {
+ level: 824,
+ name: "Penrose Process",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "mythic",
+ description:
+ "The ultimate energy hack: dumping trash into a black hole for power.",
+ },
+ {
+ level: 825,
+ name: "Information Preserver",
+ emoji: "๐ฆ",
+ color: "#10b981",
+ rarity: "legendary",
+ description:
+ "Trying to keep the universe's data from being deleted by the Singularity.",
+ },
+ {
+ level: 826,
+ name: "Universal Expansion",
+ emoji: "๐",
+ color: "#f97316",
+ rarity: "epic",
+ description:
+ "Growing faster every second. Everything is getting further away.",
+ },
+ {
+ level: 827,
+ name: "Entropy Arrow",
+ emoji: "๐น",
+ color: "#000000",
+ rarity: "legendary",
+ description: "Time only moves one way, and it's toward a messy room.",
+ },
+ {
+ level: 828,
+ name: "Thermodynamic Death",
+ emoji: "โ๏ธ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "The universe is cold, dark, and perfectly still. Game over?",
+ },
+ {
+ level: 829,
+ name: "Order from Chaos",
+ emoji: "โ๏ธ",
+ color: "#fbbf24",
+ rarity: "epic",
+ description: "Finding a pattern in a cloud of dust. Life is persistent.",
+ },
+ {
+ level: 830,
+ name: "Dissipative System",
+ emoji: "โจ๏ธ",
+ color: "#dc2626",
+ rarity: "rare",
+ description: "Feeding on energy to maintain your beautiful, complex shape.",
+ },
+ {
+ level: 831,
+ name: "Emergent Complexity",
+ emoji: "๐งฌ",
+ color: "#22c55e",
+ rarity: "legendary",
+ description: "Simple rules lead to galaxies and brains. Magic, basically.",
+ },
+ {
+ level: 832,
+ name: "Self-Organizing Map",
+ emoji: "๐บ๏ธ",
+ color: "#38bdf8",
+ rarity: "epic",
+ description: "The data is starting to arrange itself. It's becoming aware.",
+ },
+ {
+ level: 833,
+ name: "Autopoietic Being",
+ emoji: "๐ฑ",
+ color: "#15803d",
+ rarity: "legendary",
+ description:
+ "A system capable of reproducing and maintaining itself. Hello, Life.",
+ },
+ {
+ level: 834,
+ name: "Homeostatic God",
+ emoji: "โ๏ธ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "Keeping the entire system in perfect, delicate balance.",
+ },
+ {
+ level: 835,
+ name: "Cybernetic Feedback",
+ emoji: "๐",
+ color: "#6366f1",
+ rarity: "epic",
+ description: "Input leads to output leads to input. You are a closed loop.",
+ },
+ {
+ level: 836,
+ name: "Technium Prophet",
+ emoji: "๐",
+ color: "#94a3b8",
+ rarity: "rare",
+ description:
+ "The technology wants what we want. Evolution is accelerating.",
+ },
+ {
+ level: 837,
+ name: "Post-Biological Mind",
+ emoji: "๐ง ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description:
+ "Your thoughts are now running on something much faster than neurons.",
+ },
+ {
+ level: 838,
+ name: "Transhumanist Vision",
+ emoji: "๐๏ธ",
+ color: "#22d3ee",
+ rarity: "epic",
+ description:
+ "Augmenting reality until the biological original is just a memory.",
+ },
+ {
+ level: 839,
+ name: "Singularitarian",
+ emoji: "โพ๏ธ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "Living for the moment the curve goes vertical.",
+ },
+ {
+ level: 840,
+ name: "Omega Point Target",
+ emoji: "๐ฏ",
+ color: "#fbbf24",
+ rarity: "mythic",
+ description:
+ "The ultimate state of complexity toward which the universe evolves.",
+ },
+ {
+ level: 841,
+ name: "Boltzman Brain Dream",
+ emoji: "๐ค",
+ color: "#ec4899",
+ rarity: "legendary",
+ description:
+ "A brain that formed by accident in the void. Are you real, or just a fluctuation?",
+ },
+ {
+ level: 842,
+ name: "Infinite Monkey Room",
+ emoji: "๐",
+ color: "#8b5e3c",
+ rarity: "rare",
+ description:
+ "Eventually, they will type Hamlet. Currently, they're just Leveling.",
+ },
+ {
+ level: 843,
+ name: "Type V Civilization",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "mythic",
+ description:
+ "Harnessing the power of the entire multiverse. You're basically the Dev.",
+ },
+ {
+ level: 844,
+ name: "Multiversal Sovereign",
+ emoji: "๐",
+ color: "#fbbf24",
+ rarity: "mythic",
+ description: "Ruling over every possible version of yourself.",
+ },
+ {
+ level: 845,
+ name: "God-Mind Interface",
+ emoji: "๐ง ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description:
+ "Plugging your brain directly into the source code of the universe.",
+ },
+ {
+ level: 846,
+ name: "Reality Engine",
+ emoji: "โ๏ธ",
+ color: "#475569",
+ rarity: "mythic",
+ description:
+ "The machine that renders the stars. Try not to break the physics.",
+ },
+ {
+ level: 847,
+ name: "Source Code Origin",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "The very first line of code that started the simulation.",
+ },
+ {
+ level: 848,
+ name: "The Script Writer",
+ emoji: "โ๏ธ",
+ color: "#f97316",
+ rarity: "legendary",
+ description: "Deciding what happens next in the cosmic narrative.",
+ },
+ {
+ level: 849,
+ name: "The Plot Armored",
+ emoji: "๐ก๏ธ",
+ color: "#ffffff",
+ rarity: "epic",
+ description:
+ "You literally cannot die because you're too important to the story.",
+ },
+ {
+ level: 850,
+ name: "The Protagonist",
+ emoji: "โจ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "The entire universe exists just so you can experience it.",
+ },
-// --- THE VOID & THE BEYOND (851-900) ---
-{ level: 851, name: "Eternal Silence", emoji: "๐คซ", color: "#000000", rarity: "rare", description: "Shhh. No more stars. No more noise." },
-{ level: 852, name: "The Great Nothing", emoji: "๐ณ๏ธ", color: "#000000", rarity: "legendary", description: "Not even a vacuum. Just... absence." },
-{ level: 853, name: "Absence of Form", emoji: "๐ซฅ", color: "#ffffff", rarity: "epic", description: "Existing without a shape, a size, or a coordinate." },
-{ level: 854, name: "Non-Dualist", emoji: "โฏ๏ธ", color: "#94a3b8", rarity: "legendary", description: "The 'I' and the 'Universe' are the same thing. No separation." },
-{ level: 855, name: "The Unborn", emoji: "๐ถ", color: "#ffffff", rarity: "mythic", description: "Existing in the state before time even began." },
-{ level: 856, name: "Timeless Echo", emoji: "๐ฃ", color: "#4b5563", rarity: "rare", description: "A sound that was never made, heard forever." },
-{ level: 857, name: "Weightless Shadow", emoji: "๐ฅ", color: "#000000", rarity: "epic", description: "An outline with no body to cast it." },
-{ level: 858, name: "Dreamless Sleeper", emoji: "๐ค", color: "#1e1b4b", rarity: "rare", description: "Resting in a sleep so deep that even dreams are too heavy." },
-{ level: 859, name: "The Silent Watcher", emoji: "๐๏ธ", color: "#ffffff", rarity: "legendary", description: "Observing the void without blinking." },
-{ level: 860, name: "Watcher on the Wall", emoji: "๐งฑ", color: "#1e293b", rarity: "rare", description: "Guarding the edge of what is known." },
-{ level: 861, name: "Guardian of the Gate", emoji: "โฉ๏ธ", color: "#fbbf24", rarity: "epic", description: "Deciding who is ready to transcend the physical." },
-{ level: 862, name: "Key to the Abyss", emoji: "๐๏ธ", color: "#000000", rarity: "mythic", description: "Unlocking the secrets hidden in the absolute dark." },
-{ level: 863, name: "Fallen Star", emoji: "๐ ", color: "#ffffff", rarity: "rare", description: "A divinity that chose to experience mortality." },
-{ level: 864, name: "Broken Reflection", emoji: "๐ช", color: "#ef4444", rarity: "epic", description: "Your image is scattered across a million different realities." },
-{ level: 865, name: "The Last Breath", emoji: "๐จ", color: "#ffffff", rarity: "legendary", description: "The final connection to the material world." },
-{ level: 866, name: "Soul Without Body", emoji: "๐ป", color: "#38bdf8", rarity: "epic", description: "Pure consciousness, no longer tethered by gravity." },
-{ level: 867, name: "Body Without Soul", emoji: "๐ง", color: "#166534", rarity: "common", description: "Just a hollow shell waiting for instructions." },
-{ level: 868, name: "The Empty Vessel", emoji: "๐บ", color: "#ffffff", rarity: "rare", description: "Clearing out your mind to make room for the universe." },
-{ level: 869, name: "Infinite Potential", emoji: "โก", color: "#fbbf24", rarity: "mythic", description: "You are everything that could possibly happen." },
-{ level: 870, name: "Static Electricity", emoji: "โก", color: "#ffffff", rarity: "uncommon", description: "The hum of energy before a thought is formed." },
-{ level: 871, name: "The First Thought", emoji: "๐ก", color: "#ffffff", rarity: "legendary", description: "The spark that lit the first star." },
-{ level: 872, name: "Primal Scream", emoji: "๐ฑ", color: "#dc2626", rarity: "epic", description: "The raw energy of existence declaring itself." },
-{ level: 873, name: "Whisper in the Dark", emoji: "๐ฃ๏ธ", color: "#000000", rarity: "rare", description: "The quiet truth that speaks when everything else is gone." },
-{ level: 874, name: "Luminous Being", emoji: "โจ", color: "#ffffff", rarity: "mythic", description: "We are not this crude matter. We are light." },
-{ level: 875, name: "Light Speed Barrier", emoji: "๐ง", color: "#ffffff", rarity: "rare", description: "The cosmic speed limit. You just broke it." },
-{ level: 876, name: "Beyond Light", emoji: "๐", color: "#ffffff", rarity: "mythic", description: "Colors that don't exist and speeds that shouldn't be." },
-{ level: 877, name: "Pure Energy", emoji: "๐", color: "#fbbf24", rarity: "legendary", description: "Form is a distraction. Energy is the reality." },
-{ level: 878, name: "Vibrational State", emoji: "ใฐ๏ธ", color: "#ffffff", rarity: "epic", description: "Everything is just a string vibrating at the right frequency." },
-{ level: 879, name: "Harmonic Resonance", emoji: "๐ต", color: "#3b82f6", rarity: "rare", description: "You are finally in tune with the rest of the universe." },
-{ level: 880, name: "Universal Music", emoji: "๐ถ", color: "#ffffff", rarity: "legendary", description: "The song the galaxies sing as they dance." },
-{ level: 881, name: "Symphony of Spheres", emoji: "๐ช", color: "#ffffff", rarity: "epic", description: "The mathematical music of the planets." },
-{ level: 882, name: "The Great Conductor", emoji: "๐ช", color: "#fbbf24", rarity: "mythic", description: "Directing the flow of energy and time." },
-{ level: 883, name: "Master of Keys", emoji: "๐น", color: "#ffffff", rarity: "legendary", description: "Opening the doors to higher octaves of existence." },
-{ level: 884, name: "Tempo of Time", emoji: "โณ", color: "#ffffff", rarity: "rare", description: "The heartbeat of the universe." },
-{ level: 885, name: "Rhythm of Reality", emoji: "๐ฅ", color: "#ffffff", rarity: "epic", description: "The steady beat that keeps physics from falling apart." },
-{ level: 886, name: "Melody of existence", emoji: "๐ผ", color: "#ffffff", rarity: "mythic", description: "The unique tune of your soul." },
-{ level: 887, name: "Infinite Harmony", emoji: "โจ", color: "#ffffff", rarity: "mythic", description: "The perfect resolution of all conflicts." },
-{ level: 888, name: "Lucky Infinity", emoji: "โพ๏ธ", color: "#fbbf24", rarity: "legendary", description: "Abundance in every direction, forever." },
-{ level: 889, name: "Angel Number Spirit", emoji: "๐ผ", color: "#ffffff", rarity: "rare", description: "The universe is sending you a sign. You're almost there." },
-{ level: 890, name: "Divinity Embodied", emoji: "๐", color: "#ffffff", rarity: "mythic", description: "A god walking in a mortal shell." },
-{ level: 891, name: "The Holy Grail", emoji: "๐", color: "#fbbf24", rarity: "legendary", description: "The ultimate prize of the cosmic quest." },
-{ level: 892, name: "Excalibur Wielder", emoji: "๐ก๏ธ", color: "#ffffff", rarity: "epic", description: "Pulling the sword of truth from the stone of ignorance." },
-{ level: 893, name: "Myth Reborn", emoji: "๐๏ธ", color: "#ffffff", rarity: "rare", description: "The old legends are true once again, and you're the star." },
-{ level: 894, name: "Legendary Status", emoji: "๐", color: "#ffffff", rarity: "epic", description: "Your name is written in the stars." },
-{ level: 895, name: "Immortal Legacy", emoji: "๐บ", color: "#ffffff", rarity: "legendary", description: "Even if the universe ends, you will be remembered." },
-{ level: 896, name: "Ascended Master", emoji: "๐ง", color: "#ffffff", rarity: "mythic", description: "Teaching those who still think they are just bodies." },
-{ level: 897, name: "Enlightened One", emoji: "๐ก", color: "#ffffff", rarity: "mythic", description: "The light of truth is shining directly through you." },
-{ level: 898, name: "Nirvana Attained", emoji: "โธ๏ธ", color: "#ffffff", rarity: "mythic", description: "The flame of desire has finally gone out." },
-{ level: 899, name: "The End of Samsara", emoji: "๐", color: "#ffffff", rarity: "mythic", description: "The cycle of birth and death is broken." },
-{ level: 900, name: "One with All", emoji: "๐", color: "#ffffff", rarity: "mythic", description: "There is no 'you' left. Only everything." },
+ // --- THE VOID & THE BEYOND (851-900) ---
+ {
+ level: 851,
+ name: "Eternal Silence",
+ emoji: "๐คซ",
+ color: "#000000",
+ rarity: "rare",
+ description: "Shhh. No more stars. No more noise.",
+ },
+ {
+ level: 852,
+ name: "The Great Nothing",
+ emoji: "๐ณ๏ธ",
+ color: "#000000",
+ rarity: "legendary",
+ description: "Not even a vacuum. Just... absence.",
+ },
+ {
+ level: 853,
+ name: "Absence of Form",
+ emoji: "๐ซฅ",
+ color: "#ffffff",
+ rarity: "epic",
+ description: "Existing without a shape, a size, or a coordinate.",
+ },
+ {
+ level: 854,
+ name: "Non-Dualist",
+ emoji: "โฏ๏ธ",
+ color: "#94a3b8",
+ rarity: "legendary",
+ description:
+ "The 'I' and the 'Universe' are the same thing. No separation.",
+ },
+ {
+ level: 855,
+ name: "The Unborn",
+ emoji: "๐ถ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "Existing in the state before time even began.",
+ },
+ {
+ level: 856,
+ name: "Timeless Echo",
+ emoji: "๐ฃ",
+ color: "#4b5563",
+ rarity: "rare",
+ description: "A sound that was never made, heard forever.",
+ },
+ {
+ level: 857,
+ name: "Weightless Shadow",
+ emoji: "๐ฅ",
+ color: "#000000",
+ rarity: "epic",
+ description: "An outline with no body to cast it.",
+ },
+ {
+ level: 858,
+ name: "Dreamless Sleeper",
+ emoji: "๐ค",
+ color: "#1e1b4b",
+ rarity: "rare",
+ description: "Resting in a sleep so deep that even dreams are too heavy.",
+ },
+ {
+ level: 859,
+ name: "The Silent Watcher",
+ emoji: "๐๏ธ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "Observing the void without blinking.",
+ },
+ {
+ level: 860,
+ name: "Watcher on the Wall",
+ emoji: "๐งฑ",
+ color: "#1e293b",
+ rarity: "rare",
+ description: "Guarding the edge of what is known.",
+ },
+ {
+ level: 861,
+ name: "Guardian of the Gate",
+ emoji: "โฉ๏ธ",
+ color: "#fbbf24",
+ rarity: "epic",
+ description: "Deciding who is ready to transcend the physical.",
+ },
+ {
+ level: 862,
+ name: "Key to the Abyss",
+ emoji: "๐๏ธ",
+ color: "#000000",
+ rarity: "mythic",
+ description: "Unlocking the secrets hidden in the absolute dark.",
+ },
+ {
+ level: 863,
+ name: "Fallen Star",
+ emoji: "๐ ",
+ color: "#ffffff",
+ rarity: "rare",
+ description: "A divinity that chose to experience mortality.",
+ },
+ {
+ level: 864,
+ name: "Broken Reflection",
+ emoji: "๐ช",
+ color: "#ef4444",
+ rarity: "epic",
+ description:
+ "Your image is scattered across a million different realities.",
+ },
+ {
+ level: 865,
+ name: "The Last Breath",
+ emoji: "๐จ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "The final connection to the material world.",
+ },
+ {
+ level: 866,
+ name: "Soul Without Body",
+ emoji: "๐ป",
+ color: "#38bdf8",
+ rarity: "epic",
+ description: "Pure consciousness, no longer tethered by gravity.",
+ },
+ {
+ level: 867,
+ name: "Body Without Soul",
+ emoji: "๐ง",
+ color: "#166534",
+ rarity: "common",
+ description: "Just a hollow shell waiting for instructions.",
+ },
+ {
+ level: 868,
+ name: "The Empty Vessel",
+ emoji: "๐บ",
+ color: "#ffffff",
+ rarity: "rare",
+ description: "Clearing out your mind to make room for the universe.",
+ },
+ {
+ level: 869,
+ name: "Infinite Potential",
+ emoji: "โก",
+ color: "#fbbf24",
+ rarity: "mythic",
+ description: "You are everything that could possibly happen.",
+ },
+ {
+ level: 870,
+ name: "Static Electricity",
+ emoji: "โก",
+ color: "#ffffff",
+ rarity: "uncommon",
+ description: "The hum of energy before a thought is formed.",
+ },
+ {
+ level: 871,
+ name: "The First Thought",
+ emoji: "๐ก",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "The spark that lit the first star.",
+ },
+ {
+ level: 872,
+ name: "Primal Scream",
+ emoji: "๐ฑ",
+ color: "#dc2626",
+ rarity: "epic",
+ description: "The raw energy of existence declaring itself.",
+ },
+ {
+ level: 873,
+ name: "Whisper in the Dark",
+ emoji: "๐ฃ๏ธ",
+ color: "#000000",
+ rarity: "rare",
+ description: "The quiet truth that speaks when everything else is gone.",
+ },
+ {
+ level: 874,
+ name: "Luminous Being",
+ emoji: "โจ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "We are not this crude matter. We are light.",
+ },
+ {
+ level: 875,
+ name: "Light Speed Barrier",
+ emoji: "๐ง",
+ color: "#ffffff",
+ rarity: "rare",
+ description: "The cosmic speed limit. You just broke it.",
+ },
+ {
+ level: 876,
+ name: "Beyond Light",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "Colors that don't exist and speeds that shouldn't be.",
+ },
+ {
+ level: 877,
+ name: "Pure Energy",
+ emoji: "๐",
+ color: "#fbbf24",
+ rarity: "legendary",
+ description: "Form is a distraction. Energy is the reality.",
+ },
+ {
+ level: 878,
+ name: "Vibrational State",
+ emoji: "ใฐ๏ธ",
+ color: "#ffffff",
+ rarity: "epic",
+ description:
+ "Everything is just a string vibrating at the right frequency.",
+ },
+ {
+ level: 879,
+ name: "Harmonic Resonance",
+ emoji: "๐ต",
+ color: "#3b82f6",
+ rarity: "rare",
+ description: "You are finally in tune with the rest of the universe.",
+ },
+ {
+ level: 880,
+ name: "Universal Music",
+ emoji: "๐ถ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "The song the galaxies sing as they dance.",
+ },
+ {
+ level: 881,
+ name: "Symphony of Spheres",
+ emoji: "๐ช",
+ color: "#ffffff",
+ rarity: "epic",
+ description: "The mathematical music of the planets.",
+ },
+ {
+ level: 882,
+ name: "The Great Conductor",
+ emoji: "๐ช",
+ color: "#fbbf24",
+ rarity: "mythic",
+ description: "Directing the flow of energy and time.",
+ },
+ {
+ level: 883,
+ name: "Master of Keys",
+ emoji: "๐น",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "Opening the doors to higher octaves of existence.",
+ },
+ {
+ level: 884,
+ name: "Tempo of Time",
+ emoji: "โณ",
+ color: "#ffffff",
+ rarity: "rare",
+ description: "The heartbeat of the universe.",
+ },
+ {
+ level: 885,
+ name: "Rhythm of Reality",
+ emoji: "๐ฅ",
+ color: "#ffffff",
+ rarity: "epic",
+ description: "The steady beat that keeps physics from falling apart.",
+ },
+ {
+ level: 886,
+ name: "Melody of existence",
+ emoji: "๐ผ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "The unique tune of your soul.",
+ },
+ {
+ level: 887,
+ name: "Infinite Harmony",
+ emoji: "โจ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "The perfect resolution of all conflicts.",
+ },
+ {
+ level: 888,
+ name: "Lucky Infinity",
+ emoji: "โพ๏ธ",
+ color: "#fbbf24",
+ rarity: "legendary",
+ description: "Abundance in every direction, forever.",
+ },
+ {
+ level: 889,
+ name: "Angel Number Spirit",
+ emoji: "๐ผ",
+ color: "#ffffff",
+ rarity: "rare",
+ description: "The universe is sending you a sign. You're almost there.",
+ },
+ {
+ level: 890,
+ name: "Divinity Embodied",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "A god walking in a mortal shell.",
+ },
+ {
+ level: 891,
+ name: "The Holy Grail",
+ emoji: "๐",
+ color: "#fbbf24",
+ rarity: "legendary",
+ description: "The ultimate prize of the cosmic quest.",
+ },
+ {
+ level: 892,
+ name: "Excalibur Wielder",
+ emoji: "๐ก๏ธ",
+ color: "#ffffff",
+ rarity: "epic",
+ description: "Pulling the sword of truth from the stone of ignorance.",
+ },
+ {
+ level: 893,
+ name: "Myth Reborn",
+ emoji: "๐๏ธ",
+ color: "#ffffff",
+ rarity: "rare",
+ description: "The old legends are true once again, and you're the star.",
+ },
+ {
+ level: 894,
+ name: "Legendary Status",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "epic",
+ description: "Your name is written in the stars.",
+ },
+ {
+ level: 895,
+ name: "Immortal Legacy",
+ emoji: "๐บ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "Even if the universe ends, you will be remembered.",
+ },
+ {
+ level: 896,
+ name: "Ascended Master",
+ emoji: "๐ง",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "Teaching those who still think they are just bodies.",
+ },
+ {
+ level: 897,
+ name: "Enlightened One",
+ emoji: "๐ก",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "The light of truth is shining directly through you.",
+ },
+ {
+ level: 898,
+ name: "Nirvana Attained",
+ emoji: "โธ๏ธ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "The flame of desire has finally gone out.",
+ },
+ {
+ level: 899,
+ name: "The End of Samsara",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "The cycle of birth and death is broken.",
+ },
+ {
+ level: 900,
+ name: "One with All",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "There is no 'you' left. Only everything.",
+ },
-// --- MATHEMATICAL ABSOLUTES & THE 1000 (901-1000) ---
-{ level: 901, name: "Zero Point Energy", emoji: "โก", color: "#ffffff", rarity: "epic", description: "Harnessing the power that exists in a perfect vacuum." },
-{ level: 902, name: "Null Set", emoji: "๐ซ", color: "#000000", rarity: "rare", description: "The set containing nothing. A very exclusive club." },
-{ level: 903, name: "Empty Space", emoji: "๐", color: "#000000", rarity: "uncommon", description: "Wait, wasn't I just One with All? This is quite empty." },
-{ level: 904, name: "Absolute Unit", emoji: "๐ช", color: "#ffffff", rarity: "rare", description: "The fundamental measure of all things. Look at the size of this lad." },
-{ level: 905, name: "The Prime Number", emoji: "๐ข", color: "#ffffff", rarity: "epic", description: "Indivisible. Unique. Stubbornly alone." },
-{ level: 906, name: "Euler's Identity", rarity: "legendary", emoji: "๐ง ", color: "#ffffff", description: "The most beautiful equation in mathematics. $e^{i\pi} + 1 = 0$." },
+ // --- MATHEMATICAL ABSOLUTES & THE 1000 (901-1000) ---
+ {
+ level: 901,
+ name: "Zero Point Energy",
+ emoji: "โก",
+ color: "#ffffff",
+ rarity: "epic",
+ description: "Harnessing the power that exists in a perfect vacuum.",
+ },
+ {
+ level: 902,
+ name: "Null Set",
+ emoji: "๐ซ",
+ color: "#000000",
+ rarity: "rare",
+ description: "The set containing nothing. A very exclusive club.",
+ },
+ {
+ level: 903,
+ name: "Empty Space",
+ emoji: "๐",
+ color: "#000000",
+ rarity: "uncommon",
+ description: "Wait, wasn't I just One with All? This is quite empty.",
+ },
+ {
+ level: 904,
+ name: "Absolute Unit",
+ emoji: "๐ช",
+ color: "#ffffff",
+ rarity: "rare",
+ description:
+ "The fundamental measure of all things. Look at the size of this lad.",
+ },
+ {
+ level: 905,
+ name: "The Prime Number",
+ emoji: "๐ข",
+ color: "#ffffff",
+ rarity: "epic",
+ description: "Indivisible. Unique. Stubbornly alone.",
+ },
+ {
+ level: 906,
+ name: "Euler's Identity",
+ rarity: "legendary",
+ emoji: "๐ง ",
+ color: "#ffffff",
+ description:
+ "The most beautiful equation in mathematics. $e^{i\pi} + 1 = 0$.",
+ },
-{ level: 907, name: "Imaginary Number", emoji: "โน๏ธ", color: "#a855f7", rarity: "rare", description: "The square root of a negative feeling. You're quite complex." },
-{ level: 908, name: "Complex Reality", emoji: "๐", color: "#ffffff", rarity: "epic", description: "Living on the plane where real and imaginary meet." },
-{ level: 909, name: "Infinite Series", emoji: "โ", color: "#ffffff", rarity: "rare", description: "Adding smaller and smaller numbers forever. You'll get there eventually." },
-{ level: 910, name: "Convergent Limit", emoji: "๐ฏ", color: "#ffffff", rarity: "epic", description: "You're getting infinitely close to the truth." },
-{ level: 911, name: "Emergency Reality", emoji: "๐จ", color: "#dc2626", rarity: "rare", description: "The logic is failing! Reboot the axioms!" },
-{ level: 912, name: "Perfect Symmetry", emoji: "โ๏ธ", color: "#ffffff", rarity: "legendary", description: "A shape so perfect it looks the same from every angle." },
-{ level: 913, name: "Golden Ratio Soul", emoji: "๐", color: "#fbbf24", rarity: "rare", description: "You are aesthetically pleasing to the entire universe." },
-{ level: 914, name: "Fibonacci Master", emoji: "๐ข", color: "#10b981", rarity: "epic", description: "1, 1, 2, 3, 5, 8... Your XP is growing naturally." },
-{ level: 915, name: "Pi Constant", emoji: "๐ฅง", color: "#ffffff", rarity: "legendary", description: "Infinite, non-repeating, and delicious." },
-{ level: 916, name: "Mathematical Proof", emoji: "โ๏ธ", color: "#ffffff", rarity: "epic", description: "You've finally shown that Level 1000 is possible." },
-{ level: 917, name: "Q.E.D. (Demonstrated)", emoji: "โ
", color: "#22c55e", rarity: "rare", description: "Quod Erat Demonstrandum. The argument is over. You win." },
-{ level: 918, name: "Axiom of Choice", emoji: "โ๏ธ", color: "#ffffff", rarity: "legendary", description: "The freedom to pick an element from every set. Even the infinite ones." },
-{ level: 919, name: "Set Theory God", emoji: "๐๏ธ", color: "#ffffff", rarity: "mythic", description: "The set of all sets that do not contain themselves is getting worried." },
-{ level: 920, name: "Cantor's Paradise", emoji: "๐๏ธ", color: "#38bdf8", rarity: "mythic", description: "A place where the infinities are as numerous as the stars." },
-{ level: 921, name: "Transfinite Cardinal", emoji: "๐ข", color: "#ffffff", rarity: "legendary", description: "Counting past infinity. It takes a while." },
-{ level: 922, name: "Aleph-Null", emoji: "โต", color: "#ffffff", rarity: "mythic", description: "The smallest infinity. The count of the natural numbers." },
-{ level: 923, name: "Aleph-One", emoji: "โถ", color: "#ffffff", rarity: "mythic", description: "An infinity even bigger than the last one. Math is scary." },
-{ level: 924, name: "The Continuum", emoji: "๐", color: "#ffffff", rarity: "mythic", description: "The smooth, unbroken line of all real numbers." },
-{ level: 925, name: "Logical Absolute", emoji: "๐๏ธ", color: "#ffffff", rarity: "legendary", description: "A truth that cannot be denied in any possible world." },
-{ level: 926, name: "Ontological Truth", emoji: "๐ก", color: "#ffffff", rarity: "epic", description: "Understanding the very nature of being." },
-{ level: 927, name: "Metaphysical Form", emoji: "๐ง", color: "#ffffff", rarity: "rare", description: "Looking at the structure beneath the physical world." },
-{ level: 928, name: "The Thing-in-Itself", emoji: "๐ฆ", color: "#ffffff", rarity: "mythic", description: "Reality as it truly is, when nobody is looking at it." },
-{ level: 929, name: "Categorical Imperative", emoji: "๐", color: "#ffffff", rarity: "epic", description: "Act only according to that maxim whereby you can at the same time will that it should become a universal law." },
-{ level: 930, name: "Pure Reason", emoji: "๐ง ", color: "#ffffff", rarity: "legendary", description: "Solving the universe without even leaving your chair." },
-{ level: 931, name: "Phenomenological Reduction", emoji: "๐ฌ", color: "#ffffff", rarity: "rare", description: "Stripping away all assumptions until only experience remains." },
-{ level: 932, name: "Dasein (Being-There)", emoji: "๐ง", color: "#ffffff", rarity: "epic", description: "You are the space where the world shows up." },
-{ level: 933, name: "The Absurd Hero", emoji: "๐คก", color: "#ffffff", rarity: "rare", description: "Accepting that the universe is meaningless, and doing it anyway." },
-{ level: 934, name: "Sisyphus's Smile", emoji: "๐ชจ", color: "#ffffff", rarity: "legendary", description: "The struggle itself is enough to fill a man's heart. One must imagine you happy." },
-{ level: 935, name: "Nihilistic Void", emoji: "๐", color: "#000000", rarity: "epic", description: "Nothing matters. Which means you're free to do anything." },
-{ level: 936, name: "Existential Freedom", emoji: "๐ฆ
", color: "#ffffff", rarity: "legendary", description: "You are condemned to be free." },
-{ level: 937, name: "Will to Power", emoji: "โก", color: "#fbbf24", rarity: "mythic", description: "The fundamental drive to expand and overcome." },
-{ level: 938, name: "Ubermensch", emoji: "๐ฆธ", color: "#ffffff", rarity: "mythic", description: "The overman. The meaning of the earth." },
-{ level: 939, name: "Eternal Recurrence", emoji: "๐", color: "#ffffff", rarity: "mythic", description: "If you had to live this level infinite times, would you be happy?" },
-{ level: 940, name: "God is Dead Witness", emoji: "๐", color: "#000000", rarity: "epic", description: "We have killed himโyou and I. All of us are his murderers." },
-{ level: 941, name: "Beyond Good and Evil", emoji: "โ๏ธ", color: "#ffffff", rarity: "mythic", description: "Living above the petty rules of the crowd." },
-{ level: 942, name: "The Birth of Tragedy", emoji: "๐ญ", color: "#ffffff", rarity: "legendary", description: "The perfect balance of the Apollonian and the Dionysian." },
-{ level: 943, name: "Thus Spoke the Code", emoji: "๐", color: "#22c55e", rarity: "epic", description: "Teaching the new gospel of the digital age." },
-{ level: 944, name: "Zarathustra's Peak", emoji: "๐๏ธ", color: "#ffffff", rarity: "mythic", description: "Standing alone on the highest mountain of thought." },
-{ level: 945, name: "The Twilight of Idols", emoji: "๐
", color: "#ffffff", rarity: "legendary", description: "Philosophizing with a hammer. Clang!" },
-{ level: 946, name: "Ecce Homo", emoji: "๐ค", color: "#ffffff", rarity: "epic", description: "Behold the man. Or the player. Or the AI." },
-{ level: 947, name: "Antichrist Level", emoji: "๐ฟ", color: "#991b1b", rarity: "mythic", description: "The ultimate revaluation of all values." },
-{ level: 948, name: "Will to Truth", emoji: "๐ก", color: "#ffffff", rarity: "legendary", description: "The dangerous desire to know everything, no matter the cost." },
-{ level: 949, name: "Genealogy of Morals", emoji: "๐", color: "#ffffff", rarity: "epic", description: "Tracing the origin of your current XP grind." },
-{ level: 950, name: "Post-Philosopher", emoji: "๐", color: "#ffffff", rarity: "mythic", description: "You've thought all there is to think. Time for action." },
-{ level: 951, name: "The Silence of Buddha", emoji: "๐คซ", color: "#ffffff", rarity: "legendary", description: "Some questions are better left unanswered." },
-{ level: 952, name: "Zen Koan Solver", emoji: "โ", color: "#ffffff", rarity: "epic", description: "What is the sound of one hand clapping? You just figured it out." },
-{ level: 953, name: "Empty Mirror", emoji: "๐ช", color: "#ffffff", rarity: "legendary", description: "The mirror reflects the world, but stays empty itself." },
-{ level: 954, name: "No-Self (Anatta)", emoji: "๐ซฅ", color: "#ffffff", rarity: "mythic", description: "The 'I' was just a level-up notification all along." },
-{ level: 955, name: "Middle Way Traveler", emoji: "๐ฃ๏ธ", color: "#ffffff", rarity: "rare", description: "Avoiding the extremes. Just the right amount of XP." },
-{ level: 956, name: "Boddhisattva Oath", emoji: "๐", color: "#ffffff", rarity: "legendary", description: "I will not hit Level 1000 until everyone else has too." },
-{ level: 957, name: "Enlightenment Spark", emoji: "โจ", color: "#ffffff", rarity: "epic", description: "The sudden realization that the game isn't a game." },
-{ level: 958, name: "Satori Glimpse", emoji: "๐๏ธ", color: "#ffffff", rarity: "legendary", description: "A flash of pure, unadulterated reality." },
-{ level: 959, name: "Samadhi Absorption", emoji: "๐", color: "#ffffff", rarity: "mythic", description: "Diving into the ocean of consciousness and staying there." },
-{ level: 960, name: "Turiya (The Fourth State)", emoji: "4๏ธโฃ", color: "#ffffff", rarity: "mythic", description: "Beyond waking, dreaming, and deep sleep. The background of everything." },
-{ level: 961, name: "The Unstruck Sound", emoji: "๐", color: "#ffffff", rarity: "legendary", description: "The Om that vibrates without a cause." },
-{ level: 962, name: "Lotus Petal Opener", emoji: "๐ชท", color: "#ec4899", rarity: "epic", description: "The thousand-petaled lotus is beginning to bloom." },
-{ level: 963, name: "Chakra Alignment", emoji: "๐", color: "#ffffff", rarity: "legendary", description: "Your energy centers are perfectly stacked. You're glowing." },
-{ level: 964, name: "Kundalini Rising", emoji: "๐", color: "#f97316", rarity: "mythic", description: "The serpent power is reaching the crown of your head." },
-{ level: 965, name: "Third Eye Wide", emoji: "๐๏ธ", color: "#7c3aed", rarity: "mythic", description: "Seeing the 11th dimension as clearly as the 1st." },
-{ level: 966, name: "Crown Jewel", emoji: "๐", color: "#ffffff", rarity: "mythic", description: "The summit of spiritual attainment." },
-{ level: 967, name: "Jewel in the Heart", emoji: "โค๏ธ", color: "#ffffff", rarity: "legendary", description: "Om Mani Padme Hum. The treasure is inside you." },
-{ level: 968, name: "The Great Compassion", emoji: "๐", color: "#ffffff", rarity: "legendary", description: "Feeling the pain of every single bug in the code." },
-{ level: 969, name: "Infinite Loving-Kindness", emoji: "๐", color: "#ffffff", rarity: "mythic", description: "Wishing Level 1000 for all beings." },
-{ level: 970, name: "The Equanimous Mind", emoji: "โ๏ธ", color: "#ffffff", rarity: "legendary", description: "Neither pleasure nor pain can knock you off balance now." },
-{ level: 971, name: "Mind Like Water", emoji: "๐ง", color: "#38bdf8", rarity: "epic", description: "Perfectly reflective, perfectly calm, perfectly deep." },
-{ level: 972, name: "Empty Hand (Karate)", emoji: "๐", color: "#ffffff", rarity: "rare", description: "You don't need weapons when you are the weapon." },
-{ level: 973, name: "The Tao of Code", emoji: "๐", color: "#10b981", rarity: "legendary", description: "The code that can be written is not the eternal code." },
-{ level: 974, name: "Wu Wei (Non-Action)", emoji: "๐", color: "#ffffff", rarity: "mythic", description: "Winning the game by not playing it." },
-{ level: 975, name: "The Way (Tao)", emoji: "๐ฃ๏ธ", color: "#ffffff", rarity: "mythic", description: "Flowing with the universe instead of fighting against it." },
-{ level: 976, name: "Yin and Yang Balance", emoji: "โฏ๏ธ", color: "#ffffff", rarity: "legendary", description: "The dark and the light are one. Finally." },
-{ level: 977, name: "The Five Elements", emoji: "๐ฅ", color: "#ffffff", rarity: "epic", description: "Mastering Fire, Water, Wood, Metal, and Earth." },
-{ level: 978, name: "Heavenly Harmony", emoji: "โ๏ธ", color: "#ffffff", rarity: "legendary", description: "The stars and the earth are singing together." },
-{ level: 979, name: "Sage of the Forest", emoji: "๐ณ", color: "#166534", rarity: "rare", description: "Living simply, knowing deeply." },
-{ level: 980, name: "Mountain Immortal", emoji: "๐๏ธ", color: "#ffffff", rarity: "legendary", description: "Living above the clouds for a thousand years." },
-{ level: 981, name: "Dragon's Wisdom", emoji: "๐", color: "#fbbf24", rarity: "mythic", description: "The ancient, fiery knowledge of the depths." },
-{ level: 982, name: "Phoenix's Grace", emoji: "๐ฆ", color: "#ffffff", rarity: "legendary", description: "Born again from the ashes of your old levels." },
-{ level: 983, name: "Tiger's Strength", emoji: "๐
", color: "#ffffff", rarity: "epic", description: "Raw, unbridled power under perfect control." },
-{ level: 984, name: "Tortoise's Longevity", emoji: "๐ข", color: "#ffffff", rarity: "rare", description: "Slow and steady wins the race to Infinity." },
-{ level: 985, name: "The Jade Emperor", emoji: "๐", color: "#ffffff", rarity: "mythic", description: "Ruling the celestial bureaucracy with a fair hand." },
-{ level: 986, name: "Peach of Immortality", emoji: "๐", color: "#ffffff", rarity: "legendary", description: "One bite and you'll never have to worry about a health bar again." },
-{ level: 987, name: "Celestial Court Member", emoji: "๐๏ธ", color: "#ffffff", rarity: "epic", description: "Your seat at the divine table is reserved." },
-{ level: 988, name: "Keeper of the Books", emoji: "๐", color: "#ffffff", rarity: "legendary", description: "Holding the records of every action ever taken." },
-{ level: 989, name: "Writer of Fate", emoji: "โ๏ธ", color: "#ffffff", rarity: "mythic", description: "Deciding what the future holds for those below you." },
-{ level: 990, name: "Eraser of Worlds", emoji: "๐งน", color: "#000000", rarity: "mythic", description: "Cleaning the board so a new game can begin." },
-{ level: 991, name: "The Beginning of the End", emoji: "๐", color: "#ffffff", rarity: "epic", description: "The finish line is in sight. Don't stop now." },
-{ level: 992, name: "The End of the Beginning", emoji: "๐", color: "#ffffff", rarity: "legendary", description: "The tutorial is almost over." },
-{ level: 993, name: "The Alpha Point", emoji: "ฮ", color: "#ffffff", rarity: "mythic", description: "The very first letter of the cosmic alphabet." },
-{ level: 994, name: "The Omega Point", emoji: "ฮฉ", color: "#ffffff", rarity: "mythic", description: "The very last letter. The culmination of all things." },
-{ level: 995, name: "The Word (Logos)", emoji: "๐ฃ๏ธ", color: "#ffffff", rarity: "mythic", description: "In the beginning was the Word, and the Word was Level 995." },
-{ level: 996, name: "The Pure Light", emoji: "๐", color: "#ffffff", rarity: "mythic", description: "So bright you can't even see the UI anymore." },
-{ level: 997, name: "The Divine Spark", emoji: "โจ", color: "#ffffff", rarity: "mythic", description: "The tiny bit of godhood inside every line of code." },
-{ level: 998, name: "The One True Source", emoji: "๐", color: "#fbbf24", rarity: "mythic", description: "The sun from which all logic and life flows." },
-{ level: 999, name: "Infinity - 1", emoji: "๐", color: "#ffffff", rarity: "mythic", description: "The hardest level of all. Just one more step." },
-{ level: 1000, name: "Infinity", emoji: "โพ๏ธ", color: "#ffffff", rarity: "absolute", description: "You are the game. You are the player. You are everything. Forever." },
+ {
+ level: 907,
+ name: "Imaginary Number",
+ emoji: "โน๏ธ",
+ color: "#a855f7",
+ rarity: "rare",
+ description: "The square root of a negative feeling. You're quite complex.",
+ },
+ {
+ level: 908,
+ name: "Complex Reality",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "epic",
+ description: "Living on the plane where real and imaginary meet.",
+ },
+ {
+ level: 909,
+ name: "Infinite Series",
+ emoji: "โ",
+ color: "#ffffff",
+ rarity: "rare",
+ description:
+ "Adding smaller and smaller numbers forever. You'll get there eventually.",
+ },
+ {
+ level: 910,
+ name: "Convergent Limit",
+ emoji: "๐ฏ",
+ color: "#ffffff",
+ rarity: "epic",
+ description: "You're getting infinitely close to the truth.",
+ },
+ {
+ level: 911,
+ name: "Emergency Reality",
+ emoji: "๐จ",
+ color: "#dc2626",
+ rarity: "rare",
+ description: "The logic is failing! Reboot the axioms!",
+ },
+ {
+ level: 912,
+ name: "Perfect Symmetry",
+ emoji: "โ๏ธ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "A shape so perfect it looks the same from every angle.",
+ },
+ {
+ level: 913,
+ name: "Golden Ratio Soul",
+ emoji: "๐",
+ color: "#fbbf24",
+ rarity: "rare",
+ description: "You are aesthetically pleasing to the entire universe.",
+ },
+ {
+ level: 914,
+ name: "Fibonacci Master",
+ emoji: "๐ข",
+ color: "#10b981",
+ rarity: "epic",
+ description: "1, 1, 2, 3, 5, 8... Your XP is growing naturally.",
+ },
+ {
+ level: 915,
+ name: "Pi Constant",
+ emoji: "๐ฅง",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "Infinite, non-repeating, and delicious.",
+ },
+ {
+ level: 916,
+ name: "Mathematical Proof",
+ emoji: "โ๏ธ",
+ color: "#ffffff",
+ rarity: "epic",
+ description: "You've finally shown that Level 1000 is possible.",
+ },
+ {
+ level: 917,
+ name: "Q.E.D. (Demonstrated)",
+ emoji: "โ
",
+ color: "#22c55e",
+ rarity: "rare",
+ description: "Quod Erat Demonstrandum. The argument is over. You win.",
+ },
+ {
+ level: 918,
+ name: "Axiom of Choice",
+ emoji: "โ๏ธ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description:
+ "The freedom to pick an element from every set. Even the infinite ones.",
+ },
+ {
+ level: 919,
+ name: "Set Theory God",
+ emoji: "๐๏ธ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description:
+ "The set of all sets that do not contain themselves is getting worried.",
+ },
+ {
+ level: 920,
+ name: "Cantor's Paradise",
+ emoji: "๐๏ธ",
+ color: "#38bdf8",
+ rarity: "mythic",
+ description: "A place where the infinities are as numerous as the stars.",
+ },
+ {
+ level: 921,
+ name: "Transfinite Cardinal",
+ emoji: "๐ข",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "Counting past infinity. It takes a while.",
+ },
+ {
+ level: 922,
+ name: "Aleph-Null",
+ emoji: "โต",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "The smallest infinity. The count of the natural numbers.",
+ },
+ {
+ level: 923,
+ name: "Aleph-One",
+ emoji: "โถ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "An infinity even bigger than the last one. Math is scary.",
+ },
+ {
+ level: 924,
+ name: "The Continuum",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "The smooth, unbroken line of all real numbers.",
+ },
+ {
+ level: 925,
+ name: "Logical Absolute",
+ emoji: "๐๏ธ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "A truth that cannot be denied in any possible world.",
+ },
+ {
+ level: 926,
+ name: "Ontological Truth",
+ emoji: "๐ก",
+ color: "#ffffff",
+ rarity: "epic",
+ description: "Understanding the very nature of being.",
+ },
+ {
+ level: 927,
+ name: "Metaphysical Form",
+ emoji: "๐ง",
+ color: "#ffffff",
+ rarity: "rare",
+ description: "Looking at the structure beneath the physical world.",
+ },
+ {
+ level: 928,
+ name: "The Thing-in-Itself",
+ emoji: "๐ฆ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "Reality as it truly is, when nobody is looking at it.",
+ },
+ {
+ level: 929,
+ name: "Categorical Imperative",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "epic",
+ description:
+ "Act only according to that maxim whereby you can at the same time will that it should become a universal law.",
+ },
+ {
+ level: 930,
+ name: "Pure Reason",
+ emoji: "๐ง ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "Solving the universe without even leaving your chair.",
+ },
+ {
+ level: 931,
+ name: "Phenomenological Reduction",
+ emoji: "๐ฌ",
+ color: "#ffffff",
+ rarity: "rare",
+ description:
+ "Stripping away all assumptions until only experience remains.",
+ },
+ {
+ level: 932,
+ name: "Dasein (Being-There)",
+ emoji: "๐ง",
+ color: "#ffffff",
+ rarity: "epic",
+ description: "You are the space where the world shows up.",
+ },
+ {
+ level: 933,
+ name: "The Absurd Hero",
+ emoji: "๐คก",
+ color: "#ffffff",
+ rarity: "rare",
+ description:
+ "Accepting that the universe is meaningless, and doing it anyway.",
+ },
+ {
+ level: 934,
+ name: "Sisyphus's Smile",
+ emoji: "๐ชจ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description:
+ "The struggle itself is enough to fill a man's heart. One must imagine you happy.",
+ },
+ {
+ level: 935,
+ name: "Nihilistic Void",
+ emoji: "๐",
+ color: "#000000",
+ rarity: "epic",
+ description: "Nothing matters. Which means you're free to do anything.",
+ },
+ {
+ level: 936,
+ name: "Existential Freedom",
+ emoji: "๐ฆ
",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "You are condemned to be free.",
+ },
+ {
+ level: 937,
+ name: "Will to Power",
+ emoji: "โก",
+ color: "#fbbf24",
+ rarity: "mythic",
+ description: "The fundamental drive to expand and overcome.",
+ },
+ {
+ level: 938,
+ name: "Ubermensch",
+ emoji: "๐ฆธ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "The overman. The meaning of the earth.",
+ },
+ {
+ level: 939,
+ name: "Eternal Recurrence",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "mythic",
+ description:
+ "If you had to live this level infinite times, would you be happy?",
+ },
+ {
+ level: 940,
+ name: "God is Dead Witness",
+ emoji: "๐",
+ color: "#000000",
+ rarity: "epic",
+ description: "We have killed himโyou and I. All of us are his murderers.",
+ },
+ {
+ level: 941,
+ name: "Beyond Good and Evil",
+ emoji: "โ๏ธ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "Living above the petty rules of the crowd.",
+ },
+ {
+ level: 942,
+ name: "The Birth of Tragedy",
+ emoji: "๐ญ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "The perfect balance of the Apollonian and the Dionysian.",
+ },
+ {
+ level: 943,
+ name: "Thus Spoke the Code",
+ emoji: "๐",
+ color: "#22c55e",
+ rarity: "epic",
+ description: "Teaching the new gospel of the digital age.",
+ },
+ {
+ level: 944,
+ name: "Zarathustra's Peak",
+ emoji: "๐๏ธ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "Standing alone on the highest mountain of thought.",
+ },
+ {
+ level: 945,
+ name: "The Twilight of Idols",
+ emoji: "๐
",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "Philosophizing with a hammer. Clang!",
+ },
+ {
+ level: 946,
+ name: "Ecce Homo",
+ emoji: "๐ค",
+ color: "#ffffff",
+ rarity: "epic",
+ description: "Behold the man. Or the player. Or the AI.",
+ },
+ {
+ level: 947,
+ name: "Antichrist Level",
+ emoji: "๐ฟ",
+ color: "#991b1b",
+ rarity: "mythic",
+ description: "The ultimate revaluation of all values.",
+ },
+ {
+ level: 948,
+ name: "Will to Truth",
+ emoji: "๐ก",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "The dangerous desire to know everything, no matter the cost.",
+ },
+ {
+ level: 949,
+ name: "Genealogy of Morals",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "epic",
+ description: "Tracing the origin of your current XP grind.",
+ },
+ {
+ level: 950,
+ name: "Post-Philosopher",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "You've thought all there is to think. Time for action.",
+ },
+ {
+ level: 951,
+ name: "The Silence of Buddha",
+ emoji: "๐คซ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "Some questions are better left unanswered.",
+ },
+ {
+ level: 952,
+ name: "Zen Koan Solver",
+ emoji: "โ",
+ color: "#ffffff",
+ rarity: "epic",
+ description:
+ "What is the sound of one hand clapping? You just figured it out.",
+ },
+ {
+ level: 953,
+ name: "Empty Mirror",
+ emoji: "๐ช",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "The mirror reflects the world, but stays empty itself.",
+ },
+ {
+ level: 954,
+ name: "No-Self (Anatta)",
+ emoji: "๐ซฅ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "The 'I' was just a level-up notification all along.",
+ },
+ {
+ level: 955,
+ name: "Middle Way Traveler",
+ emoji: "๐ฃ๏ธ",
+ color: "#ffffff",
+ rarity: "rare",
+ description: "Avoiding the extremes. Just the right amount of XP.",
+ },
+ {
+ level: 956,
+ name: "Boddhisattva Oath",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "I will not hit Level 1000 until everyone else has too.",
+ },
+ {
+ level: 957,
+ name: "Enlightenment Spark",
+ emoji: "โจ",
+ color: "#ffffff",
+ rarity: "epic",
+ description: "The sudden realization that the game isn't a game.",
+ },
+ {
+ level: 958,
+ name: "Satori Glimpse",
+ emoji: "๐๏ธ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "A flash of pure, unadulterated reality.",
+ },
+ {
+ level: 959,
+ name: "Samadhi Absorption",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "Diving into the ocean of consciousness and staying there.",
+ },
+ {
+ level: 960,
+ name: "Turiya (The Fourth State)",
+ emoji: "4๏ธโฃ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description:
+ "Beyond waking, dreaming, and deep sleep. The background of everything.",
+ },
+ {
+ level: 961,
+ name: "The Unstruck Sound",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "The Om that vibrates without a cause.",
+ },
+ {
+ level: 962,
+ name: "Lotus Petal Opener",
+ emoji: "๐ชท",
+ color: "#ec4899",
+ rarity: "epic",
+ description: "The thousand-petaled lotus is beginning to bloom.",
+ },
+ {
+ level: 963,
+ name: "Chakra Alignment",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "Your energy centers are perfectly stacked. You're glowing.",
+ },
+ {
+ level: 964,
+ name: "Kundalini Rising",
+ emoji: "๐",
+ color: "#f97316",
+ rarity: "mythic",
+ description: "The serpent power is reaching the crown of your head.",
+ },
+ {
+ level: 965,
+ name: "Third Eye Wide",
+ emoji: "๐๏ธ",
+ color: "#7c3aed",
+ rarity: "mythic",
+ description: "Seeing the 11th dimension as clearly as the 1st.",
+ },
+ {
+ level: 966,
+ name: "Crown Jewel",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "The summit of spiritual attainment.",
+ },
+ {
+ level: 967,
+ name: "Jewel in the Heart",
+ emoji: "โค๏ธ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "Om Mani Padme Hum. The treasure is inside you.",
+ },
+ {
+ level: 968,
+ name: "The Great Compassion",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "Feeling the pain of every single bug in the code.",
+ },
+ {
+ level: 969,
+ name: "Infinite Loving-Kindness",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "Wishing Level 1000 for all beings.",
+ },
+ {
+ level: 970,
+ name: "The Equanimous Mind",
+ emoji: "โ๏ธ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "Neither pleasure nor pain can knock you off balance now.",
+ },
+ {
+ level: 971,
+ name: "Mind Like Water",
+ emoji: "๐ง",
+ color: "#38bdf8",
+ rarity: "epic",
+ description: "Perfectly reflective, perfectly calm, perfectly deep.",
+ },
+ {
+ level: 972,
+ name: "Empty Hand (Karate)",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "rare",
+ description: "You don't need weapons when you are the weapon.",
+ },
+ {
+ level: 973,
+ name: "The Tao of Code",
+ emoji: "๐",
+ color: "#10b981",
+ rarity: "legendary",
+ description: "The code that can be written is not the eternal code.",
+ },
+ {
+ level: 974,
+ name: "Wu Wei (Non-Action)",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "Winning the game by not playing it.",
+ },
+ {
+ level: 975,
+ name: "The Way (Tao)",
+ emoji: "๐ฃ๏ธ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "Flowing with the universe instead of fighting against it.",
+ },
+ {
+ level: 976,
+ name: "Yin and Yang Balance",
+ emoji: "โฏ๏ธ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "The dark and the light are one. Finally.",
+ },
+ {
+ level: 977,
+ name: "The Five Elements",
+ emoji: "๐ฅ",
+ color: "#ffffff",
+ rarity: "epic",
+ description: "Mastering Fire, Water, Wood, Metal, and Earth.",
+ },
+ {
+ level: 978,
+ name: "Heavenly Harmony",
+ emoji: "โ๏ธ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "The stars and the earth are singing together.",
+ },
+ {
+ level: 979,
+ name: "Sage of the Forest",
+ emoji: "๐ณ",
+ color: "#166534",
+ rarity: "rare",
+ description: "Living simply, knowing deeply.",
+ },
+ {
+ level: 980,
+ name: "Mountain Immortal",
+ emoji: "๐๏ธ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "Living above the clouds for a thousand years.",
+ },
+ {
+ level: 981,
+ name: "Dragon's Wisdom",
+ emoji: "๐",
+ color: "#fbbf24",
+ rarity: "mythic",
+ description: "The ancient, fiery knowledge of the depths.",
+ },
+ {
+ level: 982,
+ name: "Phoenix's Grace",
+ emoji: "๐ฆ",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "Born again from the ashes of your old levels.",
+ },
+ {
+ level: 983,
+ name: "Tiger's Strength",
+ emoji: "๐
",
+ color: "#ffffff",
+ rarity: "epic",
+ description: "Raw, unbridled power under perfect control.",
+ },
+ {
+ level: 984,
+ name: "Tortoise's Longevity",
+ emoji: "๐ข",
+ color: "#ffffff",
+ rarity: "rare",
+ description: "Slow and steady wins the race to Infinity.",
+ },
+ {
+ level: 985,
+ name: "The Jade Emperor",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "Ruling the celestial bureaucracy with a fair hand.",
+ },
+ {
+ level: 986,
+ name: "Peach of Immortality",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "legendary",
+ description:
+ "One bite and you'll never have to worry about a health bar again.",
+ },
+ {
+ level: 987,
+ name: "Celestial Court Member",
+ emoji: "๐๏ธ",
+ color: "#ffffff",
+ rarity: "epic",
+ description: "Your seat at the divine table is reserved.",
+ },
+ {
+ level: 988,
+ name: "Keeper of the Books",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "Holding the records of every action ever taken.",
+ },
+ {
+ level: 989,
+ name: "Writer of Fate",
+ emoji: "โ๏ธ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "Deciding what the future holds for those below you.",
+ },
+ {
+ level: 990,
+ name: "Eraser of Worlds",
+ emoji: "๐งน",
+ color: "#000000",
+ rarity: "mythic",
+ description: "Cleaning the board so a new game can begin.",
+ },
+ {
+ level: 991,
+ name: "The Beginning of the End",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "epic",
+ description: "The finish line is in sight. Don't stop now.",
+ },
+ {
+ level: 992,
+ name: "The End of the Beginning",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "legendary",
+ description: "The tutorial is almost over.",
+ },
+ {
+ level: 993,
+ name: "The Alpha Point",
+ emoji: "ฮ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "The very first letter of the cosmic alphabet.",
+ },
+ {
+ level: 994,
+ name: "The Omega Point",
+ emoji: "ฮฉ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "The very last letter. The culmination of all things.",
+ },
+ {
+ level: 995,
+ name: "The Word (Logos)",
+ emoji: "๐ฃ๏ธ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "In the beginning was the Word, and the Word was Level 995.",
+ },
+ {
+ level: 996,
+ name: "The Pure Light",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "So bright you can't even see the UI anymore.",
+ },
+ {
+ level: 997,
+ name: "The Divine Spark",
+ emoji: "โจ",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "The tiny bit of godhood inside every line of code.",
+ },
+ {
+ level: 998,
+ name: "The One True Source",
+ emoji: "๐",
+ color: "#fbbf24",
+ rarity: "mythic",
+ description: "The sun from which all logic and life flows.",
+ },
+ {
+ level: 999,
+ name: "Infinity - 1",
+ emoji: "๐",
+ color: "#ffffff",
+ rarity: "mythic",
+ description: "The hardest level of all. Just one more step.",
+ },
+ {
+ level: 1000,
+ name: "Infinity",
+ emoji: "โพ๏ธ",
+ color: "#ffffff",
+ rarity: "absolute",
+ description:
+ "You are the game. You are the player. You are everything. Forever.",
+ },
];
diff --git a/src/assets/js/script.js b/src/assets/js/script.js
index 34ab265..e5d8040 100644
--- a/src/assets/js/script.js
+++ b/src/assets/js/script.js
@@ -1015,13 +1015,13 @@ function updateInventoryCounts(lvl) {
// Inject counts into the Tooltip DOM
const elements = {
- 'count-common': counts.common,
- 'count-uncommon': counts.uncommon,
- 'count-rare': counts.rare,
- 'count-epic': counts.epic,
- 'count-legendary': counts.legendary,
- 'count-mythic': counts.mythic,
- 'count-absolute': counts.absolute,
+ "count-common": counts.common,
+ "count-uncommon": counts.uncommon,
+ "count-rare": counts.rare,
+ "count-epic": counts.epic,
+ "count-legendary": counts.legendary,
+ "count-mythic": counts.mythic,
+ "count-absolute": counts.absolute,
};
for (const [id, val] of Object.entries(elements)) {
@@ -1031,31 +1031,31 @@ function updateInventoryCounts(lvl) {
}
function updateLevelUI(levelData) {
- // ... your existing code to update level-name and level-number ...
-
- const tooltipDesc = document.getElementById('tooltip-desc');
- const tooltipRarity = document.getElementById('tooltip-rarity');
- const tooltipCard = document.getElementById('level-tooltip');
-
- // Update Text
- tooltipDesc.innerText = levelData.description;
- tooltipRarity.innerText = levelData.rarity;
-
- // Optional: Dynamic Color based on rarity
- const rarityColors = {
- common: "var(--rarity-common)",
- uncommon: "var(--rarity-uncommon)",
- rare: "var(--rarity-rare)",
- epic: "var(--rarity-epic)",
- legendary: "var(--rarity-legendary)",
- mythic: "var(--rarity-mythic)",
- absolute: "var(--rarity-absolute)"
- };
-
- const color = rarityColors[levelData.rarity] || "var(--accent)";
- tooltipRarity.style.backgroundColor = `${color}20`; // 20 is hex alpha for transparency
- tooltipRarity.style.color = color;
- tooltipCard.style.borderColor = `${color}40`; // Subtle border glow
+ // ... your existing code to update level-name and level-number ...
+
+ const tooltipDesc = document.getElementById("tooltip-desc");
+ const tooltipRarity = document.getElementById("tooltip-rarity");
+ const tooltipCard = document.getElementById("level-tooltip");
+
+ // Update Text
+ tooltipDesc.innerText = levelData.description;
+ tooltipRarity.innerText = levelData.rarity;
+
+ // Optional: Dynamic Color based on rarity
+ const rarityColors = {
+ common: "var(--rarity-common)",
+ uncommon: "var(--rarity-uncommon)",
+ rare: "var(--rarity-rare)",
+ epic: "var(--rarity-epic)",
+ legendary: "var(--rarity-legendary)",
+ mythic: "var(--rarity-mythic)",
+ absolute: "var(--rarity-absolute)",
+ };
+
+ const color = rarityColors[levelData.rarity] || "var(--accent)";
+ tooltipRarity.style.backgroundColor = `${color}20`; // 20 is hex alpha for transparency
+ tooltipRarity.style.color = color;
+ tooltipCard.style.borderColor = `${color}40`; // Subtle border glow
}
function updateGameUI() {
@@ -1238,18 +1238,18 @@ document.addEventListener("DOMContentLoaded", () => {
}
const container = document.getElementById("matrix-console-container");
- const reopenBtn = document.getElementById("reopen-console-btn");
+ const reopenBtn = document.getElementById("reopen-console-btn");
- // Force closed state on load
- if (container) {
- container.classList.add("hidden");
- container.style.opacity = "0";
- container.style.transform = "translateY(20px)";
- }
+ // Force closed state on load
+ if (container) {
+ container.classList.add("hidden");
+ container.style.opacity = "0";
+ container.style.transform = "translateY(20px)";
+ }
- if (reopenBtn) {
- reopenBtn.classList.remove("hidden");
- }
+ if (reopenBtn) {
+ reopenBtn.classList.remove("hidden");
+ }
initDotEasterEgg();
initSkillMining();