Extraction Fields: Difference between revisions

From TimeRO Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
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-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>
{{DISPLAYTITLE:Extraction Fields}}
{{DISPLAYTITLE:Extraction Fields}}
__TOC__
__TOC__


<!-- ═══════════════════════════════════════════════════════════
<!-- ══════════════════════════════════════════════════
     HERO BANNER
     HERO BANNER
════════════════════════════════════════════════════════════ -->
    ══════════════════════════════════════════════════ -->
<div style="background:linear-gradient(135deg,rgba(4,24,32,0.28),rgba(2,14,20,0.18),rgba(2,8,14,0.08));border:2px solid rgba(38,198,218,0.50);border-left:5px solid #26c6da;border-radius:10px;padding:22px 28px 20px;margin:0 0 30px 0;position:relative;overflow:hidden;">
<div style="position:relative;border-radius:16px;overflow:hidden;margin-bottom:30px;background:#060c10;">
<div style="position:absolute;top:0;right:0;width:280px;height:100%;background:linear-gradient(270deg,rgba(38,198,218,0.12),transparent);pointer-events:none;"></div>
<div style="position:absolute;inset:0;background:linear-gradient(135deg,#003344 0%,#004d5a 25%,#006064 50%,#004d5a 75%,#003344 100%);background-size:400% 400%;animation:hero-edge 8s ease infinite;opacity:.65;"></div>
<div style="position:absolute;bottom:-18px;right:28px;font-size:5em;opacity:0.05;pointer-events:none;line-height:1;">⛏</div>
<div style="position:absolute;inset:0;background:repeating-linear-gradient(0deg,transparent,transparent 38px,#26c6da0d 38px,#26c6da0d 40px),repeating-linear-gradient(90deg,transparent,transparent 38px,#26c6da0d 38px,#26c6da0d 40px);"></div>
<div style="font-family:'Georgia',serif;font-size:1.48em;font-weight:bold;color:#26c6da;letter-spacing:0.07em;text-transform:uppercase;margin-bottom:10px;text-shadow:0 0 22px rgba(38,198,218,0.50);">⛏ Extraction Fields</div>
<div style="position:relative;padding:44px 40px 36px;text-align:center;">
<div style="color:#b0d8e0;font-size:0.96em;line-height:1.70;max-width:840px;">High-risk mining zones where players compete for rare materials, unstable ore veins, and guardian MVPs. Extraction Fields are built around <strong style="color:#80deea;">open PvP, two active mining vein categories, valuable ore rewards, powerful guardian monsters, and extraction-based equipment progression.</strong> The risk is real. The rewards are rare.</div>
<div style="font-size:54px;margin-bottom:10px;filter:drop-shadow(0 0 18px #26c6da);">⛏</div>
<h1 style="font-size:42px;font-weight:900;letter-spacing:3px;margin:0 0 10px;color:#26c6da;animation:field-glow 3s ease-in-out infinite;text-transform:uppercase;">Extraction Fields</h1>
<div style="font-size:13px;letter-spacing:5px;color:#80deea;text-transform:uppercase;margin-bottom:18px;">Open World Resource Warfare</div>
<div style="display:flex;justify-content:center;gap:12px;flex-wrap:wrap;">
<span class="pill pill-pvp">⚔ Open PvP</span>
<span class="pill pill-common">⛏ Mineral Vein</span>
<span class="pill pill-epic">✦ Epic Vein</span>
<span class="pill pill-rare">👹 Guardian MVPs</span>
</div>
</div>
</div>
</div>


<!-- ═══════════════════════════════════════════════════════════
<!-- ══════════════════════════════════════════════════
     CORE RULES — 3 PILLARS
     CORE RULES — THREE PILLARS
════════════════════════════════════════════════════════════ -->
    ══════════════════════════════════════════════════ -->
== Core Extraction Rules ==
<div class="ef-section" style="margin-bottom:28px;">
<div style="text-align:center;margin-bottom:20px;">
<span style="font-size:11px;letter-spacing:4px;color:#26c6da;text-transform:uppercase;">Core Rules</span>
<h2 style="font-size:22px;color:#e0f7fa;margin:6px 0;font-weight:800;">Three Pillars of Extraction</h2>
</div>
<div style="display:flex;gap:16px;flex-wrap:wrap;">


<div style="display:grid;grid-template-columns:1fr 1fr 1fr;gap:16px;margin:0 0 30px 0;">
<div style="flex:1;min-width:200px;background:#060d12;border:1px solid #26c6da33;border-top:3px solid #ef5350;border-radius:10px;padding:22px;">
<div style="font-size:28px;margin-bottom:8px;">⚔</div>
<div style="font-size:13px;font-weight:800;color:#ef9a9a;text-transform:uppercase;letter-spacing:1px;margin-bottom:8px;">Open PvP Zone</div>
<div style="font-size:13px;color:#90a4ae;line-height:1.7;">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.</div>
</div>


<div style="background:linear-gradient(160deg,rgba(8,20,38,0.90),rgba(4,10,22,0.97));border:1px solid rgba(80,160,255,0.32);border-top:3px solid #42a5f5;border-radius:10px;padding:22px 18px;position:relative;overflow:hidden;">
<div style="flex:1;min-width:200px;background:#060d12;border:1px solid #26c6da33;border-top:3px solid #26c6da;border-radius:10px;padding:22px;">
<div style="position:absolute;bottom:0;right:0;width:80px;height:80px;background:radial-gradient(circle,rgba(66,165,245,0.08),transparent);pointer-events:none;"></div>
<div style="font-size:28px;margin-bottom:8px;"></div>
<div style="font-size:1.8em;margin-bottom:10px;">⚔️</div>
<div style="font-size:13px;font-weight:800;color:#80deea;text-transform:uppercase;letter-spacing:1px;margin-bottom:8px;">Ore Veins</div>
<div style="font-weight:bold;color:#64b5f6;font-size:1.0em;letter-spacing:0.06em;text-transform:uppercase;margin-bottom:10px;">Open PvP</div>
<div style="font-size:13px;color:#90a4ae;line-height:1.7;">Two vein types spawn throughout the field: <strong style="color:#b0bec5;">Mineral Veins</strong> (common) and <strong style="color:#ffe082;">Epic Veins</strong> (legendary). Each yields a completely different item pool with dramatically different drop chances.</div>
<div style="color:#7898b8;font-size:0.88em;line-height:1.70;">Players compete directly over mining routes, rare veins, and guardian spawns. Other players can interrupt, ambush, or contest your extraction route at any time.</div>
</div>
</div>


<div style="background:linear-gradient(160deg,rgba(4,24,26,0.90),rgba(2,14,16,0.97));border:1px solid rgba(38,198,218,0.32);border-top:3px solid #26c6da;border-radius:10px;padding:22px 18px;position:relative;overflow:hidden;">
<div style="flex:1;min-width:200px;background:#060d12;border:1px solid #26c6da33;border-top:3px solid #ab47bc;border-radius:10px;padding:22px;">
<div style="position:absolute;bottom:0;right:0;width:80px;height:80px;background:radial-gradient(circle,rgba(38,198,218,0.08),transparent);pointer-events:none;"></div>
<div style="font-size:28px;margin-bottom:8px;">👹</div>
<div style="font-size:1.8em;margin-bottom:10px;">💎</div>
<div style="font-size:13px;font-weight:800;color:#ce93d8;text-transform:uppercase;letter-spacing:1px;margin-bottom:8px;">Guardian Monster</div>
<div style="font-weight:bold;color:#4dd0e1;font-size:1.0em;letter-spacing:0.06em;text-transform:uppercase;margin-bottom:10px;">Ore Veins</div>
<div style="font-size:13px;color:#90a4ae;line-height:1.7;">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.</div>
<div style="color:#608888;font-size:0.88em;line-height:1.70;">Mining nodes spawn throughout the map as Mineral Veins or Epic Veins. Mineral Veins support general progression, while Epic Veins concentrate the highest-value rewards and attract far more danger from both monsters and players.</div>
</div>
</div>


<div style="background:linear-gradient(160deg,rgba(34,16,6,0.90),rgba(18,8,2,0.97));border:1px solid rgba(240,160,60,0.32);border-top:3px solid #ff9800;border-radius:10px;padding:22px 18px;position:relative;overflow:hidden;">
</div>
<div style="position:absolute;bottom:0;right:0;width:80px;height:80px;background:radial-gradient(circle,rgba(255,152,0,0.08),transparent);pointer-events:none;"></div>
<div style="font-size:1.8em;margin-bottom:10px;">🐲</div>
<div style="font-weight:bold;color:#ffb74d;font-size:1.0em;letter-spacing:0.06em;text-transform:uppercase;margin-bottom:10px;">Guardian Monster</div>
<div style="color:#907050;font-size:0.88em;line-height:1.70;">Powerful guardian bosses defend the extraction zone, punish greedy miners, and drop rare extraction-exclusive materials unavailable anywhere else.</div>
</div>
</div>


<!-- ══════════════════════════════════════════════════
    HOW IT WORKS — 5-STEP CYCLE
    ══════════════════════════════════════════════════ -->
<div class="ef-section" style="background:#060c10;border:1px solid #26c6da22;border-radius:14px;padding:28px;margin-bottom:28px;">
<div style="text-align:center;margin-bottom:24px;">
<span style="font-size:11px;letter-spacing:4px;color:#26c6da;text-transform:uppercase;">Mechanics</span>
<h2 style="font-size:22px;color:#e0f7fa;margin:6px 0;font-weight:800;">The Extraction Cycle</h2>
</div>
</div>
<div style="display:flex;align-items:flex-start;gap:0;flex-wrap:wrap;justify-content:center;">


<!-- ═══════════════════════════════════════════════════════════
<div style="text-align:center;min-width:130px;padding:0 8px;">
    EXTRACTION GOAL + 5-STEP FLOW (side by side)
<div style="width:52px;height:52px;border-radius:50%;background:radial-gradient(circle,#003344,#001a22);border:2px solid #26c6da;display:flex;align-items:center;justify-content:center;font-size:20px;margin:0 auto 10px;box-shadow:0 0 16px #26c6da55;">🗺</div>
════════════════════════════════════════════════════════════ -->
<div style="font-size:12px;font-weight:800;color:#26c6da;text-transform:uppercase;margin-bottom:4px;">Enter Zone</div>
== How Extraction Fields Work ==
<div style="font-size:11px;color:#78909c;line-height:1.5;">Choose Low · Deep · or Guardian field</div>
</div>


<div style="display:grid;grid-template-columns:1fr 280px;gap:18px;margin:0 0 30px 0;align-items:start;">
<div style="flex:1;min-width:24px;height:2px;margin-top:26px;background:linear-gradient(90deg,#26c6da,#0097a7);border-radius:1px;"></div>


<div>
<div style="text-align:center;min-width:130px;padding:0 8px;">
<div style="background:linear-gradient(135deg,rgba(8,26,34,0.94),rgba(4,16,22,0.99));border:2px solid rgba(38,198,218,0.30);border-left:5px solid #26c6da;border-radius:9px;padding:18px 22px;margin:0 0 16px 0;">
<div style="width:52px;height:52px;border-radius:50%;background:radial-gradient(circle,#003344,#001a22);border:2px solid #26c6da;display:flex;align-items:center;justify-content:center;font-size:20px;margin:0 auto 10px;box-shadow:0 0 16px #26c6da55;">⛏</div>
<div style="font-weight:bold;color:#4dd0e1;font-size:1.02em;letter-spacing:0.06em;text-transform:uppercase;margin-bottom:9px;">⛏ Contested Mining System</div>
<div style="font-size:12px;font-weight:800;color:#26c6da;text-transform:uppercase;margin-bottom:4px;">Locate Vein</div>
<div style="color:#607888;font-size:0.91em;line-height:1.68;">Extraction Fields are not ordinary farming maps. Every action creates <strong style="color:#90d8e0;">three simultaneous pressures</strong>: the ore veins are limited and valuable, monsters grow stronger as veins get rarer, and other players can contest your route at any moment. Success means navigating all three at once.</div>
<div style="font-size:11px;color:#78909c;line-height:1.5;">Find Mineral or Epic Vein deposits on the map</div>
</div>
</div>


<div style="display:grid;grid-template-columns:1fr 1fr 1fr;gap:10px;">
<div style="flex:1;min-width:24px;height:2px;margin-top:26px;background:linear-gradient(90deg,#26c6da,#0097a7);border-radius:1px;"></div>
<div style="padding:12px 14px;border-radius:8px;background:rgba(60,100,180,0.10);border:1px solid rgba(60,100,180,0.22);text-align:center;">
 
<div style="font-size:1.2em;margin-bottom:5px;">💎</div>
<div style="text-align:center;min-width:130px;padding:0 8px;">
<div style="font-weight:bold;color:#6090d8;font-size:0.82em;text-transform:uppercase;letter-spacing:0.06em;margin-bottom:4px;">Resource</div>
<div style="width:52px;height:52px;border-radius:50%;background:radial-gradient(circle,#003344,#001a22);border:2px solid #26c6da;display:flex;align-items:center;justify-content:center;font-size:20px;margin:0 auto 10px;box-shadow:0 0 16px #26c6da55;">💎</div>
<div style="color:#4060a0;font-size:0.78em;line-height:1.50;">Veins are limited and contested</div>
<div style="font-size:12px;font-weight:800;color:#26c6da;text-transform:uppercase;margin-bottom:4px;">Mine Ore</div>
<div style="font-size:11px;color:#78909c;line-height:1.5;">Attack the vein to collect materials each hit</div>
</div>
</div>
<div style="padding:12px 14px;border-radius:8px;background:rgba(220,60,60,0.08);border:1px solid rgba(220,60,60,0.20);text-align:center;">
 
<div style="font-size:1.2em;margin-bottom:5px;">⚔️</div>
<div style="flex:1;min-width:24px;height:2px;margin-top:26px;background:linear-gradient(90deg,#26c6da,#0097a7);border-radius:1px;"></div>
<div style="font-weight:bold;color:#c06060;font-size:0.82em;text-transform:uppercase;letter-spacing:0.06em;margin-bottom:4px;">PvP</div>
 
<div style="color:#804040;font-size:0.78em;line-height:1.50;">Players fight over routes</div>
<div style="text-align:center;min-width:130px;padding:0 8px;">
<div style="width:52px;height:52px;border-radius:50%;background:radial-gradient(circle,#4a1a00,#1a0800);border:2px solid #ffa726;display:flex;align-items:center;justify-content:center;font-size:20px;margin:0 auto 10px;box-shadow:0 0 16px #ffa72655;animation:tier-deep 3s ease-in-out infinite;"></div>
<div style="font-size:12px;font-weight:800;color:#ffa726;text-transform:uppercase;margin-bottom:4px;">Defend Loot</div>
<div style="font-size:11px;color:#78909c;line-height:1.5;">Other players will compete — fight or flee</div>
</div>
</div>
<div style="padding:12px 14px;border-radius:8px;background:rgba(240,140,20,0.08);border:1px solid rgba(240,140,20,0.20);text-align:center;">
 
