|
|
| Line 1: |
Line 1: |
| <style>
| |
| /* ═══════════════════════════════════════════════════════
| |
| EXTRACTION FIELDS — AAA+ STYLESHEET
| |
| Theme: Cyan/Teal #26c6da · Dark #0a0e14
| |
| ═══════════════════════════════════════════════════════ */
| |
|
| |
| /* ── Keyframes ── */
| |
| @keyframes field-glow{
| |
| 0%,100%{text-shadow:0 0 18px #26c6da,0 0 36px #0097a7,0 0 60px #004d5a;}
| |
| 50%{text-shadow:0 0 30px #4dd0e1,0 0 60px #26c6da,0 0 90px #00bcd4;}
| |
| }
| |
| @keyframes hero-edge{
| |
| 0%{background-position:0% 50%;}
| |
| 50%{background-position:100% 50%;}
| |
| 100%{background-position:0% 50%;}
| |
| }
| |
| @keyframes ore-pulse-common{
| |
| 0%,100%{box-shadow:0 0 0 2px #78909c,0 0 14px #37474f;}
| |
| 50%{box-shadow:0 0 0 3px #b0bec5,0 0 28px #607d8b;}
| |
| }
| |
| @keyframes ore-pulse-epic{
| |
| 0%,100%{box-shadow:0 0 0 2px #ffd54f,0 0 18px #f57f17;}
| |
| 50%{box-shadow:0 0 0 4px #ffe082,0 0 36px #ffc107;}
| |
| }
| |
| @keyframes vein-lift{
| |
| from{opacity:0;transform:translateY(22px);}
| |
| to{opacity:1;transform:translateY(0);}
| |
| }
| |
| @keyframes track-cyan{
| |
| 0%{background-position:0% 50%;}
| |
| 100%{background-position:200% 50%;}
| |
| }
| |
| @keyframes tier-low{
| |
| 0%,100%{box-shadow:0 0 0 2px #66bb6a,0 0 12px #2e7d32;}
| |
| 50%{box-shadow:0 0 0 3px #a5d6a7,0 0 24px #388e3c;}
| |
| }
| |
| @keyframes tier-deep{
| |
| 0%,100%{box-shadow:0 0 0 2px #ffa726,0 0 12px #e65100;}
| |
| 50%{box-shadow:0 0 0 3px #ffcc80,0 0 24px #f57c00;}
| |
| }
| |
| @keyframes tier-guardian{
| |
| 0%,100%{box-shadow:0 0 0 2px #ef5350,0 0 14px #b71c1c;}
| |
| 50%{box-shadow:0 0 0 4px #ef9a9a,0 0 28px #c62828;}
| |
| }
| |
| @keyframes section-in{
| |
| from{opacity:0;transform:translateY(16px);}
| |
| to{opacity:1;transform:translateY(0);}
| |
| }
| |
| @keyframes spin-slow{
| |
| from{transform:rotate(0deg);}
| |
| to{transform:rotate(360deg);}
| |
| }
| |
| @keyframes hazard-march{
| |
| 0%{background-position:0 0;}
| |
| 100%{background-position:40px 0;}
| |
| }
| |
| @keyframes mvp-glow{
| |
| 0%,100%{box-shadow:0 0 0 2px #ce93d8,0 0 16px #7b1fa2;}
| |
| 50%{box-shadow:0 0 0 4px #e1bee7,0 0 32px #ab47bc;}
| |
| }
| |
| @keyframes badge-pop{
| |
| 0%{transform:scale(0.8);opacity:0;}
| |
| 60%{transform:scale(1.1);}
| |
| 100%{transform:scale(1);opacity:1;}
| |
| }
| |
|
| |
|
| /* ── Ore cards ── */ | | /* ── Ore cards ── */ |
/* ── Ore cards ── */
.ore-card-common{
background:linear-gradient(135deg,#0d1117 0%,#12191f 50%,#0a1016 100%);
border:1px solid #37474f;border-radius:10px;
padding:18px;cursor:default;
transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
animation:ore-pulse-common 3s ease-in-out infinite;
}
.ore-card-common:hover{
transform:translateY(-6px);
border-color:#78909c;
box-shadow:0 12px 36px rgba(96,125,139,.45);
animation:none;
}
.ore-card-epic{
background:linear-gradient(135deg,#0d0f07 0%,#141209 50%,#0a0c06 100%);
border:1px solid #7c5c00;border-radius:10px;
padding:18px;cursor:default;
transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
animation:ore-pulse-epic 2.5s ease-in-out infinite;
}
.ore-card-epic:hover{
transform:translateY(-6px);
border-color:#ffd54f;
box-shadow:0 12px 36px rgba(255,193,7,.35);
animation:none;
}
/* ── Tier nodes ── */
.tier-node{
display:inline-flex;flex-direction:column;align-items:center;gap:6px;
cursor:default;
}
.tier-orb{
width:64px;height:64px;border-radius:50%;
display:flex;align-items:center;justify-content:center;
font-size:22px;font-weight:900;
transition:transform .25s ease,filter .25s ease;
}
.tier-orb:hover{transform:scale(1.15);filter:brightness(1.3);}
.tier-orb.t-low{
background:radial-gradient(circle,#1b5e20 0%,#0a1a0a 100%);
border:2px solid #66bb6a;
animation:tier-low 3s ease-in-out infinite;
}
.tier-orb.t-deep{
background:radial-gradient(circle,#5c3200 0%,#1a0e00 100%);
border:2px solid #ffa726;
animation:tier-deep 3s ease-in-out infinite;
}
.tier-orb.t-guardian{
background:radial-gradient(circle,#5c0000 0%,#1a0000 100%);
border:2px solid #ef5350;
animation:tier-guardian 2.5s ease-in-out infinite;
}
/* ── Connector track ── */
.field-track{
flex:1;height:4px;border-radius:2px;
background:linear-gradient(90deg,#26c6da,#0097a7,#26c6da);
background-size:200% 100%;
animation:track-cyan 2s linear infinite;
}
/* ── MVP cards ── */
.mvp-card{
background:linear-gradient(135deg,#12091a 0%,#1a0a28 50%,#0e0615 100%);
border:1px solid #6a1b9a;border-radius:10px;padding:16px;
transition:transform .3s,box-shadow .3s,border-color .3s;
animation:mvp-glow 3s ease-in-out infinite;
}
.mvp-card:hover{
transform:translateY(-5px);
border-color:#ce93d8;
box-shadow:0 10px 30px rgba(171,71,188,.4);
animation:none;
}
/* ── Pill badges ── */
.pill{
display:inline-block;padding:2px 10px;border-radius:20px;
font-size:11px;font-weight:700;letter-spacing:.5px;
animation:badge-pop .4s ease both;
}
.pill-common{background:#1c2d35;border:1px solid #546e7a;color:#b0bec5;}
.pill-epic{background:#2d2200;border:1px solid #ffa000;color:#ffe082;}
.pill-rare{background:#1a0a28;border:1px solid #ab47bc;color:#e1bee7;}
.pill-pvp{background:#2d0000;border:1px solid #ef5350;color:#ffcdd2;}
/* ── Stat bubble ── */
.stat-bubble{
background:#0d1117;border:1px solid #26c6da44;border-radius:8px;
padding:12px 16px;text-align:center;
transition:border-color .3s,box-shadow .3s;
}
.stat-bubble:hover{border-color:#26c6da;box-shadow:0 0 18px #26c6da33;}
/* ── Strategy cards ── */
.strat-card{
background:linear-gradient(135deg,#060d12 0%,#0c1820 100%);
border-left:3px solid #26c6da;border-radius:0 8px 8px 0;
padding:14px 18px;margin-bottom:10px;
transition:border-color .3s,background .3s,transform .25s;
}
.strat-card:hover{
transform:translateX(6px);
border-color:#80deea;
background:linear-gradient(135deg,#0a1622 0%,#122030 100%);
}
/* ── Section animation wrapper ── */
.ef-section{animation:section-in .6s ease both;}
</style>
⛏
Open World Resource Warfare
⚔ Open PvP
⛏ Mineral Vein
✦ Epic Vein
👹 Guardian MVPs
⚔
Open PvP Zone
All Extraction Fields are open PvP territories. Any player can attack any other player at any time. Securing your haul requires combat readiness as much as mining efficiency.
⛏
Ore Veins
Two vein types spawn throughout the field: Mineral Veins (common) and Epic Veins (legendary). Each yields a completely different item pool with dramatically different drop chances.
👹
Guardian Monster
Each field zone is protected by a powerful Guardian MVP. Defeating the Guardian grants bonus loot and temporary control of the richest ore deposits in that zone.
🗺
Enter Zone
Choose Low · Deep · or Guardian field
⛏
Locate Vein
Find Mineral or Epic Vein deposits on the map
💎
Mine Ore
Attack the vein to collect materials each hit
⚔
Defend Loot
Other players will compete — fight or flee
🏆
Extract
Exit the field to bank your collected ores safely
Navigation
Field Zone Navigator
Three progressive danger tiers — higher risk yields better Epic Vein density
💀
Guardian Field
Lv 81 – 99
🌿
Low Extraction Field
Level 1 – 40
Mineral Vein DensityHigh
Epic Vein DensityLow
PvP ThreatModerate
GuardianYes
Ideal for new extractors. Abundant Mineral Veins ensure steady iron, coal, and steel income. Epic Veins are present but sparse.
🔥
Deep Extraction Field
Level 41 – 80
Mineral Vein DensityMedium
Epic Vein DensityMedium
PvP ThreatHigh
GuardianYes
Balanced risk-reward. Both vein types found in meaningful quantities. Expect frequent player conflict over Epic Vein nodes.
💀
Guardian Extraction Field
Level 81 – 99
Mineral Vein DensityLow
Epic Vein DensityVery High
PvP ThreatExtreme
GuardianElite MVP
Maximum danger, maximum reward. Dense Epic Vein clusters. Top-tier guilds contest this zone constantly. Only the strongest survive.
Resource System
Ore Vein Types
Two completely separate item pools — each vein type drops its own distinct materials
Found throughout all field zones. Drops base crafting materials used in equipment refinement and general production. The backbone of the extraction economy.
Item Drop Pool
🔷 Rough Oridecon
Moderate
✦ Mithril Ore
0.03% ultra
Rare spawns concentrated in deeper zones. Drops premium refinement materials and exclusive gem variants not obtainable from Mineral Veins. Heavily contested.
Item Drop Pool
✦ Epic Vein Exclusive Gems
🟢 Cursed Emerald
1.5% rare
⚡ Key Difference at a Glance
🪨
Mineral Vein — Oridecon
3%
per hit chance
✨
Epic Vein — Oridecon
17%
per hit chance
🔵
Sea Sapphire
Epic Only
not in Mineral Vein
✦
Mithril Ore
0.03% / 5%
Mineral / Epic
Crafting
How raw ores refine into usable materials for equipment upgrading
| Raw Material
|
Processes Into
|
Used For
|
Notes
|
| 🪨 Iron Ore
|
Iron → Steel
|
Equipment crafting, Refinement reagent
|
Core smelting chain starter
|
| 💠 Phracon
|
Emveretarcon
|
Lv1–Lv2 weapon refine ore
|
Refine NPC only
|
| 🔷 Rough Oridecon
|
Oridecon (3% drop upgrade)
|
Lv3–Lv4 weapon refine
|
Base → Refined via NPC
|
| 🔶 Rough Elunium
|
Elunium (3.5% drop upgrade)
|
Armor refinement ore
|
Base → Refined via NPC
|
| 👑 Emperium
|
(Final — no further refine)
|
Guild Castles, special craft
|
Very rare from Mineral Vein
|
| ✦ Mithril Ore
|
(Final — no further refine)
|
Endgame equipment
|
0.03% — ultra rare from Mineral Vein
|
| Epic Material
|
Drop Rate
|
Used For
|
Rarity
|
| 💎 Oridecon
|
17%
|
Lv3–Lv4 weapon refine
|
style="padding:10px 14px;border-bottom:1px solid #1e1800;">Epic High |
| 💎 Elunium
|
17%
|
Armor refine
|
style="padding:10px 14px;border-bottom:1px solid #1e1800;">Epic High |
| ❤ Ruby
|
11%
|
Jewelry crafting, trade
|
style="padding:10px 14px;border-bottom:1px solid #1e1800;">Epic High |
| 💚 Emerald
|
11%
|
Jewelry crafting, trade
|
style="padding:10px 14px;border-bottom:1px solid #1e1800;">Epic High |
| 👑 Emperium
|
6.5%
|
Guild Castles, special craft
|
style="padding:10px 14px;border-bottom:1px solid #1e1800;">Rare |
| 🟢 Cursed Emerald
|
1.5%
|
Exclusive recipes
|
style="padding:10px 14px;border-bottom:1px solid #1e1800;">Epic Exclusive |
| 🔵 Shiny Opal
|
1.5%
|
Exclusive recipes
|
style="padding:10px 14px;border-bottom:1px solid #1e1800;">Epic Exclusive |
| 💙 Sea Sapphire
|
1.5%
|
Exclusive recipes
|
style="padding:10px 14px;border-bottom:1px solid #1e1800;">Epic Exclusive |
| 🔴 Bloody Ruby
|
1.5%
|
Exclusive recipes
|
style="padding:10px 14px;border-bottom:1px solid #1e1800;">Epic Exclusive |
| ✦ Mithril Ore
|
5%
|
Endgame equipment
|
style="padding:10px 14px;">Endgame |
Elite Enemies
Guardian MVPs
Each zone hosts a Guardian MVP that defends its ore deposits — defeat them for bonus rewards
🌿
Low Field Guardian
Level 1 – 40 Zone
Patrols the Low Extraction Field. Relatively accessible for mid-level parties. Drops bonus common ores and occasional Epic Vein materials upon defeat.
Difficulty★★☆☆☆
Respawn60 minutes
Bonus LootCommon + Rare chance
🔥
Deep Field Guardian
Level 41 – 80 Zone
Commands the Deep Extraction Field. Requires coordinated group effort. Drops a mix of refined ore materials and exclusive gem drops not found in the drop tables above.
Difficulty★★★☆☆
Respawn90 minutes
Bonus LootRefined ores + Gem chance
💀
Field Warlord
Guardian Zone — Lv 81–99
The supreme guardian of the Guardian Extraction Field. Elite-level MVP requiring large organized groups. Defeating the Warlord grants temporary zone control and drops the rarest extraction rewards.
Difficulty★★★★★
Respawn120 minutes
Bonus LootMithril · Epic exclusives
⚠
Open PvP Warning — All Field Zones
All Extraction Fields are designated open PvP zones. You can be attacked by any player at any time regardless of guild, party, or faction. Death in an Extraction Field results in dropping a portion of your collected ores. Plan your extraction runs accordingly — travel in groups, watch your surroundings, and never carry more than you can afford to lose.
⚠ No Safe Zone
💀 Ore Drop on Death
⚔ Any vs Any
⛏ Prioritize Epic Veins in Guardian Zone
The Guardian Field has the highest Epic Vein density. Even short runs yield Oridecon/Elunium at 17% per hit — dramatically outpacing Mineral Vein's 3% chance. Bring a combat escort.
💎 Stack Mining Speed
More hits per minute = more drop rolls. Classes with high ASPD or AoE skills can mine multiple veins simultaneously. Maximize extraction efficiency before PvP pressure arrives.
👁 Scout Before Committing
Use hide, cloaking, or fast movement to survey Epic Vein locations before exposing yourself. Knowing the vein layout lets you plan efficient circuits and quick exit routes.
🏃 Trip Extraction
Make multiple short runs rather than one long session. Exit when your inventory is ~70% full. Losing a full load to a ganker hurts far more than making extra trips.
👹 Coordinate Guardian Kills
Organize Guardian MVP kills with your guild to secure zone control. The Warlord's Mithril Ore drop can fund multiple equipment refinement sessions — worth the effort.
🪙 Sell vs Refine Decision
Oridecon and Elunium from Epic Veins are directly usable for +7 to +10 refinement. Evaluate whether market value or personal upgrade priority is higher before selling bulk.
🪨
17 Items
Mineral Vein pool
✨
13 Items
Epic Vein pool
🔮
4 Exclusives
Epic-only gem variants
✦
Mithril Ore
Endgame — both veins
👹
3 Guardians
One per field tier