<div style="font-size:1.2em;margin-bottom:5px;">🐲</div>
<div style="flex:1;min-width:24px;height:2px;margin-top:26px;background:linear-gradient(90deg,#0097a7,#26c6da);border-radius:1px;"></div>
<div style="font-weight:bold;color:#c08020;font-size:0.82em;text-transform:uppercase;letter-spacing:0.06em;margin-bottom:4px;">Monster</div>
 
<div style="color:#806030;font-size:0.78em;line-height:1.50;">Guardians punish greed</div>
<div style="text-align:center;min-width:130px;padding:0 8px;">
<div style="width:52px;height:52px;border-radius:50%;background:radial-gradient(circle,#1b5e20,#0a1a0a);border:2px solid #66bb6a;display:flex;align-items:center;justify-content:center;font-size:20px;margin:0 auto 10px;box-shadow:0 0 16px #66bb6a55;animation:tier-low 3s ease-in-out infinite;">🏆</div>
<div style="font-size:12px;font-weight:800;color:#66bb6a;text-transform:uppercase;margin-bottom:4px;">Extract</div>
<div style="font-size:11px;color:#78909c;line-height:1.5;">Exit the field to bank your collected ores safely</div>
</div>
</div>
</div>
</div>
</div>
</div>


<!-- 5-step flow vertical -->
<!-- ══════════════════════════════════════════════════
<div style="background:linear-gradient(135deg,rgba(4,18,24,0.96),rgba(2,10,16,0.99));border:1px solid rgba(38,198,218,0.18);border-radius:9px;padding:18px 16px;position:relative;overflow:hidden;">
    FIELD ZONE NAVIGATOR
<div style="position:absolute;top:0;left:0;right:0;height:2px;background:linear-gradient(90deg,transparent,rgba(38,198,218,0.40),transparent);"></div>
    ══════════════════════════════════════════════════ -->
<div style="font-family:'Courier New',monospace;font-size:0.62em;letter-spacing:0.13em;text-transform:uppercase;color:#1a4050;margin-bottom:14px;">// Extraction Cycle</div>
<div class="ef-section" style="margin-bottom:28px;">
<div style="display:flex;flex-direction:column;gap:0;position:relative;">
<div style="text-align:center;margin-bottom:20px;">
<div style="position:absolute;left:17px;top:32px;bottom:32px;width:2px;background:linear-gradient(180deg,rgba(38,198,218,0.30),rgba(38,198,218,0.06));z-index:0;"></div>
<span style="font-size:11px;letter-spacing:4px;color:#26c6da;text-transform:uppercase;">Navigation</span>
<h2 style="font-size:22px;color:#e0f7fa;margin:6px 0;font-weight:800;">Field Zone Navigator</h2>
<div style="font-size:12px;color:#78909c;">Three progressive danger tiers — higher risk yields better Epic Vein density</div>
</div>
 
<!-- Zone ladder -->
<div style="display:flex;align-items:center;justify-content:center;gap:0;padding:24px 0;background:#06090d;border-radius:14px;border:1px solid #26c6da22;margin-bottom:20px;">


<div style="display:flex;align-items:flex-start;gap:12px;padding:0 0 14px 0;position:relative;z-index:1;"><div style="width:36px;height:36px;border-radius:50%;background:rgba(38,198,218,0.16);border:2px solid rgba(38,198,218,0.38);display:flex;align-items:center;justify-content:center;font-weight:bold;color:#26c6da;font-size:0.80em;flex-shrink:0;">1</div><div style="padding-top:8px;"><div style="font-weight:bold;color:#4dd0e1;font-size:0.86em;margin-bottom:2px;">Enter the Field</div><div style="color:#2a5060;font-size:0.78em;line-height:1.50;">Access via entrance NPC or portal.</div></div></div>
<div class="tier-node">
<div class="tier-orb t-low">🌿</div>
<div style="font-size:11px;font-weight:800;color:#66bb6a;text-transform:uppercase;text-align:center;">Low Field</div>
<div style="font-size:10px;color:#78909c;text-align:center;">Lv 1 – 40</div>
</div>


<div style="display:flex;align-items:flex-start;gap:12px;padding:0 0 14px 0;position:relative;z-index:1;"><div style="width:36px;height:36px;border-radius:50%;background:rgba(38,198,218,0.16);border:2px solid rgba(38,198,218,0.38);display:flex;align-items:center;justify-content:center;font-weight:bold;color:#26c6da;font-size:0.80em;flex-shrink:0;">2</div><div style="padding-top:8px;"><div style="font-weight:bold;color:#4dd0e1;font-size:0.86em;margin-bottom:2px;">Locate Ore Veins</div><div style="color:#2a5060;font-size:0.78em;line-height:1.50;">Find Mineral and Epic Veins across the map.</div></div></div>
<div class="field-track" style="max-width:120px;"></div>


<div style="display:flex;align-items:flex-start;gap:12px;padding:0 0 14px 0;position:relative;z-index:1;"><div style="width:36px;height:36px;border-radius:50%;background:rgba(240,160,40,0.16);border:2px solid rgba(240,160,40,0.38);display:flex;align-items:center;justify-content:center;font-weight:bold;color:#ff9800;font-size:0.80em;flex-shrink:0;">3</div><div style="padding-top:8px;"><div style="font-weight:bold;color:#ffb74d;font-size:0.86em;margin-bottom:2px;">Mine the Vein</div><div style="color:#2a5060;font-size:0.78em;line-height:1.50;">Interact to extract materials.</div></div></div>
<div class="tier-node">
<div class="tier-orb t-deep">🔥</div>
<div style="font-size:11px;font-weight:800;color:#ffa726;text-transform:uppercase;text-align:center;">Deep Field</div>
<div style="font-size:10px;color:#78909c;text-align:center;">Lv 41 – 80</div>
</div>


<div style="display:flex;align-items:flex-start;gap:12px;padding:0 0 14px 0;position:relative;z-index:1;"><div style="width:36px;height:36px;border-radius:50%;background:rgba(220,60,60,0.16);border:2px solid rgba(220,60,60,0.38);display:flex;align-items:center;justify-content:center;font-weight:bold;color:#ef5350;font-size:0.80em;flex-shrink:0;">4</div><div style="padding-top:8px;"><div style="font-weight:bold;color:#ef9a9a;font-size:0.86em;margin-bottom:2px;">Survive the Zone</div><div style="color:#2a5060;font-size:0.78em;line-height:1.50;">Guardians and players threaten your run.</div></div></div>
<div class="field-track" style="max-width:120px;background:linear-gradient(90deg,#ffa726,#ef5350,#ffa726);"></div>


<div style="display:flex;align-items:flex-start;gap:12px;position:relative;z-index:1;"><div style="width:36px;height:36px;border-radius:50%;background:rgba(40,200,120,0.16);border:2px solid rgba(40,200,120,0.38);display:flex;align-items:center;justify-content:center;font-weight:bold;color:#26c880;font-size:0.80em;flex-shrink:0;">5</div><div style="padding-top:8px;"><div style="font-weight:bold;color:#80e8a8;font-size:0.86em;margin-bottom:2px;">Extract & Upgrade</div><div style="color:#2a5060;font-size:0.78em;line-height:1.50;">Use materials for crafting and progression.</div></div></div>
<div class="tier-node">
<div class="tier-orb t-guardian">💀</div>
<div style="font-size:11px;font-weight:800;color:#ef5350;text-transform:uppercase;text-align:center;">Guardian Field</div>
<div style="font-size:10px;color:#78909c;text-align:center;">Lv 81 – 99</div>
</div>
</div>


<div style="margin-top:14px;padding:9px 12px;border-radius:7px;background:rgba(38,198,218,0.06);border:1px solid rgba(38,198,218,0.14);">
<div style="font-family:'Courier New',monospace;font-size:0.72em;color:#26c6da;text-align:center;letter-spacing:0.06em;">Enter → Mine → Survive → Extract → Upgrade</div>
</div>
</div>
<!-- Zone detail cards -->
<div style="display:flex;gap:16px;flex-wrap:wrap;">
<div style="flex:1;min-width:200px;background:#060d12;border:1px solid #2e7d3255;border-radius:10px;padding:20px;border-top:3px solid #66bb6a;">
<div style="display:flex;align-items:center;gap:10px;margin-bottom:14px;">
<div style="font-size:24px;">🌿</div>
<div>
<div style="font-size:14px;font-weight:800;color:#66bb6a;">Low Extraction Field</div>
<div style="font-size:11px;color:#78909c;">Level 1 – 40</div>
</div>
</div>
<div style="display:flex;flex-direction:column;gap:6px;font-size:12px;color:#90a4ae;">
<div style="display:flex;justify-content:space-between;"><span>Mineral Vein Density</span><span style="color:#b0bec5;font-weight:700;">High</span></div>
<div style="display:flex;justify-content:space-between;"><span>Epic Vein Density</span><span style="color:#ffe082;font-weight:700;">Low</span></div>
<div style="display:flex;justify-content:space-between;"><span>PvP Threat</span><span style="color:#66bb6a;font-weight:700;">Moderate</span></div>
<div style="display:flex;justify-content:space-between;"><span>Guardian</span><span style="color:#ce93d8;font-weight:700;">Yes</span></div>
</div>
<div style="margin-top:12px;font-size:11px;color:#78909c;line-height:1.6;">Ideal for new extractors. Abundant Mineral Veins ensure steady iron, coal, and steel income. Epic Veins are present but sparse.</div>
</div>
</div>


<div style="flex:1;min-width:200px;background:#060d12;border:1px solid #e65100 44;border-radius:10px;padding:20px;border-top:3px solid #ffa726;">
<div style="display:flex;align-items:center;gap:10px;margin-bottom:14px;">
<div style="font-size:24px;">🔥</div>
<div>
<div style="font-size:14px;font-weight:800;color:#ffa726;">Deep Extraction Field</div>
<div style="font-size:11px;color:#78909c;">Level 41 – 80</div>
</div>
</div>
<div style="display:flex;flex-direction:column;gap:6px;font-size:12px;color:#90a4ae;">
<div style="display:flex;justify-content:space-between;"><span>Mineral Vein Density</span><span style="color:#b0bec5;font-weight:700;">Medium</span></div>
<div style="display:flex;justify-content:space-between;"><span>Epic Vein Density</span><span style="color:#ffe082;font-weight:700;">Medium</span></div>
<div style="display:flex;justify-content:space-between;"><span>PvP Threat</span><span style="color:#ffa726;font-weight:700;">High</span></div>
<div style="display:flex;justify-content:space-between;"><span>Guardian</span><span style="color:#ce93d8;font-weight:700;">Yes</span></div>
</div>
<div style="margin-top:12px;font-size:11px;color:#78909c;line-height:1.6;">Balanced risk-reward. Both vein types found in meaningful quantities. Expect frequent player conflict over Epic Vein nodes.</div>
</div>
</div>


<!-- ═══════════════════════════════════════════════════════════
<div style="flex:1;min-width:200px;background:#060d12;border:1px solid #b71c1c55;border-radius:10px;padding:20px;border-top:3px solid #ef5350;">
    RULES GRID
<div style="display:flex;align-items:center;gap:10px;margin-bottom:14px;">
════════════════════════════════════════════════════════════ -->
<div style="font-size:24px;">💀</div>
== Extraction Field Rules ==
<div>
<div style="font-size:14px;font-weight:800;color:#ef5350;">Guardian Extraction Field</div>
<div style="font-size:11px;color:#78909c;">Level 81 – 99</div>
</div>
</div>
<div style="display:flex;flex-direction:column;gap:6px;font-size:12px;color:#90a4ae;">
<div style="display:flex;justify-content:space-between;"><span>Mineral Vein Density</span><span style="color:#b0bec5;font-weight:700;">Low</span></div>
<div style="display:flex;justify-content:space-between;"><span>Epic Vein Density</span><span style="color:#ffe082;font-weight:700;">Very High</span></div>
<div style="display:flex;justify-content:space-between;"><span>PvP Threat</span><span style="color:#ef5350;font-weight:700;">Extreme</span></div>
<div style="display:flex;justify-content:space-between;"><span>Guardian</span><span style="color:#ce93d8;font-weight:700;">Elite MVP</span></div>
</div>
<div style="margin-top:12px;font-size:11px;color:#78909c;line-height:1.6;">Maximum danger, maximum reward. Dense Epic Vein clusters. Top-tier guilds contest this zone constantly. Only the strongest survive.</div>
</div>


<div style="display:grid;grid-template-columns:1fr 1fr;gap:10px;margin:0 0 30px 0;">
</div>
<div style="padding:10px 14px;border-radius:7px;background:rgba(6,18,28,0.86);border:1px solid rgba(38,198,218,0.18);font-size:0.88em;color:#607888;display:flex;align-items:flex-start;gap:10px;line-height:1.58;"><span style="color:#26c6da;flex-shrink:0;margin-top:1px;">●</span><span>PvP is <strong style="color:#90d8e0;">enabled</strong> inside Extraction Fields at all times.</span></div>
<div style="padding:10px 14px;border-radius:7px;background:rgba(6,18,28,0.86);border:1px solid rgba(38,198,218,0.18);font-size:0.88em;color:#607888;display:flex;align-items:flex-start;gap:10px;line-height:1.58;"><span style="color:#26c6da;flex-shrink:0;margin-top:1px;">●</span><span>Ore veins are divided into <strong style="color:#90d8e0;">two active mining categories</strong> — Mineral Vein and Epic Vein.</span></div>
<div style="padding:10px 14px;border-radius:7px;background:rgba(6,18,28,0.86);border:1px solid rgba(38,198,218,0.18);font-size:0.88em;color:#607888;display:flex;align-items:flex-start;gap:10px;line-height:1.58;"><span style="color:#26c6da;flex-shrink:0;margin-top:1px;">●</span><span>Epic Veins produce better rewards and attract <strong style="color:#90d8e0;">more danger</strong>.</span></div>
<div style="padding:10px 14px;border-radius:7px;background:rgba(6,18,28,0.86);border:1px solid rgba(38,198,218,0.18);font-size:0.88em;color:#607888;display:flex;align-items:flex-start;gap:10px;line-height:1.58;"><span style="color:#26c6da;flex-shrink:0;margin-top:1px;">●</span><span>Guardian MVPs may appear near or around <strong style="color:#90d8e0;">extraction routes</strong>.</span></div>
<div style="padding:10px 14px;border-radius:7px;background:rgba(6,18,28,0.86);border:1px solid rgba(38,198,218,0.18);font-size:0.88em;color:#607888;display:flex;align-items:flex-start;gap:10px;line-height:1.58;"><span style="color:#26c6da;flex-shrink:0;margin-top:1px;">●</span><span>Extraction materials are used for <strong style="color:#90d8e0;">equipment progression and advanced crafting</strong>.</span></div>
<div style="padding:10px 14px;border-radius:7px;background:rgba(6,18,28,0.86);border:1px solid rgba(38,198,218,0.18);font-size:0.88em;color:#607888;display:flex;align-items:flex-start;gap:10px;line-height:1.58;"><span style="color:#26c6da;flex-shrink:0;margin-top:1px;">●</span><span>Some drops are <strong style="color:#90d8e0;">exclusive to Extraction Fields</strong> and cannot be obtained elsewhere.</span></div>
<div style="padding:10px 14px;border-radius:7px;background:rgba(6,18,28,0.86);border:1px solid rgba(38,198,218,0.18);font-size:0.88em;color:#607888;display:flex;align-items:flex-start;gap:10px;line-height:1.58;"><span style="color:#26c6da;flex-shrink:0;margin-top:1px;">●</span><span>Parties have a <strong style="color:#90d8e0;">major advantage</strong> — bring damage dealers, supports, and control classes.</span></div>
<div style="padding:10px 14px;border-radius:7px;background:rgba(6,18,28,0.86);border:1px solid rgba(38,198,218,0.18);font-size:0.88em;color:#607888;display:flex;align-items:flex-start;gap:10px;line-height:1.58;"><span style="color:#26c6da;flex-shrink:0;margin-top:1px;">●</span><span>Field balance may be adjusted over time to preserve the <strong style="color:#90d8e0;">Pre-Renewal power level</strong>.</span></div>
</div>
</div>


<!-- ═══════════════════════════════════════════════════════════
<!-- ══════════════════════════════════════════════════
     ORE VEIN RARITY
     ORE VEINS — THE BIG SPLIT
════════════════════════════════════════════════════════════ -->
    ══════════════════════════════════════════════════ -->
== Ore Vein Rarity ==
<div class="ef-section" style="margin-bottom:28px;">
<div style="text-align:center;margin-bottom:24px;">
<span style="font-size:11px;letter-spacing:4px;color:#26c6da;text-transform:uppercase;">Resource System</span>
<h2 style="font-size:22px;color:#e0f7fa;margin:6px 0;font-weight:800;">Ore Vein Types</h2>
<div style="font-size:12px;color:#78909c;">Two completely separate item pools — each vein type drops its own distinct materials</div>
</div>


<div style="background:linear-gradient(135deg,rgba(4,18,22,0.94),rgba(2,10,14,0.99));border:1px solid rgba(38,198,218,0.28);border-radius:9px;overflow:hidden;margin:0 0 30px 0;">
<div style="display:flex;gap:20px;flex-wrap:wrap;">
<div style="background:linear-gradient(90deg,rgba(38,198,218,0.18),rgba(38,198,218,0.05),transparent);padding:12px 20px 10px;border-bottom:1px solid rgba(38,198,218,0.18);font-weight:bold;color:#4dd0e1;letter-spacing:0.09em;text-transform:uppercase;font-size:0.83em;">Ore Veins — Two Active Mining Categories</div>
 
{| style="width:100%;border-collapse:collapse;margin:0;"
<!-- ═══ MINERAL VEIN (COMMON) ═══ -->
|-
<div style="flex:1;min-width:280px;">
! style="background:rgba(0,0,0,0.38);color:#4a8090;padding:9px 16px;text-align:left;font-size:0.82em;letter-spacing:0.08em;border-bottom:1px solid rgba(38,198,218,0.18);width:170px;" | Vein Type
<div class="ore-card-common" style="margin-bottom:0;">
! style="background:rgba(0,0,0,0.38);color:#4a8090;padding:9px 16px;text-align:left;font-size:0.82em;letter-spacing:0.08em;border-bottom:1px solid rgba(38,198,218,0.18);width:260px;" | Expected Materials
<div style="display:flex;align-items:center;gap:12px;margin-bottom:18px;">
! style="background:rgba(0,0,0,0.38);color:#4a8090;padding:9px 16px;text-align:left;font-size:0.82em;letter-spacing:0.08em;border-bottom:1px solid rgba(38,198,218,0.18);" | Notes
<div style="width:48px;height:48px;border-radius:50%;background:radial-gradient(circle,#263238,#0d1117);border:2px solid #546e7a;display:flex;align-items:center;justify-content:center;font-size:22px;">🪨</div>
|-
<div>
| style="padding:15px 16px;border-bottom:1px solid rgba(255,255,255,0.04);" | <span style="color:#90caf9;font-weight:bold;font-size:0.90em;">◆ Mineral Vein</span>
<div style="font-size:16px;font-weight:900;color:#b0bec5;text-transform:uppercase;letter-spacing:1px;">Mineral Vein</div>
| style="padding:15px 16px;border-bottom:1px solid rgba(255,255,255,0.04);color:#8090a8;font-size:0.88em;line-height:1.58;" | Basic metals, refinement stones, gems, diamonds, Emperium, and a very rare Mithril Ore roll
<div style="display:flex;gap:6px;margin-top:4px;">
| style="padding:15px 16px;border-bottom:1px solid rgba(255,255,255,0.04);color:#506070;font-size:0.87em;line-height:1.58;" | Combines the old Common, Uncommon, and Rare progression into one accessible mining node. Reliable for progression and money drops, while still keeping rare dopamine rewards.
<span class="pill pill-common">Common</span>
|-
<span class="pill" style="background:#0a1f1a;border:1px solid #26c6da;color:#80deea;">High Frequency</span>
| style="padding:15px 16px;" | <span style="color:#ffcc80;font-weight:bold;font-size:0.90em;">◆◆ Epic Vein</span>
</div>
| style="padding:15px 16px;color:#c0a878;font-size:0.88em;line-height:1.58;" | Oridecon, Elunium, Ruby, Emerald, Emperium, rare diamonds, special gemstones, and Mithril Ore
</div>
| style="padding:15px 16px;color:#506070;font-size:0.87em;line-height:1.58;" | Combines the old Epic and Legendary progression into the main high-value target. This is the contested vein players actively hunt, defend, and fight over.
|}
</div>
</div>
<div style="font-size:11px;color:#78909c;margin-bottom:16px;line-height:1.6;">Found throughout all field zones. Drops base crafting materials used in equipment refinement and general production. The backbone of the extraction economy.</div>


<div style="background:linear-gradient(135deg,rgba(8,24,30,0.94),rgba(2,10,14,0.99));border:1px solid rgba(38,198,218,0.20);border-left:4px solid #26c6da;border-radius:8px;padding:13px 18px;margin:0 0 30px 0;color:#607888;font-size:0.88em;line-height:1.68;">
<div style="font-size:11px;font-weight:800;color:#78909c;text-transform:uppercase;letter-spacing:1px;margin-bottom:10px;">Item Drop Pool</div>
<strong style="color:#4dd0e1;">Design Update:</strong> Extraction now uses only two practical mining nodes. Mineral Veins carry the general economy and entry progression. Epic Veins concentrate the strongest rewards, including special stones and Mithril Ore, making them the natural PvP hotspot.
<div style="display:flex;flex-direction:column;gap:4px;">
 
<div style="display:flex;justify-content:space-between;align-items:center;padding:7px 10px;background:#0d1520;border-radius:6px;border-left:3px solid #546e7a;">
<span style="font-size:12px;color:#cfd8dc;">🪨 Iron Ore</span>
<span style="font-size:11px;color:#78909c;font-weight:700;">Common</span>
</div>
<div style="display:flex;justify-content:space-between;align-items:center;padding:7px 10px;background:#0d1520;border-radius:6px;border-left:3px solid #546e7a;">
<span style="font-size:12px;color:#cfd8dc;">⚙ Iron</span>
<span style="font-size:11px;color:#78909c;font-weight:700;">Common</span>
</div>
<div style="display:flex;justify-content:space-between;align-items:center;padding:7px 10px;background:#0d1520;border-radius:6px;border-left:3px solid #546e7a;">
<span style="font-size:12px;color:#cfd8dc;">🖤 Coal</span>
<span style="font-size:11px;color:#78909c;font-weight:700;">Common</span>
</div>
<div style="display:flex;justify-content:space-between;align-items:center;padding:7px 10px;background:#0d1520;border-radius:6px;border-left:3px solid #607d8b;">
<span style="font-size:12px;color:#cfd8dc;">🔩 Steel</span>
<span style="font-size:11px;color:#90a4ae;font-weight:700;">Uncommon</span>
</div>
<div style="display:flex;justify-content:space-between;align-items:center;padding:7px 10px;background:#0d1520;border-radius:6px;border-left:3px solid #607d8b;">
<span style="font-size:12px;color:#cfd8dc;">💠 Phracon</span>
<span style="font-size:11px;color:#90a4ae;font-weight:700;">Uncommon</span>
</div>
<div style="display:flex;justify-content:space-between;align-items:center;padding:7px 10px;background:#0d1520;border-radius:6px;border-left:3px solid #607d8b;">
<span style="font-size:12px;color:#cfd8dc;">💠 Emveretarcon</span>
<span style="font-size:11px;color:#90a4ae;font-weight:700;">Uncommon</span>
</div>
<div style="display:flex;justify-content:space-between;align-items:center;padding:7px 10px;background:#0d1520;border-radius:6px;border-left:3px solid #26c6da;">
<span style="font-size:12px;color:#cfd8dc;">🔷 Rough Oridecon</span>
<span style="font-size:11px;color:#26c6da;font-weight:700;">Moderate</span>
</div>
<div style="display:flex;justify-content:space-between;align-items:center;padding:7px 10px;background:#0d1520;border-radius:6px;border-left:3px solid #26c6da;">
<span style="font-size:12px;color:#cfd8dc;">🔶 Rough Elunium</span>
<span style="font-size:11px;color:#26c6da;font-weight:700;">Moderate</span>
</div>
<div style="display:flex;justify-content:space-between;align-items:center;padding:7px 10px;background:#0d1520;border-radius:6px;border-left:3px solid #ab47bc;">
<span style="font-size:12px;color:#e1bee7;">💎 Oridecon</span>
<span style="font-size:11px;color:#ab47bc;font-weight:700;">3% rare</span>
</div>
<div style="display:flex;justify-content:space-between;align-items:center;padding:7px 10px;background:#0d1520;border-radius:6px;border-left:3px solid #ab47bc;">
<span style="font-size:12px;color:#e1bee7;">💎 Elunium</span>
<span style="font-size:11px;color:#ab47bc;font-weight:700;">3.5% rare</span>
</div>
<div style="display:flex;justify-content:space-between;align-items:center;padding:7px 10px;background:#0d1520;border-radius:6px;border-left:3px solid #4caf50;">
<span style="font-size:12px;color:#c8e6c9;">💚 Emerald</span>
<span style="font-size:11px;color:#81c784;font-weight:700;">Semi-rare</span>
</div>
<div style="display:flex;justify-content:space-between;align-items:center;padding:7px 10px;background:#0d1520;border-radius:6px;border-left:3px solid #e53935;">
<span style="font-size:12px;color:#ffcdd2;">❤ Ruby</span>
<span style="font-size:11px;color:#ef9a9a;font-weight:700;">Semi-rare</span>
</div>
<div style="display:flex;justify-content:space-between;align-items:center;padding:7px 10px;background:#0d1520;border-radius:6px;border-left:3px solid #29b6f6;">
<span style="font-size:12px;color:#b3e5fc;">💙 Diamonds</span>
<span style="font-size:11px;color:#81d4fa;font-weight:700;">Semi-rare</span>
</div>
<div style="display:flex;justify-content:space-between;align-items:center;padding:7px 10px;background:#0d1520;border-radius:6px;border-left:3px solid #90a4ae;">
<span style="font-size:12px;color:#cfd8dc;">🪙 Silver Ore</span>
<span style="font-size:11px;color:#b0bec5;font-weight:700;">Moderate</span>
</div>
<div style="display:flex;justify-content:space-between;align-items:center;padding:7px 10px;background:#0d1520;border-radius:6px;border-left:3px solid #ffa000;">
<span style="font-size:12px;color:#ffe082;">🥇 Gold</span>
<span style="font-size:11px;color:#ffd54f;font-weight:700;">Rare</span>
</div>
<div style="display:flex;justify-content:space-between;align-items:center;padding:7px 10px;background:#0d1520;border-radius:6px;border-left:3px solid #ffd700;">
<span style="font-size:12px;color:#fff9c4;">👑 Emperium</span>
<span style="font-size:11px;color:#fff176;font-weight:700;">Very Rare</span>
</div>
<div style="display:flex;justify-content:space-between;align-items:center;padding:7px 10px;background:#0d1520;border-radius:6px;border-left:3px solid #00bcd4;opacity:.9;">
<span style="font-size:12px;color:#b2ebf2;">✦ Mithril Ore</span>
<span style="font-size:11px;color:#26c6da;font-weight:700;">0.03% ultra</span>
</div>
</div>


== Extraction Material Chain ==
</div>
 
</div>
<div style="background:linear-gradient(135deg,rgba(4,18,22,0.94),rgba(2,10,14,0.99));border:1px solid rgba(38,198,218,0.28);border-radius:9px;overflow:hidden;margin:0 0 30px 0;">
<div style="background:linear-gradient(90deg,rgba(38,198,218,0.18),rgba(38,198,218,0.05),transparent);padding:12px 20px 10px;border-bottom:1px solid rgba(38,198,218,0.18);font-weight:bold;color:#4dd0e1;letter-spacing:0.09em;text-transform:uppercase;font-size:0.83em;">Mining Materials — Drop Rates & Crafting Roles</div>
{| style="width:100%;border-collapse:collapse;margin:0;"
|-
! style="background:rgba(0,0,0,0.38);color:#4a8090;padding:9px 14px;text-align:left;font-size:0.82em;letter-spacing:0.08em;border-bottom:1px solid rgba(38,198,218,0.18);" | Material
! style="background:rgba(0,0,0,0.38);color:#4a8090;padding:9px 14px;text-align:center;font-size:0.82em;letter-spacing:0.08em;border-bottom:1px solid rgba(38,198,218,0.18);width:110px;" | Mineral Vein
! style="background:rgba(0,0,0,0.38);color:#4a8090;padding:9px 14px;text-align:center;font-size:0.82em;letter-spacing:0.08em;border-bottom:1px solid rgba(38,198,218,0.18);width:110px;" | Epic Vein
! style="background:rgba(0,0,0,0.38);color:#4a8090;padding:9px 14px;text-align:left;font-size:0.82em;letter-spacing:0.08em;border-bottom:1px solid rgba(38,198,218,0.18);" | Role
|-
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);" | {{Item List|id=1002|item=Iron Ore|simple=yes}}
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#a5d6a7;font-weight:bold;" | 11.00%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;color:#263238;font-size:0.82em;" | —
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);color:#506070;font-size:0.85em;line-height:1.55;" | Early crafting and basic equipment progression.
|-
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);" | {{Item List|id=998|item=Iron|simple=yes}}
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#a5d6a7;font-weight:bold;" | 7.50%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;color:#263238;font-size:0.82em;" | —
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);color:#506070;font-size:0.85em;line-height:1.55;" | Basic refined metal for low-tier crafting.
|-
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);" | {{Item List|id=1003|item=Coal|simple=yes}}
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#c5e1a5;font-weight:bold;" | 7.50%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;color:#263238;font-size:0.82em;" | —
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);color:#506070;font-size:0.85em;line-height:1.55;" | Support material used in metal refinement chains.
|-
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);" | {{Item List|id=999|item=Steel|simple=yes}}
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#fff59d;font-weight:bold;" | 6.50%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;color:#263238;font-size:0.82em;" | —
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);color:#506070;font-size:0.85em;line-height:1.55;" | Intermediate equipment and upgrade material.
|-
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);" | {{Item List|id=1010|item=Phracon|simple=yes}}
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#a5d6a7;font-weight:bold;" | 12.00%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;color:#263238;font-size:0.82em;" | —
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);color:#506070;font-size:0.85em;line-height:1.55;" | Frequent refinement-support reward for early progression.
|-
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);" | {{Item List|id=1011|item=Emveretarcon|simple=yes}}
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#a5d6a7;font-weight:bold;" | 10.00%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;color:#263238;font-size:0.82em;" | —
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);color:#506070;font-size:0.85em;line-height:1.55;" | Frequent refinement-support reward for stronger early upgrades.
|-
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);" | {{Item List|id=756|item=Rough Oridecon|simple=yes}}
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#80cbc4;font-weight:bold;" | 5.00%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;color:#263238;font-size:0.82em;" | —
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);color:#506070;font-size:0.85em;line-height:1.55;" | Low-tier refinement bridge toward Oridecon.
|-
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);" | {{Item List|id=757|item=Rough Elunium|simple=yes}}
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#80cbc4;font-weight:bold;" | 5.00%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;color:#263238;font-size:0.82em;" | —
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);color:#506070;font-size:0.85em;line-height:1.55;" | Low-tier refinement bridge toward Elunium.
|-
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);" | {{Item List|id=984|item=Oridecon|simple=yes}}
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#80deea;font-weight:bold;" | 3.00%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#ffcc80;font-weight:bold;" | 17.00%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);color:#506070;font-size:0.85em;line-height:1.55;" | Weapon refinement and advanced crafting.
|-
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);" | {{Item List|id=985|item=Elunium|simple=yes}}
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#80deea;font-weight:bold;" | 3.50%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#ffcc80;font-weight:bold;" | 17.00%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);color:#506070;font-size:0.85em;line-height:1.55;" | Armor refinement and advanced crafting.
|-
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);" | {{Item List|id=721|item=Emerald|simple=yes}}
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#80cbc4;font-weight:bold;" | 6.50%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#ffcc80;font-weight:bold;" | 11.00%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);color:#506070;font-size:0.85em;line-height:1.55;" | Gemstone for specialized crafting and magic-oriented equipment.
|-
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);" | {{Item List|id=723|item=Ruby|simple=yes}}
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#ef9a9a;font-weight:bold;" | 5.50%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#ffcc80;font-weight:bold;" | 11.00%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);color:#506070;font-size:0.85em;line-height:1.55;" | Offensive crafting and higher-value equipment recipes.
|-
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);" | {{Item List|id=730|item=1carat Diamond|simple=yes}}
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#e0e0e0;font-weight:bold;" | 3.00%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#ffe082;font-weight:bold;" | 2.50%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);color:#506070;font-size:0.85em;line-height:1.55;" | Money drop and dopamine reward.
|-
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);" | {{Item List|id=731|item=2carat Diamond|simple=yes}}
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#e0e0e0;font-weight:bold;" | 1.80%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#ffe082;font-weight:bold;" | 4.00%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);color:#506070;font-size:0.85em;line-height:1.55;" | Higher-value money drop.
|-
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);" | {{Item List|id=732|item=3carat Diamond|simple=yes}}
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#e0e0e0;font-weight:bold;" | 1.20%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#ffe082;font-weight:bold;" | 6.00%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);color:#506070;font-size:0.85em;line-height:1.55;" | Premium money drop. More common than Silver Ore and Gold by design.
|-
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);" | {{Item List|id=7232|item=Silver Ore|simple=yes}}
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#e0e0e0;font-weight:bold;" | 1.00%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#ffcc80;font-weight:bold;" | 5.00%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);color:#506070;font-size:0.85em;line-height:1.55;" | Silver-tier equipment and intermediate-to-advanced upgrade chains.
|-
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);" | {{Item List|id=969|item=Gold|simple=yes}}
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#ffe082;font-weight:bold;" | 0.80%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#ffcc80;font-weight:bold;" | 4.50%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);color:#506070;font-size:0.85em;line-height:1.55;" | High-value trade material and expensive advanced crafting chain.
|-
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);" | {{Item List|id=714|item=Emperium|simple=yes}}
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#ffe082;font-weight:bold;" | 3.00%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#ffcc80;font-weight:bold;" | 6.50%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);color:#506070;font-size:0.85em;line-height:1.55;" | Strategic material for crafting and guild progression.
|-
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);" | {{Item List|id=25457|item=Cursed Emerald|simple=yes}}
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;color:#263238;font-size:0.82em;" | —
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#ce93d8;font-weight:bold;" | 1.50%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);color:#506070;font-size:0.85em;line-height:1.55;" | High-tier special gemstone from Epic Veins.
|-
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);" | {{Item List|id=25458|item=Shiny Opal|simple=yes}}
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;color:#263238;font-size:0.82em;" | —
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#ce93d8;font-weight:bold;" | 1.50%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);color:#506070;font-size:0.85em;line-height:1.55;" | High-tier special gemstone from Epic Veins.
|-
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);" | {{Item List|id=25459|item=Sea Sapphire|simple=yes}}
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;color:#263238;font-size:0.82em;" | —
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#ce93d8;font-weight:bold;" | 1.50%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);color:#506070;font-size:0.85em;line-height:1.55;" | High-tier special gemstone from Epic Veins.
|-
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);" | {{Item List|id=25460|item=Bloody Ruby|simple=yes}}
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;color:#263238;font-size:0.82em;" | —
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#ce93d8;font-weight:bold;" | 1.50%
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);color:#506070;font-size:0.85em;line-height:1.55;" | High-tier special gemstone from Epic Veins.
|-
| style="padding:10px 14px;" | {{Item List|id=7233|item=Mithril Ore|simple=yes}}
| style="padding:10px 14px;text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#90caf9;font-weight:bold;" | 0.03%
| style="padding:10px 14px;text-align:center;font-family:'Courier New',monospace;font-size:0.86em;color:#ff8a80;font-weight:bold;" | 5.00%
| style="padding:10px 14px;color:#506070;font-size:0.85em;line-height:1.55;" | Top extraction material. Extremely rare in Mineral Veins, but a key target from Epic Veins.
|}
</div>
</div>


<div style="display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:0 0 30px 0;">
<!-- ═══ EPIC VEIN (LEGENDARY) ═══ -->
<div style="background:linear-gradient(135deg,rgba(4,22,28,0.94),rgba(2,12,16,0.99));border:1px solid rgba(38,198,218,0.24);border-radius:8px;padding:13px 16px;">
<div style="flex:1;min-width:280px;">
<div style="font-weight:bold;color:#4dd0e1;font-size:0.86em;letter-spacing:0.07em;text-transform:uppercase;margin-bottom:8px;">◆ Mineral Vein Summary</div>
<div class="ore-card-epic" style="margin-bottom:0;">
<div style="color:#607888;font-size:0.84em;line-height:1.62;">Item rate: <strong style="color:#90d8e0;">93.83%</strong>. Nothing rate: <strong style="color:#90d8e0;">6.17%</strong>. Best for general materials, refines, gems, diamonds, and Emperium at 3%.</div>
<div style="display:flex;align-items:center;gap:12px;margin-bottom:18px;">
<div style="width:48px;height:48px;border-radius:50%;background:radial-gradient(circle,#3d2b00,#150f00);border:2px solid #ffa000;display:flex;align-items:center;justify-content:center;font-size:22px;box-shadow:0 0 16px #ffa00066;">✨</div>
<div>
<div style="font-size:16px;font-weight:900;color:#ffe082;text-transform:uppercase;letter-spacing:1px;">Epic Vein</div>
<div style="display:flex;gap:6px;margin-top:4px;">
<span class="pill pill-epic">Legendary</span>
<span class="pill" style="background:#1a0a00;border:1px solid #ffa000;color:#ffd54f;">Low Frequency</span>
</div>
</div>
<div style="background:linear-gradient(135deg,rgba(32,18,4,0.94),rgba(16,8,2,0.99));border:1px solid rgba(255,160,60,0.26);border-radius:8px;padding:13px 16px;">
<div style="font-weight:bold;color:#ffcc80;font-size:0.86em;letter-spacing:0.07em;text-transform:uppercase;margin-bottom:8px;">◆◆ Epic Vein Summary</div>
<div style="color:#907050;font-size:0.84em;line-height:1.62;">Item rate: <strong style="color:#ffe0b2;">95.50%</strong>. Nothing rate: <strong style="color:#ffe0b2;">4.50%</strong>. Best for Oridecon, Elunium, Ruby, Emerald, Emperium, special stones, and Mithril Ore at 5%.</div>
</div>
</div>
</div>
</div>
<div style="font-size:11px;color:#78909c;margin-bottom:16px;line-height:1.6;">Rare spawns concentrated in deeper zones. Drops premium refinement materials and exclusive gem variants not obtainable from Mineral Veins. Heavily contested.</div>


== Extraction Field Navigator ==
<div style="font-size:11px;font-weight:800;color:#78909c;text-transform:uppercase;letter-spacing:1px;margin-bottom:10px;">Item Drop Pool</div>
<div style="display:flex;flex-direction:column;gap:4px;">


<div style="display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin:0 0 28px 0;">
<div style="display:flex;justify-content:space-between;align-items:center;padding:7px 10px;background:#0f0b00;border-radius:6px;border-left:3px solid #ffa000;">
<div style="background:linear-gradient(160deg,rgba(4,22,28,0.92),rgba(2,12,16,0.98));border:1px solid rgba(38,198,218,0.35);border-radius:9px;padding:18px 14px;text-align:center;">
<span style="font-size:12px;color:#ffe082;">💎 Oridecon</span>
<div style="font-size:1.6em;margin-bottom:8px;"></div>
<span style="font-size:11px;color:#ffd54f;font-weight:700;">17% high</span>
<div style="color:#26c6da;font-weight:bold;font-size:0.94em;margin-bottom:4px;">Low Extraction Field</div>
</div>
<div style="color:#78909c;font-size:0.80em;margin-bottom:8px;">Base Level 1–40</div>
<div style="display:flex;justify-content:space-between;align-items:center;padding:7px 10px;background:#0f0b00;border-radius:6px;border-left:3px solid #ffa000;">
<div style="font-family:'Courier New',monospace;font-size:0.70em;color:#1a4050;padding:4px 8px;border-radius:4px;background:rgba(38,198,218,0.06);border:1px solid rgba(38,198,218,0.12);">Entry Mining Zone</div>
<span style="font-size:12px;color:#ffe082;">💎 Elunium</span>
<span style="font-size:11px;color:#ffd54f;font-weight:700;">17% high</span>
</div>
<div style="display:flex;justify-content:space-between;align-items:center;padding:7px 10px;background:#0f0b00;border-radius:6px;border-left:3px solid #e53935;">
<span style="font-size:12px;color:#ffcdd2;">❤ Ruby</span>
<span style="font-size:11px;color:#ef9a9a;font-weight:700;">11% high</span>
</div>
</div>
<div style="background:linear-gradient(160deg,rgba(20,12,36,0.92),rgba(10,6,22,0.98));border:1px solid rgba(170,120,255,0.35);border-radius:9px;padding:18px 14px;text-align:center;">
<div style="display:flex;justify-content:space-between;align-items:center;padding:7px 10px;background:#0f0b00;border-radius:6px;border-left:3px solid #4caf50;">
<div style="font-size:1.6em;margin-bottom:8px;">💠</div>
<span style="font-size:12px;color:#c8e6c9;">💚 Emerald</span>
<div style="color:#b39ddb;font-weight:bold;font-size:0.94em;margin-bottom:4px;">Deep Extraction Field</div>
<span style="font-size:11px;color:#81c784;font-weight:700;">11% high</span>
<div style="color:#78909c;font-size:0.80em;margin-bottom:8px;">Base Level 41–80</div>
<div style="font-family:'Courier New',monospace;font-size:0.70em;color:#3a2868;padding:4px 8px;border-radius:4px;background:rgba(150,100,220,0.06);border:1px solid rgba(150,100,220,0.12);">Contested Mid-Tier Zone</div>
</div>
</div>
<div style="background:linear-gradient(160deg,rgba(36,14,4,0.92),rgba(20,6,2,0.98));border:1px solid rgba(255,160,60,0.38);border-radius:9px;padding:18px 14px;text-align:center;">
<div style="display:flex;justify-content:space-between;align-items:center;padding:7px 10px;background:#0f0b00;border-radius:6px;border-left:3px solid #29b6f6;">
<div style="font-size:1.6em;margin-bottom:8px;">🐲</div>
<span style="font-size:12px;color:#b3e5fc;">💙 Diamonds</span>
<div style="color:#ffb74d;font-weight:bold;font-size:0.94em;margin-bottom:4px;">Guardian Extraction Field</div>
<span style="font-size:11px;color:#81d4fa;font-weight:700;">Moderate</span>
<div style="color:#78909c;font-size:0.80em;margin-bottom:8px;">Base Level 81–99</div>
<div style="font-family:'Courier New',monospace;font-size:0.70em;color:#5a3a10;padding:4px 8px;border-radius:4px;background:rgba(255,152,0,0.06);border:1px solid rgba(255,152,0,0.12);">High-Risk MVP Zone</div>
</div>
</div>
<div style="display:flex;justify-content:space-between;align-items:center;padding:7px 10px;background:#0f0b00;border-radius:6px;border-left:3px solid #90a4ae;">
<span style="font-size:12px;color:#cfd8dc;">🪙 Silver Ore</span>
<span style="font-size:11px;color:#b0bec5;font-weight:700;">Moderate</span>
</div>
<div style="display:flex;justify-content:space-between;align-items:center;padding:7px 10px;background:#0f0b00;border-radius:6px;border-left:3px solid #ffa000;">
<span style="font-size:12px;color:#ffe082;">🥇 Gold</span>
<span style="font-size:11px;color:#ffd54f;font-weight:700;">Moderate</span>
</div>
<div style="display:flex;justify-content:space-between;align-items:center;padding:7px 10px;background:#0f0b00;border-radius:6px;border-left:3px solid #ffd700;">
<span style="font-size:12px;color:#fff9c4;">👑 Emperium</span>
<span style="font-size:11px;color:#fff176;font-weight:700;">6.5% rare</span>
</div>
</div>


<!-- ═══════════════════════════════════════════════════════════
<div style="margin:10px 0 6px;font-size:10px;font-weight:800;color:#ab47bc;text-transform:uppercase;letter-spacing:1px;border-top:1px solid #2d1a3a;padding-top:10px;">✦ Epic Vein Exclusive Gems</div>
    LOW EXTRACTION FIELD
════════════════════════════════════════════════════════════ -->
== Low Extraction Field — Base Level 1–40 ==


<div style="background:linear-gradient(135deg,rgba(4,22,30,0.94),rgba(2,12,18,0.99));border:2px solid rgba(38,198,218,0.30);border-left:5px solid #26c6da;border-radius:9px;padding:16px 22px;margin:0 0 18px 0;position:relative;overflow:hidden;">
<div style="display:flex;justify-content:space-between;align-items:center;padding:7px 10px;background:#120a1a;border-radius:6px;border-left:3px solid #ab47bc;">
<div style="position:absolute;top:0;right:0;width:160px;height:100%;background:linear-gradient(270deg,rgba(38,198,218,0.06),transparent);pointer-events:none;"></div>
<span style="font-size:12px;color:#e1bee7;">🟢 Cursed Emerald</span>
<div style="font-weight:bold;color:#4dd0e1;font-size:0.96em;letter-spacing:0.06em;text-transform:uppercase;margin-bottom:8px;">⛏ Entry Mining Zone — Teach, Collect, Learn</div>
<span style="font-size:11px;color:#ce93d8;font-weight:700;">1.5% rare</span>
<div style="color:#406070;font-size:0.90em;line-height:1.68;">The Low Extraction Field is the first step into the mining system. Mineral Veins are the main target, while Epic Veins are rare and dangerous enough to create occasional conflict. PvP remains active — this field teaches route awareness, mining pressure, and resource competition before players enter deeper zones.</div>
</div>
<div style="display:flex;justify-content:space-between;align-items:center;padding:7px 10px;background:#120a1a;border-radius:6px;border-left:3px solid #ab47bc;">
<span style="font-size:12px;color:#e1bee7;">🔵 Shiny Opal</span>
<span style="font-size:11px;color:#ce93d8;font-weight:700;">1.5% rare</span>
</div>
<div style="display:flex;justify-content:space-between;align-items:center;padding:7px 10px;background:#120a1a;border-radius:6px;border-left:3px solid #0288d1;">
<span style="font-size:12px;color:#b3e5fc;">💙 Sea Sapphire</span>
<span style="font-size:11px;color:#81d4fa;font-weight:700;">1.5% rare</span>
</div>
<div style="display:flex;justify-content:space-between;align-items:center;padding:7px 10px;background:#120a1a;border-radius:6px;border-left:3px solid #c62828;">
<span style="font-size:12px;color:#ffcdd2;">🔴 Bloody Ruby</span>
<span style="font-size:11px;color:#ef9a9a;font-weight:700;">1.5% rare</span>
</div>
<div style="display:flex;justify-content:space-between;align-items:center;padding:7px 10px;background:#120a1a;border-radius:6px;border-left:3px solid #00bcd4;">
<span style="font-size:12px;color:#b2ebf2;">✦ Mithril Ore</span>
<span style="font-size:11px;color:#26c6da;font-weight:700;">5% epic</span>
</div>
</div>


<div style="background:linear-gradient(135deg,rgba(4,18,24,0.94),rgba(2,10,16,0.99));border:1px solid rgba(255,255,255,0.07);border-radius:9px;overflow:hidden;margin:0 0 28px 0;">
</div>
<div style="background:linear-gradient(90deg,rgba(38,198,218,0.12),transparent);padding:11px 18px 9px;border-bottom:1px solid rgba(255,255,255,0.06);font-weight:bold;color:#2a7888;font-size:0.82em;letter-spacing:0.09em;text-transform:uppercase;">Low Field — Vein Frequency</div>
</div>
{| style="width:100%;border-collapse:collapse;margin:0;"
|-
! style="background:rgba(0,0,0,0.35);color:#3a6070;padding:8px 14px;text-align:left;font-size:0.80em;border-bottom:1px solid rgba(255,255,255,0.06);" | Vein Type
! style="background:rgba(0,0,0,0.35);color:#3a6070;padding:8px 14px;text-align:center;font-size:0.80em;border-bottom:1px solid rgba(255,255,255,0.06);width:130px;" | Frequency
! style="background:rgba(0,0,0,0.35);color:#3a6070;padding:8px 14px;text-align:left;font-size:0.80em;border-bottom:1px solid rgba(255,255,255,0.06);" | Notes
|-
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);" | <span style="color:#90caf9;font-size:0.88em;font-weight:bold;">◆ Mineral Vein</span> | style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.84em;color:#80e890;font-weight:bold;" | High | style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);color:#406070;font-size:0.85em;" | Main source of basic ores, Phracon, Emveretarcon, gems, and early money drops.
|-
| style="padding:10px 14px;" | <span style="color:#ffcc80;font-size:0.88em;font-weight:bold;">◆◆ Epic Vein</span> | style="padding:10px 14px;text-align:center;font-family:'Courier New',monospace;font-size:0.84em;color:#e06040;font-weight:bold;" | Very Low | style="padding:10px 14px;color:#406070;font-size:0.85em;" | Rare high-value target. Can attract PvP even in the entry field.
|}
</div>
</div>


== Deep Extraction Field — Base Level 41–80 ==
</div><!-- end flex row -->


<div style="background:linear-gradient(135deg,rgba(18,10,34,0.94),rgba(10,6,22,0.99));border:2px solid rgba(150,100,220,0.30);border-left:5px solid #7e57c2;border-radius:9px;padding:16px 22px;margin:0 0 18px 0;position:relative;overflow:hidden;">
<!-- Drop rate comparison bar -->
<div style="position:absolute;top:0;right:0;width:160px;height:100%;background:linear-gradient(270deg,rgba(126,87,194,0.06),transparent);pointer-events:none;"></div>
<div style="margin-top:16px;background:#060c10;border:1px solid #26c6da22;border-radius:10px;padding:18px;">
<div style="font-weight:bold;color:#b39ddb;font-size:0.96em;letter-spacing:0.06em;text-transform:uppercase;margin-bottom:8px;">💠 Contested Mid-Tier Zone — Mining Becomes Serious</div>
<div style="font-size:11px;font-weight:800;color:#78909c;text-transform:uppercase;letter-spacing:1px;margin-bottom:12px;text-align:center;">⚡ Key Difference at a Glance</div>
<div style="color:#5a4080;font-size:0.90em;line-height:1.68;">The Deep Extraction Field is where Epic Veins begin to matter. Mineral Veins still provide reliable progression, but the strongest rewards start appearing around contested routes. Monsters are stronger, player conflict is more likely, and mining becomes a serious progression path.</div>
<div style="display:flex;gap:24px;flex-wrap:wrap;justify-content:center;">
<div class="stat-bubble" style="flex:1;min-width:160px;">
<div style="font-size:22px;margin-bottom:4px;">🪨</div>
<div style="font-size:11px;color:#78909c;margin-bottom:2px;">Mineral Vein — Oridecon</div>
<div style="font-size:20px;font-weight:900;color:#ef5350;">3%</div>
<div style="font-size:10px;color:#78909c;">per hit chance</div>
</div>
<div class="stat-bubble" style="flex:1;min-width:160px;">
<div style="font-size:22px;margin-bottom:4px;">✨</div>
<div style="font-size:11px;color:#78909c;margin-bottom:2px;">Epic Vein — Oridecon</div>
<div style="font-size:20px;font-weight:900;color:#ffd54f;">17%</div>
<div style="font-size:10px;color:#78909c;">per hit chance</div>
</div>
<div class="stat-bubble" style="flex:1;min-width:160px;">
<div style="font-size:22px;margin-bottom:4px;">🔵</div>
<div style="font-size:11px;color:#78909c;margin-bottom:2px;">Sea Sapphire</div>
<div style="font-size:20px;font-weight:900;color:#ab47bc;">Epic Only</div>
<div style="font-size:10px;color:#78909c;">not in Mineral Vein</div>
</div>
<div class="stat-bubble" style="flex:1;min-width:160px;">
<div style="font-size:22px;margin-bottom:4px;"></div>
<div style="font-size:11px;color:#78909c;margin-bottom:2px;">Mithril Ore</div>
<div style="font-size:20px;font-weight:900;color:#26c6da;">0.03% <span style="font-size:13px;">/ 5%</span></div>
<div style="font-size:10px;color:#78909c;">Mineral / Epic</div>
</div>
</div>
</div>
</div>
</div>


<div style="background:linear-gradient(135deg,rgba(4,18,24,0.94),rgba(2,10,16,0.99));border:1px solid rgba(255,255,255,0.07);border-radius:9px;overflow:hidden;margin:0 0 28px 0;">
<!-- ══════════════════════════════════════════════════
<div style="background:linear-gradient(90deg,rgba(150,100,220,0.12),transparent);padding:11px 18px 9px;border-bottom:1px solid rgba(255,255,255,0.06);font-weight:bold;color:#6a4888;font-size:0.82em;letter-spacing:0.09em;text-transform:uppercase;">Deep Field — Vein Frequency</div>
    EXTRACTION MATERIAL CHAIN
{| style="width:100%;border-collapse:collapse;margin:0;"
    ══════════════════════════════════════════════════ -->
<div class="ef-section" style="margin-bottom:28px;">
<div style="text-align:center;margin-bottom:20px;">
<span style="font-size:11px;letter-spacing:4px;color:#26c6da;text-transform:uppercase;">Crafting</span>
<h2 style="font-size:22px;color:#e0f7fa;margin:6px 0;font-weight:800;">Extraction Material Chain</h2>
<div style="font-size:12px;color:#78909c;">How raw ores refine into usable materials for equipment upgrading</div>
</div>
 
<!-- Common chain -->
<div style="margin-bottom:16px;">
<div style="display:inline-flex;align-items:center;gap:8px;background:#0d1520;border:1px solid #546e7a55;border-radius:6px;padding:7px 14px;margin-bottom:12px;">
<span style="font-size:14px;">🪨</span>
<span style="font-size:12px;font-weight:800;color:#b0bec5;text-transform:uppercase;letter-spacing:1px;">Mineral Vein Chain</span>
</div>
{| class="wikitable" style="width:100%;background:#0d1520;border-collapse:separate;border-spacing:0;border-radius:8px;overflow:hidden;border:1px solid #37474f;"
! style="background:#12202a;color:#78909c;font-size:11px;text-transform:uppercase;letter-spacing:1px;padding:10px 14px;border-bottom:1px solid #263238;text-align:left;" | Raw Material
! style="background:#12202a;color:#78909c;font-size:11px;text-transform:uppercase;letter-spacing:1px;padding:10px 14px;border-bottom:1px solid #263238;text-align:left;" | Processes Into
! style="background:#12202a;color:#78909c;font-size:11px;text-transform:uppercase;letter-spacing:1px;padding:10px 14px;border-bottom:1px solid #263238;text-align:left;" | Used For
! style="background:#12202a;color:#78909c;font-size:11px;text-transform:uppercase;letter-spacing:1px;padding:10px 14px;border-bottom:1px solid #263238;text-align:left;" | Notes
|-
| style="padding:10px 14px;color:#cfd8dc;border-bottom:1px solid #1e2a30;" | 🪨 Iron Ore
| style="padding:10px 14px;color:#90a4ae;border-bottom:1px solid #1e2a30;" | Iron → Steel
| style="padding:10px 14px;color:#78909c;border-bottom:1px solid #1e2a30;" | Equipment crafting, Refinement reagent
| style="padding:10px 14px;color:#546e7a;border-bottom:1px solid #1e2a30;" | Core smelting chain starter
|-
| style="padding:10px 14px;color:#cfd8dc;border-bottom:1px solid #1e2a30;" | 💠 Phracon
| style="padding:10px 14px;color:#90a4ae;border-bottom:1px solid #1e2a30;" | Emveretarcon
| style="padding:10px 14px;color:#78909c;border-bottom:1px solid #1e2a30;" | Lv1–Lv2 weapon refine ore
| style="padding:10px 14px;color:#546e7a;border-bottom:1px solid #1e2a30;" | Refine NPC only
|-
| style="padding:10px 14px;color:#cfd8dc;border-bottom:1px solid #1e2a30;" | 🔷 Rough Oridecon
| style="padding:10px 14px;color:#90a4ae;border-bottom:1px solid #1e2a30;" | Oridecon (3% drop upgrade)
| style="padding:10px 14px;color:#78909c;border-bottom:1px solid #1e2a30;" | Lv3–Lv4 weapon refine
| style="padding:10px 14px;color:#546e7a;border-bottom:1px solid #1e2a30;" | Base → Refined via NPC
|-
|-
! style="background:rgba(0,0,0,0.35);color:#3a2868;padding:8px 14px;text-align:left;font-size:0.80em;border-bottom:1px solid rgba(255,255,255,0.06);" | Vein Type
| style="padding:10px 14px;color:#cfd8dc;border-bottom:1px solid #1e2a30;" | 🔶 Rough Elunium
! style="background:rgba(0,0,0,0.35);color:#3a2868;padding:8px 14px;text-align:center;font-size:0.80em;border-bottom:1px solid rgba(255,255,255,0.06);width:130px;" | Frequency
| style="padding:10px 14px;color:#90a4ae;border-bottom:1px solid #1e2a30;" | Elunium (3.5% drop upgrade)
! style="background:rgba(0,0,0,0.35);color:#3a2868;padding:8px 14px;text-align:left;font-size:0.80em;border-bottom:1px solid rgba(255,255,255,0.06);" | Notes
| style="padding:10px 14px;color:#78909c;border-bottom:1px solid #1e2a30;" | Armor refinement ore
| style="padding:10px 14px;color:#546e7a;border-bottom:1px solid #1e2a30;" | Base → Refined via NPC
|-
|-
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);" | <span style="color:#90caf9;font-size:0.88em;font-weight:bold;">◆ Mineral Vein</span> | style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.84em;color:#80e890;font-weight:bold;" | High | style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);color:#406070;font-size:0.85em;" | Baseline material layer and stable money source.
| style="padding:10px 14px;color:#fff9c4;" | 👑 Emperium
| style="padding:10px 14px;color:#fff176;" | (Final — no further refine)
| style="padding:10px 14px;color:#ffd54f;" | Guild Castles, special craft
| style="padding:10px 14px;color:#b0bec5;" | Very rare from Mineral Vein
|-
|-
| style="padding:10px 14px;" | <span style="color:#ffcc80;font-size:0.88em;font-weight:bold;">◆◆ Epic Vein</span> | style="padding:10px 14px;text-align:center;font-family:'Courier New',monospace;font-size:0.84em;color:#f0c840;font-weight:bold;" | Medium | style="padding:10px 14px;color:#406070;font-size:0.85em;" | Major conflict points. Best source of high-value ores before Guardian Field.
| style="padding:10px 14px;color:#b2ebf2;" | ✦ Mithril Ore
| style="padding:10px 14px;color:#80deea;" | (Final — no further refine)
| style="padding:10px 14px;color:#26c6da;" | Endgame equipment
| style="padding:10px 14px;color:#546e7a;" | 0.03% — ultra rare from Mineral Vein
|}
|}
</div>
</div>


== Guardian Extraction Field — Base Level 81–99 ==
<!-- Epic chain -->
 
<div>
<div style="background:linear-gradient(135deg,rgba(36,14,4,0.94),rgba(20,6,2,0.99));border:2px solid rgba(255,160,60,0.32);border-left:5px solid #ff9800;border-radius:9px;padding:16px 22px;margin:0 0 18px 0;position:relative;overflow:hidden;">
<div style="display:inline-flex;align-items:center;gap:8px;background:#150f00;border:1px solid #7c5c0055;border-radius:6px;padding:7px 14px;margin-bottom:12px;">
<div style="position:absolute;top:0;right:0;width:160px;height:100%;background:linear-gradient(270deg,rgba(255,152,0,0.07),transparent);pointer-events:none;"></div>
<span style="font-size:14px;"></span>
<div style="font-weight:bold;color:#ffb74d;font-size:0.96em;letter-spacing:0.06em;text-transform:uppercase;margin-bottom:8px;">🐲 High-Risk MVP Zone — Maximum Danger, Maximum Reward</div>
<span style="font-size:12px;font-weight:800;color:#ffe082;text-transform:uppercase;letter-spacing:1px;">Epic Vein Chain</span>
<div style="color:#705030;font-size:0.90em;line-height:1.68;">The Guardian Extraction Field is the highest-risk mining zone. Epic Veins are the main objective, guardian MVPs create map pressure, and open PvP makes this field extremely dangerous. Players entering this zone should expect ambushes, boss pressure, and intense competition over the strongest extraction rewards the server offers.</div>
</div>
</div>
 
{| class="wikitable" style="width:100%;background:#100d00;border-collapse:separate;border-spacing:0;border-radius:8px;overflow:hidden;border:1px solid #7c5c00;"
<div style="background:linear-gradient(135deg,rgba(4,18,24,0.94),rgba(2,10,16,0.99));border:1px solid rgba(255,255,255,0.07);border-radius:9px;overflow:hidden;margin:0 0 28px 0;">
! style="background:#1a1400;color:#ffa000;font-size:11px;text-transform:uppercase;letter-spacing:1px;padding:10px 14px;border-bottom:1px solid #2d2000;text-align:left;" | Epic Material
<div style="background:linear-gradient(90deg,rgba(255,152,0,0.12),transparent);padding:11px 18px 9px;border-bottom:1px solid rgba(255,255,255,0.06);font-weight:bold;color:#7a4810;font-size:0.82em;letter-spacing:0.09em;text-transform:uppercase;">Guardian Field — Vein Frequency</div>
! style="background:#1a1400;color:#ffa000;font-size:11px;text-transform:uppercase;letter-spacing:1px;padding:10px 14px;border-bottom:1px solid #2d2000;text-align:left;" | Drop Rate
{| style="width:100%;border-collapse:collapse;margin:0;"
! style="background:#1a1400;color:#ffa000;font-size:11px;text-transform:uppercase;letter-spacing:1px;padding:10px 14px;border-bottom:1px solid #2d2000;text-align:left;" | Used For
! style="background:#1a1400;color:#ffa000;font-size:11px;text-transform:uppercase;letter-spacing:1px;padding:10px 14px;border-bottom:1px solid #2d2000;text-align:left;" | Rarity
|-
| style="padding:10px 14px;color:#ffe082;border-bottom:1px solid #1e1800;" | 💎 Oridecon
| style="padding:10px 14px;color:#ffd54f;border-bottom:1px solid #1e1800;font-weight:700;" | 17%
| style="padding:10px 14px;color:#b0bec5;border-bottom:1px solid #1e1800;" | Lv3–Lv4 weapon refine
| style="padding:10px 14px;border-bottom:1px solid #1e1800;"><span class="pill pill-epic">Epic High</span></td>
|-
| style="padding:10px 14px;color:#ffe082;border-bottom:1px solid #1e1800;" | 💎 Elunium
| style="padding:10px 14px;color:#ffd54f;border-bottom:1px solid #1e1800;font-weight:700;" | 17%
| style="padding:10px 14px;color:#b0bec5;border-bottom:1px solid #1e1800;" | Armor refine
| style="padding:10px 14px;border-bottom:1px solid #1e1800;"><span class="pill pill-epic">Epic High</span></td>
|-
| style="padding:10px 14px;color:#ffcdd2;border-bottom:1px solid #1e1800;" | ❤ Ruby
| style="padding:10px 14px;color:#ffd54f;border-bottom:1px solid #1e1800;font-weight:700;" | 11%
| style="padding:10px 14px;color:#b0bec5;border-bottom:1px solid #1e1800;" | Jewelry crafting, trade
| style="padding:10px 14px;border-bottom:1px solid #1e1800;"><span class="pill pill-epic">Epic High</span></td>
|-
| style="padding:10px 14px;color:#c8e6c9;border-bottom:1px solid #1e1800;" | 💚 Emerald
| style="padding:10px 14px;color:#ffd54f;border-bottom:1px solid #1e1800;font-weight:700;" | 11%
| style="padding:10px 14px;color:#b0bec5;border-bottom:1px solid #1e1800;" | Jewelry crafting, trade
| style="padding:10px 14px;border-bottom:1px solid #1e1800;"><span class="pill pill-epic">Epic High</span></td>
|-
| style="padding:10px 14px;color:#fff9c4;border-bottom:1px solid #1e1800;" | 👑 Emperium
| style="padding:10px 14px;color:#ffd54f;border-bottom:1px solid #1e1800;font-weight:700;" | 6.5%
| style="padding:10px 14px;color:#b0bec5;border-bottom:1px solid #1e1800;" | Guild Castles, special craft
| style="padding:10px 14px;border-bottom:1px solid #1e1800;"><span class="pill" style="background:#2d2200;border:1px solid #ffd700;color:#fff176;">Rare</span></td>
|-
| style="padding:10px 14px;color:#e1bee7;border-bottom:1px solid #1e1800;" | 🟢 Cursed Emerald
| style="padding:10px 14px;color:#ce93d8;border-bottom:1px solid #1e1800;font-weight:700;" | 1.5%
| style="padding:10px 14px;color:#b0bec5;border-bottom:1px solid #1e1800;" | Exclusive recipes
| style="padding:10px 14px;border-bottom:1px solid #1e1800;"><span class="pill pill-rare">Epic Exclusive</span></td>
|-
|-
! style="background:rgba(0,0,0,0.35);color:#5a3010;padding:8px 14px;text-align:left;font-size:0.80em;border-bottom:1px solid rgba(255,255,255,0.06);" | Vein Type
| style="padding:10px 14px;color:#e1bee7;border-bottom:1px solid #1e1800;" | 🔵 Shiny Opal
! style="background:rgba(0,0,0,0.35);color:#5a3010;padding:8px 14px;text-align:center;font-size:0.80em;border-bottom:1px solid rgba(255,255,255,0.06);width:130px;" | Frequency
| style="padding:10px 14px;color:#ce93d8;border-bottom:1px solid #1e1800;font-weight:700;" | 1.5%
! style="background:rgba(0,0,0,0.35);color:#5a3010;padding:8px 14px;text-align:left;font-size:0.80em;border-bottom:1px solid rgba(255,255,255,0.06);" | Notes
| style="padding:10px 14px;color:#b0bec5;border-bottom:1px solid #1e1800;" | Exclusive recipes
| style="padding:10px 14px;border-bottom:1px solid #1e1800;"><span class="pill pill-rare">Epic Exclusive</span></td>
|-
|-
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);" | <span style="color:#90caf9;font-size:0.88em;font-weight:bold;">◆ Mineral Vein</span> | style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.84em;color:#f0c840;font-weight:bold;" | Medium | style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);color:#406070;font-size:0.85em;" | Backup resource layer for advanced miners.
| style="padding:10px 14px;color:#b3e5fc;border-bottom:1px solid #1e1800;" | 💙 Sea Sapphire
| style="padding:10px 14px;color:#ce93d8;border-bottom:1px solid #1e1800;font-weight:700;" | 1.5%
| style="padding:10px 14px;color:#b0bec5;border-bottom:1px solid #1e1800;" | Exclusive recipes
| style="padding:10px 14px;border-bottom:1px solid #1e1800;"><span class="pill pill-rare">Epic Exclusive</span></td>
|-
|-
| style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);" | <span style="color:#ffcc80;font-size:0.88em;font-weight:bold;">◆◆ Epic Vein</span> | style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);text-align:center;font-family:'Courier New',monospace;font-size:0.84em;color:#80e890;font-weight:bold;" | High | style="padding:10px 14px;border-bottom:1px solid rgba(255,255,255,0.04);color:#406070;font-size:0.85em;" | Primary source of Oridecon, Elunium, Emperium, special stones, and Mithril Ore.
| style="padding:10px 14px;color:#ffcdd2;border-bottom:1px solid #1e1800;" | 🔴 Bloody Ruby
| style="padding:10px 14px;color:#ce93d8;border-bottom:1px solid #1e1800;font-weight:700;" | 1.5%
| style="padding:10px 14px;color:#b0bec5;border-bottom:1px solid #1e1800;" | Exclusive recipes
| style="padding:10px 14px;border-bottom:1px solid #1e1800;"><span class="pill pill-rare">Epic Exclusive</span></td>
|-
|-
| style="padding:10px 14px;" | <span style="color:#ff5050;font-size:0.88em;font-weight:bold;">🐲 Guardians</span> | style="padding:10px 14px;text-align:center;font-family:'Courier New',monospace;font-size:0.84em;color:#ff7050;font-weight:bold;" | Active | style="padding:10px 14px;color:#406070;font-size:0.85em;" | Guardian MVPs defend the zone and create PvP hotspots.
| style="padding:10px 14px;color:#b2ebf2;" | ✦ Mithril Ore
| style="padding:10px 14px;color:#26c6da;font-weight:700;" | 5%
| style="padding:10px 14px;color:#b0bec5;" | Endgame equipment
| style="padding:10px 14px;"><span class="pill" style="background:#002030;border:1px solid #26c6da;color:#80deea;">Endgame</span></td>
|}
|}
</div>
</div>
</div>


== Guardian MVPs ==
<!-- ══════════════════════════════════════════════════
 
    GUARDIAN MVPs
<div style="background:linear-gradient(90deg,rgba(240,120,30,0.09),rgba(240,120,30,0.03),transparent);border:1px solid rgba(240,120,30,0.22);border-radius:8px;padding:10px 18px;margin:0 0 18px 0;color:#907030;font-size:0.88em;line-height:1.65;">
    ══════════════════════════════════════════════════ -->
Guardian MVPs are special boss monsters connected to Extraction Fields. They appear through <strong style="color:#c09040;">timed spawns, mining activity, Epic Vein interaction, or dynamic field progress</strong>. They create conflict around the most valuable resources.
<div class="ef-section" style="margin-bottom:28px;">
<div style="text-align:center;margin-bottom:20px;">
<span style="font-size:11px;letter-spacing:4px;color:#26c6da;text-transform:uppercase;">Elite Enemies</span>
<h2 style="font-size:22px;color:#e0f7fa;margin:6px 0;font-weight:800;">Guardian MVPs</h2>
<div style="font-size:12px;color:#78909c;">Each zone hosts a Guardian MVP that defends its ore deposits — defeat them for bonus rewards</div>
</div>
</div>


<div style="display:grid;grid-template-columns:1fr 1fr;gap:14px;margin:0 0 28px 0;">
<div style="display:flex;gap:16px;flex-wrap:wrap;">


<div style="background:linear-gradient(135deg,rgba(6,18,24,0.92),rgba(2,10,16,0.98));border:1px solid rgba(38,198,218,0.22);border-radius:9px;padding:16px 18px;">
<div class="mvp-card">
<div style="font-weight:bold;color:#4dd0e1;font-size:0.88em;letter-spacing:0.07em;text-transform:uppercase;margin-bottom:10px;padding-bottom:8px;border-bottom:1px solid rgba(38,198,218,0.14);">🗺 Territory Control</div>
<div style="display:flex;align-items:center;gap:10px;margin-bottom:12px;">
<div style="color:#407080;font-size:0.88em;line-height:1.65;">Guardian MVPs appear near valuable mining routes and Epic Vein areas, forcing players to choose between mining and fighting. Their presence turns extraction routes into battlefield territory.</div>
<div style="font-size:28px;">🌿</div>
<div>
<div style="font-size:14px;font-weight:800;color:#66bb6a;">Low Field Guardian</div>
<div style="font-size:11px;color:#78909c;">Level 1 – 40 Zone</div>
</div>
</div>
<div style="font-size:12px;color:#90a4ae;line-height:1.6;margin-bottom:12px;">Patrols the Low Extraction Field. Relatively accessible for mid-level parties. Drops bonus common ores and occasional Epic Vein materials upon defeat.</div>
<div style="display:flex;flex-direction:column;gap:5px;font-size:11px;">
<div style="display:flex;justify-content:space-between;color:#78909c;"><span>Difficulty</span><span style="color:#66bb6a;font-weight:700;">★★☆☆☆</span></div>
<div style="display:flex;justify-content:space-between;color:#78909c;"><span>Respawn</span><span style="color:#ce93d8;font-weight:700;">60 minutes</span></div>
<div style="display:flex;justify-content:space-between;color:#78909c;"><span>Bonus Loot</span><span style="color:#ffd54f;font-weight:700;">Common + Rare chance</span></div>
</div>
</div>
</div>


<div style="background:linear-gradient(135deg,rgba(20,6,4,0.92),rgba(12,4,2,0.98));border:1px solid rgba(220,60,60,0.22);border-radius:9px;padding:16px 18px;">
<div class="mvp-card">
<div style="font-weight:bold;color:#ef9a9a;font-size:0.88em;letter-spacing:0.07em;text-transform:uppercase;margin-bottom:10px;padding-bottom:8px;border-bottom:1px solid rgba(220,60,60,0.14);">⚔️ PvP Pressure</div>
<div style="display:flex;align-items:center;gap:10px;margin-bottom:12px;">
<div style="color:#704040;font-size:0.88em;line-height:1.65;">Guardian fights become natural PvP hotspots. Players focus on killing the boss while others may attack them from behind. Fighting the guardian while carrying mined materials is extremely dangerous.</div>
<div style="font-size:28px;">🔥</div>
<div>
<div style="font-size:14px;font-weight:800;color:#ffa726;">Deep Field Guardian</div>
<div style="font-size:11px;color:#78909c;">Level 41 – 80 Zone</div>
</div>
</div>
<div style="font-size:12px;color:#90a4ae;line-height:1.6;margin-bottom:12px;">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.</div>
<div style="display:flex;flex-direction:column;gap:5px;font-size:11px;">
<div style="display:flex;justify-content:space-between;color:#78909c;"><span>Difficulty</span><span style="color:#ffa726;font-weight:700;">★★★☆☆</span></div>
<div style="display:flex;justify-content:space-between;color:#78909c;"><span>Respawn</span><span style="color:#ce93d8;font-weight:700;">90 minutes</span></div>
<div style="display:flex;justify-content:space-between;color:#78909c;"><span>Bonus Loot</span><span style="color:#ffd54f;font-weight:700;">Refined ores + Gem chance</span></div>
</div>
</div>
</div>


<div style="background:linear-gradient(135deg,rgba(14,22,8,0.92),rgba(8,14,4,0.98));border:1px solid rgba(80,200,60,0.22);border-radius:9px;padding:16px 18px;">
<div class="mvp-card">
<div style="font-weight:bold;color:#a5d6a7;font-size:0.88em;letter-spacing:0.07em;text-transform:uppercase;margin-bottom:10px;padding-bottom:8px;border-bottom:1px solid rgba(80,200,60,0.14);">💎 Exclusive Drops</div>
<div style="display:flex;align-items:center;gap:10px;margin-bottom:12px;">
<div style="color:#406030;font-size:0.88em;line-height:1.65;">Guardians may drop extraction-exclusive materials — including Emperium, Mithril Ore, special gems, and other rare items unavailable from ordinary farming. The best rewards only come from killing guardians.</div>
<div style="font-size:28px;">💀</div>
<div>
<div style="font-size:14px;font-weight:800;color:#ef5350;">Field Warlord</div>
<div style="font-size:11px;color:#78909c;">Guardian Zone — Lv 81–99</div>
</div>
</div>
<div style="font-size:12px;color:#90a4ae;line-height:1.6;margin-bottom:12px;">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.</div>
<div style="display:flex;flex-direction:column;gap:5px;font-size:11px;">
<div style="display:flex;justify-content:space-between;color:#78909c;"><span>Difficulty</span><span style="color:#ef5350;font-weight:700;">★★★★★</span></div>
<div style="display:flex;justify-content:space-between;color:#78909c;"><span>Respawn</span><span style="color:#ce93d8;font-weight:700;">120 minutes</span></div>
<div style="display:flex;justify-content:space-between;color:#78909c;"><span>Bonus Loot</span><span style="color:#ffd54f;font-weight:700;">Mithril · Epic exclusives</span></div>
</div>
</div>
</div>


<div style="background:linear-gradient(135deg,rgba(24,14,4,0.92),rgba(14,8,2,0.98));border:1px solid rgba(240,160,40,0.22);border-radius:9px;padding:16px 18px;">
<div style="font-weight:bold;color:#ffcc80;font-size:0.88em;letter-spacing:0.07em;text-transform:uppercase;margin-bottom:10px;padding-bottom:8px;border-bottom:1px solid rgba(240,160,40,0.14);">⚠ High Risk</div>
<div style="color:#705030;font-size:0.88em;line-height:1.65;">Guardians are powerful. Fighting them while managing PvP threats and carrying mining loot creates a very high-stakes situation. A party with dedicated roles has a significant survival advantage.</div>
</div>
</div>
</div>
</div>


<!-- ═══════════════════════════════════════════════════════════
<!-- ══════════════════════════════════════════════════
     PvP WARNING
     PvP WARNING
════════════════════════════════════════════════════════════ -->
    ══════════════════════════════════════════════════ -->
== Extraction PvP ==
<div class="ef-section" style="margin-bottom:28px;">
<div style="background:linear-gradient(135deg,#1a0000 0%,#200808 100%);border:1px solid #c62828;border-left:4px solid #ef5350;border-radius:10px;padding:22px;position:relative;overflow:hidden;">
<div style="position:absolute;top:0;left:0;right:0;height:3px;background:repeating-linear-gradient(90deg,#ef5350 0px,#ef5350 16px,transparent 16px,transparent 24px);animation:hazard-march 1.5s linear infinite;"></div>
<div style="display:flex;align-items:flex-start;gap:16px;">
<div style="font-size:32px;flex-shrink:0;margin-top:4px;">⚠</div>
<div>
<div style="font-size:14px;font-weight:900;color:#ef5350;text-transform:uppercase;letter-spacing:1px;margin-bottom:8px;">Open PvP Warning — All Field Zones</div>
<div style="font-size:13px;color:#ef9a9a;line-height:1.7;">All Extraction Fields are designated open PvP zones. <strong>You can be attacked by any player at any time</strong> regardless of guild, party, or faction. Death in an Extraction Field results in <strong>dropping a portion of your collected ores</strong>. Plan your extraction runs accordingly — travel in groups, watch your surroundings, and never carry more than you can afford to lose.</div>
<div style="margin-top:12px;display:flex;gap:10px;flex-wrap:wrap;">
<span class="pill pill-pvp">⚠ No Safe Zone</span>
<span class="pill pill-pvp">💀 Ore Drop on Death</span>
<span class="pill pill-pvp">⚔ Any vs Any</span>
</div>
</div>
</div>
</div>
</div>


<div style="background:linear-gradient(135deg,rgba(36,6,8,0.94),rgba(18,2,4,0.99));border:2px solid rgba(255,80,80,0.32);border-left:5px solid #ef5350;border-radius:9px;padding:16px 22px;margin:0 0 18px 0;position:relative;overflow:hidden;">
<!-- ══════════════════════════════════════════════════
<div style="position:absolute;top:0;right:0;width:160px;height:100%;background:linear-gradient(270deg,rgba(239,83,80,0.06),transparent);pointer-events:none;"></div>
    STRATEGY GUIDE
<div style="font-weight:bold;color:#ef9a9a;font-size:0.96em;letter-spacing:0.06em;text-transform:uppercase;margin-bottom:9px;">⚠ Open PvP Zone — Enter Prepared</div>
    ══════════════════════════════════════════════════ -->
<div style="color:#804040;font-size:0.90em;line-height:1.68;">Extraction Fields are open-conflict zones. Players should not enter expecting safe farming. Mine carefully, watch your surroundings, and prepare to fight or escape. High-value materials make you a target.</div>
<div class="ef-section" style="margin-bottom:28px;">
<div style="text-align:center;margin-bottom:20px;">
<span style="font-size:11px;letter-spacing:4px;color:#26c6da;text-transform:uppercase;">Tactics</span>
<h2 style="font-size:22px;color:#e0f7fa;margin:6px 0;font-weight:800;">Extraction Strategy</h2>
</div>
</div>


<div style="display:grid;grid-template-columns:1fr 1fr;gap:10px;margin:0 0 28px 0;">
<div style="display:flex;gap:16px;flex-wrap:wrap;">
<div style="padding:10px 14px;border-radius:7px;background:rgba(24,6,6,0.86);border:1px solid rgba(220,60,60,0.18);font-size:0.88em;color:#805050;display:flex;align-items:flex-start;gap:10px;line-height:1.58;"><span style="color:#ef5350;flex-shrink:0;margin-top:1px;"></span><span>Players may <strong style="color:#ef9a9a;">contest ore veins</strong> at any time.</span></div>
<div style="flex:1;min-width:260px;">
<div style="padding:10px 14px;border-radius:7px;background:rgba(24,6,6,0.86);border:1px solid rgba(220,60,60,0.18);font-size:0.88em;color:#805050;display:flex;align-items:flex-start;gap:10px;line-height:1.58;"><span style="color:#ef5350;flex-shrink:0;margin-top:1px;"></span><span>Guardian MVP fights become <strong style="color:#ef9a9a;">PvP hotspots</strong>.</span></div>
<div class="strat-card">
<div style="padding:10px 14px;border-radius:7px;background:rgba(24,6,6,0.86);border:1px solid rgba(220,60,60,0.18);font-size:0.88em;color:#805050;display:flex;align-items:flex-start;gap:10px;line-height:1.58;"><span style="color:#ef5350;flex-shrink:0;margin-top:1px;"></span><span><strong style="color:#ef9a9a;">Mining routes can be ambushed</strong> — movement awareness matters.</span></div>
<div style="font-size:13px;font-weight:800;color:#26c6da;margin-bottom:6px;">⛏ Prioritize Epic Veins in Guardian Zone</div>
<div style="padding:10px 14px;border-radius:7px;background:rgba(24,6,6,0.86);border:1px solid rgba(220,60,60,0.18);font-size:0.88em;color:#805050;display:flex;align-items:flex-start;gap:10px;line-height:1.58;"><span style="color:#ef5350;flex-shrink:0;margin-top:1px;"></span><span>Carrying <strong style="color:#ef9a9a;">high-value materials</strong> increases the risk of being targeted.</span></div>
<div style="font-size:12px;color:#78909c;line-height:1.6;">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.</div>
<div style="padding:10px 14px;border-radius:7px;background:rgba(24,6,6,0.86);border:1px solid rgba(220,60,60,0.18);font-size:0.88em;color:#805050;display:flex;align-items:flex-start;gap:10px;line-height:1.58;"><span style="color:#ef5350;flex-shrink:0;margin-top:1px;"></span><span><strong style="color:#ef9a9a;">Parties</strong> have a major advantage — solo miners are vulnerable.</span></div>
</div>
<div style="padding:10px 14px;border-radius:7px;background:rgba(24,6,6,0.86);border:1px solid rgba(220,60,60,0.18);font-size:0.88em;color:#805050;display:flex;align-items:flex-start;gap:10px;line-height:1.58;"><span style="color:#ef5350;flex-shrink:0;margin-top:1px;"></span><span>Field rules may vary depending on <strong style="color:#ef9a9a;">map configuration</strong>.</span></div>
<div class="strat-card">
<div style="font-size:13px;font-weight:800;color:#26c6da;margin-bottom:6px;">💎 Stack Mining Speed</div>
<div style="font-size:12px;color:#78909c;line-height:1.6;">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.</div>
</div>
<div class="strat-card">
<div style="font-size:13px;font-weight:800;color:#26c6da;margin-bottom:6px;">👁 Scout Before Committing</div>
<div style="font-size:12px;color:#78909c;line-height:1.6;">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.</div>
</div>
</div>
<div style="flex:1;min-width:260px;">
<div class="strat-card">
<div style="font-size:13px;font-weight:800;color:#26c6da;margin-bottom:6px;">🏃 Trip Extraction</div>
<div style="font-size:12px;color:#78909c;line-height:1.6;">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.</div>
</div>
<div class="strat-card">
<div style="font-size:13px;font-weight:800;color:#26c6da;margin-bottom:6px;">👹 Coordinate Guardian Kills</div>
<div style="font-size:12px;color:#78909c;line-height:1.6;">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.</div>
</div>
<div class="strat-card">
<div style="font-size:13px;font-weight:800;color:#26c6da;margin-bottom:6px;">🪙 Sell vs Refine Decision</div>
<div style="font-size:12px;color:#78909c;line-height:1.6;">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.</div>
</div>
</div>
</div>
<!-- ═══════════════════════════════════════════════════════════
    STRATEGY — 5 TACTIC CARDS
════════════════════════════════════════════════════════════ -->
== Extraction Strategy ==
<div style="display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:0 0 28px 0;">
<div style="background:linear-gradient(135deg,rgba(4,20,26,0.92),rgba(2,12,18,0.98));border:1px solid rgba(38,198,218,0.20);border-radius:9px;padding:14px 16px;">
<div style="font-weight:bold;color:#26c6da;font-size:0.86em;letter-spacing:0.07em;text-transform:uppercase;margin-bottom:8px;padding-bottom:6px;border-bottom:1px solid rgba(38,198,218,0.12);">⚡ Fast Route Mining</div>
<div style="color:#307080;font-size:0.86em;line-height:1.60;">Focus on Mineral Veins, avoid PvP hotspots, and leave quickly before other players notice your route. Best for solo players and low-level miners.</div>
</div>
</div>
<div style="background:linear-gradient(135deg,rgba(20,6,4,0.92),rgba(12,4,2,0.98));border:1px solid rgba(220,60,40,0.20);border-radius:9px;padding:14px 16px;">
<div style="font-weight:bold;color:#ef9a9a;font-size:0.86em;letter-spacing:0.07em;text-transform:uppercase;margin-bottom:8px;padding-bottom:6px;border-bottom:1px solid rgba(220,60,40,0.12);">⚔️ Contested Vein Control</div>
<div style="color:#705040;font-size:0.86em;line-height:1.60;">Fight for Epic Veins with a dedicated party. Hold the area around the vein and defend against incoming players while teammates mine.</div>
</div>
</div>


<div style="background:linear-gradient(135deg,rgba(24,14,4,0.92),rgba(14,8,2,0.98));border:1px solid rgba(240,160,40,0.20);border-radius:9px;padding:14px 16px;">
<!-- ══════════════════════════════════════════════════
<div style="font-weight:bold;color:#ffcc80;font-size:0.86em;letter-spacing:0.07em;text-transform:uppercase;margin-bottom:8px;padding-bottom:6px;border-bottom:1px solid rgba(240,160,40,0.12);">🐲 Guardian Hunting</div>
    REWARDS SUMMARY
<div style="color:#706030;font-size:0.86em;line-height:1.60;">Track guardian MVPs, control the area around their spawn, and secure the exclusive drops. Requires a strong party and awareness of the PvP threat during the fight.</div>
    ══════════════════════════════════════════════════ -->
<div class="ef-section" style="margin-bottom:28px;">
<div style="text-align:center;margin-bottom:20px;">
<span style="font-size:11px;letter-spacing:4px;color:#26c6da;text-transform:uppercase;">Overview</span>
<h2 style="font-size:22px;color:#e0f7fa;margin:6px 0;font-weight:800;">Rewards Summary</h2>
</div>
</div>
<div style="display:flex;gap:14px;flex-wrap:wrap;">


<div style="background:linear-gradient(135deg,rgba(8,18,34,0.92),rgba(4,10,22,0.98));border:1px solid rgba(80,160,255,0.20);border-radius:9px;padding:14px 16px;">
<div class="stat-bubble" style="flex:1;min-width:140px;">
<div style="font-weight:bold;color:#6ab4f5;font-size:0.86em;letter-spacing:0.07em;text-transform:uppercase;margin-bottom:8px;padding-bottom:6px;border-bottom:1px solid rgba(80,160,255,0.12);">🌊 Defensive Mining</div>
<div style="font-size:24px;margin-bottom:6px;">🪨</div>
<div style="color:#405070;font-size:0.86em;line-height:1.60;">Use mobility skills, escape tools, and map awareness to avoid fights entirely. Mine between conflict zones and prioritize survival over maximum yield.</div>
<div style="font-size:18px;font-weight:900;color:#b0bec5;margin-bottom:2px;">17 Items</div>
<div style="font-size:11px;color:#78909c;">Mineral Vein pool</div>
</div>
</div>


<div style="background:linear-gradient(135deg,rgba(8,22,12,0.92),rgba(4,14,6,0.98));border:1px solid rgba(60,200,80,0.20);border-radius:9px;padding:14px 16px;grid-column:1 / -1;">
<div class="stat-bubble" style="flex:1;min-width:140px;">
<div style="font-weight:bold;color:#80e898;font-size:0.86em;letter-spacing:0.07em;text-transform:uppercase;margin-bottom:8px;padding-bottom:6px;border-bottom:1px solid rgba(60,200,80,0.12);">🤝 Party Extraction — Optimal</div>
<div style="font-size:24px;margin-bottom:6px;">✨</div>
<div style="color:#305040;font-size:0.86em;line-height:1.60;">Bring damage dealers to handle monsters and players, supports to keep the party alive, and control classes to lock down PvP threats. Divide roles: some mine while others fight. Parties with a healer and a tank can hold Epic Veins for extended periods.</div>
<div style="font-size:18px;font-weight:900;color:#ffe082;margin-bottom:2px;">13 Items</div>
<div style="font-size:11px;color:#78909c;">Epic Vein pool</div>
</div>
</div>


<div class="stat-bubble" style="flex:1;min-width:140px;">
<div style="font-size:24px;margin-bottom:6px;">🔮</div>
<div style="font-size:18px;font-weight:900;color:#ce93d8;margin-bottom:2px;">4 Exclusives</div>
<div style="font-size:11px;color:#78909c;">Epic-only gem variants</div>
</div>
</div>


<!-- ═══════════════════════════════════════════════════════════
<div class="stat-bubble" style="flex:1;min-width:140px;">
    REWARDS SUMMARY — 4 TIER CARDS
<div style="font-size:24px;margin-bottom:6px;"></div>
════════════════════════════════════════════════════════════ -->
<div style="font-size:18px;font-weight:900;color:#26c6da;margin-bottom:2px;">Mithril Ore</div>
== Extraction Rewards Summary ==
<div style="font-size:11px;color:#78909c;">Endgame — both veins</div>
 
<div style="display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin:0 0 28px 0;">
 
<div style="background:linear-gradient(160deg,rgba(4,22,28,0.92),rgba(2,12,18,0.98));border:1px solid rgba(38,198,218,0.28);border-top:3px solid #26c6da;border-radius:9px;padding:16px 14px;">
<div style="font-size:1.3em;margin-bottom:8px;text-align:center;"></div>
<div style="font-weight:bold;color:#4dd0e1;font-size:0.84em;letter-spacing:0.06em;text-transform:uppercase;margin-bottom:8px;text-align:center;">Mineral Veins</div>
<ul style="margin:0;padding:0 0 0 14px;color:#306070;font-size:0.82em;line-height:1.70;">
<li>Iron, Coal, Steel</li>
<li>Phracon and Emveretarcon</li>
<li>Ruby, Emerald, diamonds</li>
<li>Emperium at 3%</li>
</ul>
<div style="margin-top:8px;padding-top:8px;border-top:1px solid rgba(38,198,218,0.10);text-align:center;font-family:'Courier New',monospace;font-size:0.72em;color:#1a4050;">Risk: Low–Medium</div>
</div>
</div>


<div style="background:linear-gradient(160deg,rgba(30,12,4,0.92),rgba(18,6,2,0.98));border:1px solid rgba(255,160,60,0.28);border-top:3px solid #ff9800;border-radius:9px;padding:16px 14px;">
<div class="stat-bubble" style="flex:1;min-width:140px;">
<div style="font-size:1.3em;margin-bottom:8px;text-align:center;">💎</div>
<div style="font-size:24px;margin-bottom:6px;">👹</div>
<div style="font-weight:bold;color:#ffb74d;font-size:0.84em;letter-spacing:0.06em;text-transform:uppercase;margin-bottom:8px;text-align:center;">Epic Veins</div>
<div style="font-size:18px;font-weight:900;color:#ab47bc;margin-bottom:2px;">3 Guardians</div>
<ul style="margin:0;padding:0 0 0 14px;color:#603810;font-size:0.82em;line-height:1.70;">
<div style="font-size:11px;color:#78909c;">One per field tier</div>
<li>Oridecon and Elunium</li>
<li>Ruby and Emerald</li>
<li>Special gemstones</li>
<li>Mithril Ore at 5%</li>
</ul>
<div style="margin-top:8px;padding-top:8px;border-top:1px solid rgba(255,160,60,0.10);text-align:center;font-family:'Courier New',monospace;font-size:0.72em;color:#5a3010;">Risk: High</div>
</div>
</div>


<div style="background:linear-gradient(160deg,rgba(16,10,30,0.92),rgba(8,6,20,0.98));border:1px solid rgba(150,100,220,0.28);border-top:3px solid #7e57c2;border-radius:9px;padding:16px 14px;">
<div style="font-size:1.3em;margin-bottom:8px;text-align:center;">🔮</div>
<div style="font-weight:bold;color:#b39ddb;font-size:0.84em;letter-spacing:0.06em;text-transform:uppercase;margin-bottom:8px;text-align:center;">Special Stones</div>
<ul style="margin:0;padding:0 0 0 14px;color:#4a3068;font-size:0.82em;line-height:1.70;">
<li>Cursed Emerald</li>
<li>Shiny Opal</li>
<li>Sea Sapphire</li>
<li>Bloody Ruby</li>
</ul>
<div style="margin-top:8px;padding-top:8px;border-top:1px solid rgba(150,100,220,0.10);text-align:center;font-family:'Courier New',monospace;font-size:0.72em;color:#3a2068;">Epic only: 1.5% each</div>
</div>
</div>
<div style="background:linear-gradient(160deg,rgba(30,6,4,0.92),rgba(18,4,2,0.98));border:1px solid rgba(220,60,40,0.28);border-top:3px solid #ef5350;border-radius:9px;padding:16px 14px;">
<div style="font-size:1.3em;margin-bottom:8px;text-align:center;">🐲</div>
<div style="font-weight:bold;color:#ef9a9a;font-size:0.84em;letter-spacing:0.06em;text-transform:uppercase;margin-bottom:8px;text-align:center;">Guardian MVPs</div>
<ul style="margin:0;padding:0 0 0 14px;color:#703030;font-size:0.82em;line-height:1.70;">
<li>Boss pressure near routes</li>
<li>High-risk PvP hotspots</li>
<li>Rare extraction rewards</li>
</ul>
<div style="margin-top:8px;padding-top:8px;border-top:1px solid rgba(220,60,40,0.10);text-align:center;font-family:'Courier New',monospace;font-size:0.72em;color:#602020;">Risk: Very High</div>
</div>
</div>


<!-- ══════════════════════════════════════════════════
    SEE ALSO
    ══════════════════════════════════════════════════ -->
<div class="ef-section" style="background:#060c10;border:1px solid #26c6da22;border-radius:12px;padding:22px;margin-bottom:10px;">
<div style="font-size:11px;font-weight:800;color:#26c6da;text-transform:uppercase;letter-spacing:2px;margin-bottom:14px;">↗ Related Systems</div>
<div style="display:flex;gap:10px;flex-wrap:wrap;">
<span style="background:#0d1520;border:1px solid #26c6da44;border-radius:6px;padding:8px 16px;font-size:12px;color:#80deea;cursor:pointer;">⚒ [[Equipment Refinement]]</span>
<span style="background:#0d1520;border:1px solid #26c6da44;border-radius:6px;padding:8px 16px;font-size:12px;color:#80deea;cursor:pointer;">🔥 [[Fever System]]</span>
<span style="background:#0d1520;border:1px solid #26c6da44;border-radius:6px;padding:8px 16px;font-size:12px;color:#80deea;cursor:pointer;">⚔ [[PvP Zones]]</span>
<span style="background:#0d1520;border:1px solid #26c6da44;border-radius:6px;padding:8px 16px;font-size:12px;color:#80deea;cursor:pointer;">👹 [[MVP Encyclopedia]]</span>
<span style="background:#0d1520;border:1px solid #26c6da44;border-radius:6px;padding:8px 16px;font-size:12px;color:#80deea;cursor:pointer;">📦 [[Item Database]]</span>
</div>
</div>
== Related Systems ==
<div style="display:grid;grid-template-columns:repeat(3,1fr);gap:10px;margin:0 0 20px 0;">
<div style="padding:10px 14px;border-radius:8px;background:rgba(4,18,24,0.88);border:1px solid rgba(220,100,40,0.20);font-size:0.88em;color:#607080;display:flex;align-items:center;gap:10px;"><span style="font-size:1.1em;">🔥</span> [[Fever System]] — Random options, Rupes Nigra drops</div>
<div style="padding:10px 14px;border-radius:8px;background:rgba(4,18,24,0.88);border:1px solid rgba(80,160,240,0.20);font-size:0.88em;color:#607080;display:flex;align-items:center;gap:10px;"><span style="font-size:1.1em;">⚔</span> [[Dynamic Fields]] — Shared boss progression</div>
<div style="padding:10px 14px;border-radius:8px;background:rgba(4,18,24,0.88);border:1px solid rgba(220,60,60,0.20);font-size:0.88em;color:#607080;display:flex;align-items:center;gap:10px;"><span style="font-size:1.1em;">⏱</span> [[MVP Timer]] — Track guardian status</div>
<div style="padding:10px 14px;border-radius:8px;background:rgba(4,18,24,0.88);border:1px solid rgba(120,80,220,0.20);font-size:0.88em;color:#607080;display:flex;align-items:center;gap:10px;"><span style="font-size:1.1em;">✨</span> [[Random Options]] — Equipment enchantment</div>
<div style="padding:10px 14px;border-radius:8px;background:rgba(4,18,24,0.88);border:1px solid rgba(60,180,80,0.20);font-size:0.88em;color:#607080;display:flex;align-items:center;gap:10px;"><span style="font-size:1.1em;">🎒</span> [[Expedition Gear Quests]] — Use extraction materials</div>
<div style="padding:10px 14px;border-radius:8px;background:rgba(4,18,24,0.88);border:1px solid rgba(240,140,20,0.20);font-size:0.88em;color:#607080;display:flex;align-items:center;gap:10px;"><span style="font-size:1.1em;">⚔️</span> [[Relic Weapon Quests]] — Weapon progression chain</div>
</div>
</div>


[[Category:General Information]]
[[Category:Game Systems]]
[[Category:Fields]]
[[Category:Open World]]
[[Category:Extraction Fields]]
[[Category:PvP]]
[[Category:TimeRO Systems]]
[[Category:Resources]]

Revision as of 05:29, 30 May 2026

<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-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>


Extraction Fields

Open World Resource Warfare

⚔ Open PvP ⛏ Mineral Vein ✦ Epic Vein 👹 Guardian MVPs

Core Rules

Three Pillars of Extraction

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.

Mechanics

The Extraction Cycle

🗺
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
🌿
Low Field
Lv 1 – 40
🔥
Deep Field
Lv 41 – 80
💀
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
🪨
Mineral Vein

Common High Frequency

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

🪨 Iron Ore Common

⚙ Iron Common

🖤 Coal Common

🔩 Steel Uncommon

💠 Phracon Uncommon

💠 Emveretarcon Uncommon

🔷 Rough Oridecon Moderate

🔶 Rough Elunium Moderate

💎 Oridecon 3% rare

💎 Elunium 3.5% rare

💚 Emerald Semi-rare

❤ Ruby Semi-rare

💙 Diamonds Semi-rare

🪙 Silver Ore Moderate

🥇 Gold Rare

👑 Emperium Very Rare

✦ Mithril Ore 0.03% ultra

Epic Vein

Legendary Low Frequency

Rare spawns concentrated in deeper zones. Drops premium refinement materials and exclusive gem variants not obtainable from Mineral Veins. Heavily contested.
Item Drop Pool

💎 Oridecon 17% high

💎 Elunium 17% high

❤ Ruby 11% high

💚 Emerald 11% high

💙 Diamonds Moderate

🪙 Silver Ore Moderate

🥇 Gold Moderate

👑 Emperium 6.5% rare

✦ Epic Vein Exclusive Gems

🟢 Cursed Emerald 1.5% rare

🔵 Shiny Opal 1.5% rare

💙 Sea Sapphire 1.5% rare

🔴 Bloody Ruby 1.5% rare

✦ Mithril Ore 5% epic

⚡ 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

Extraction Material Chain

How raw ores refine into usable materials for equipment upgrading

🪨 Mineral Vein Chain

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 Vein Chain

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

Tactics

Extraction Strategy

⛏ 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.

Overview

Rewards Summary

🪨
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
↗ Related Systems