Página Principal: mudanças entre as edições
Ir para navegação
Ir para pesquisar
Sem resumo de edição |
Sem resumo de edição |
||
| (140 revisões intermediárias pelo mesmo usuário não estão sendo mostradas) | |||
| Linha 1: | Linha 1: | ||
<!-- ============================================================ | <!-- ============================================================ | ||
Página Principal | Página Principal — Edda World | ||
Identidade visual: mint/lavanda, fundo claro, mascote oficial | |||
============================================================ --> | ============================================================ --> | ||
<html> | <html> | ||
<style> | |||
/* ============================================== | |||
PALETA DE MARCA — EDDA WORLD | |||
============================================== */ | |||
:root { | |||
--edda-mint: #5ECFA8; | |||
--edda-mint-light: #A8E8D0; | |||
--edda-mint-tint: rgba(94,207,168,0.14); | |||
--edda-mint-tint-strong: rgba(94,207,168,0.35); | |||
--edda-lavender: #9B87D4; | |||
--edda-lavender-tint: rgba(155,135,212,0.16); | |||
--edda-plum: #241832; | |||
--edda-plum-soft: #2E2040; | |||
--edda-text: #1A2640; | |||
--edda-text-secondary: #6B6478; | |||
} | |||
/* ===== HERO ===== */ | |||
.edda-hero { | |||
position: relative; | |||
overflow: hidden; | |||
border-radius: 18px; | |||
margin-bottom: 14px; | |||
height: 300px; | |||
display: flex; | |||
align-items: center; | |||
background-color: #FDF9F2; | |||
background-image: url('/index.php/Special:FilePath/Banner_Certo_Gato.png'); | |||
background-size: cover; | |||
background-position: center 35%; | |||
border: 1px solid var(--edda-mint-tint-strong); | |||
} | |||
.edda-hero-content { | |||
position: relative; | |||
z-index: 1; | |||
height: 100%; | |||
max-width: 60%; | |||
padding: 0 40px 0 400px; | |||
display: flex; | |||
flex-direction: column; | |||
justify-content: center; | |||
} | |||
.edda-hero-badge { | |||
display: inline-flex; | |||
align-items: center; | |||
gap: 5px; | |||
background: rgba(94,207,168,0.16); | |||
border: 1px solid var(--edda-mint-tint-strong); | |||
color: #2E8F6E; | |||
font-size: 9px; | |||
font-weight: 700; | |||
letter-spacing: 1.2px; | |||
text-transform: uppercase; | |||
padding: 3px 10px; | |||
border-radius: 20px; | |||
margin-bottom: 10px; | |||
} | |||
.edda-hero-logo { | |||
display: block; | |||
width: 310px; | |||
max-width: 100%; | |||
height: auto; | |||
margin-bottom: 8px; | |||
} | |||
.edda-hero-sub { | |||
color: var(--edda-text-secondary); | |||
font-size: 12.5px; | |||
line-height: 1.6; | |||
} | |||
.edda-pills { display: flex; flex-wrap: wrap; gap: 8px; } | |||
.edda-pill { | |||
display: inline-flex; | |||
align-items: center; | |||
gap: 6px; | |||
background: #fff; | |||
border: 1px solid var(--edda-mint-tint-strong); | |||
color: var(--edda-text); | |||
font-size: 11px; | |||
font-weight: 600; | |||
padding: 5px 12px; | |||
border-radius: 20px; | |||
} | |||
.edda-pill-dot { color: var(--edda-mint); font-size: 11px; flex-shrink: 0; } | |||
@media (max-width: 780px) { | |||
.edda-hero { background-position: 72% center; height: 340px; align-items: flex-start; } | |||
.edda-hero-content { max-width: 100%; padding: 22px; } | |||
.edda-hero-logo { width: 220px; } | |||
} | |||
/* ===== INFO BAR ===== */ | |||
.edda-infobar { | |||
display: grid; | |||
grid-template-columns: repeat(6, 1fr); | |||
gap: 1px; | |||
background: var(--edda-mint-tint-strong); | |||
border: 1px solid var(--edda-mint-tint-strong); | |||
border-radius: 10px; | |||
overflow: hidden; | |||
margin-bottom: 14px; | |||
} | |||
.edda-infobar-cell { background: #fff; padding: 12px 14px; } | |||
.edda-infobar-label { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.7px; color: var(--edda-text-secondary); margin-bottom: 4px; } | |||
.edda-infobar-value { font-size: 12.5px; font-weight: 700; color: var(--edda-text); line-height: 1.35; } | |||
.edda-infobar-value.mint { color: #2E8F6E; } | |||
@media (max-width: 780px) { | |||
.edda-infobar { grid-template-columns: repeat(2, 1fr); } | |||
} | |||
/* ===== BLOCOS BASE ===== */ | |||
.wiki-col-wrap { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:12px; align-items:start; } | |||
.wiki-block { background:#fff; border:1px solid var(--edda-mint-tint-strong); border-radius:10px; overflow:hidden; margin-bottom:0; } | |||
.wiki-block-full { background:#fff; border:1px solid var(--edda-mint-tint-strong); border-radius:10px; overflow:hidden; margin-bottom:0; } | |||
.wiki-block-title { background:var(--edda-plum); padding:9px 16px; display:flex; align-items:center; gap:8px; } | |||
.wiki-block-title-text { color:var(--edda-mint-light); font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:0.9px; } | |||
.wiki-link { display:flex; align-items:center; gap:8px; padding:8px 14px; border-bottom:1px solid var(--edda-mint-tint); text-decoration:none; color:var(--edda-text); font-size:13px; transition:color 0.1s,background 0.1s; } | |||
.wiki-link:last-child { border-bottom:none; } | |||
.wiki-link:hover { color:#2E8F6E; background:#F2FBF7; } | |||
.wiki-link img { image-rendering:pixelated; flex-shrink:0; } | |||
.wiki-list .wiki-link:last-child { border-bottom:none; } | |||
.wiki-grid-2 { display:grid; grid-template-columns:repeat(2,1fr); } | |||
.wiki-grid-2 .wiki-link { border-right:1px solid var(--edda-mint-tint); } | |||
.wiki-grid-2 .wiki-link:nth-child(2n) { border-right:none; } | |||
.wiki-grid-3 { display:grid; grid-template-columns:repeat(3,1fr); } | |||
.wiki-grid-3 .wiki-link { border-right:1px solid var(--edda-mint-tint); } | |||
.wiki-grid-3 .wiki-link:nth-child(3n) { border-right:none; } | |||
.wiki-grid-4 { display:grid; grid-template-columns:repeat(4,1fr); } | |||
.wiki-grid-4 .wiki-link { border-right:1px solid var(--edda-mint-tint); } | |||
.wiki-grid-4 .wiki-link:nth-child(4n) { border-right:none; } | |||
/* ===== COMUNIDADE / ACESSO RÁPIDO ===== */ | |||
.wiki-quick { display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin-bottom:14px; } | |||
.wiki-quick-card { position:relative; overflow:hidden; display:flex; flex-direction:column; gap:2px; background:var(--edda-plum); border:1px solid var(--edda-lavender-tint); border-radius:10px; padding:12px 14px 12px 17px; text-decoration:none; transition:border-color 0.15s,transform 0.15s; } | |||
.wiki-quick-card::before { content:''; position:absolute; left:0; top:0; bottom:0; width:3px; background:var(--edda-mint); } | |||
.wiki-quick-card:hover { border-color:var(--edda-mint); transform:translateY(-2px); } | |||
.wiki-quick-title { color:var(--edda-mint-light); font-size:12.5px; font-weight:700; } | |||
.wiki-quick-sub { color:rgba(255,255,255,0.45); font-size:10px; } | |||
/* ===== ÍNDICE RÁPIDO ===== */ | |||
.wiki-jumpnav { display:flex; flex-wrap:wrap; gap:6px; margin-bottom:22px; } | |||
.wiki-jumpnav a { display:inline-flex; align-items:center; gap:5px; background:#fff; border:1px solid var(--edda-mint-tint-strong); color:var(--edda-text-secondary); font-size:11px; font-weight:600; padding:5px 12px; border-radius:20px; text-decoration:none; transition:all 0.15s; } | |||
.wiki-jumpnav a:hover { background:var(--edda-mint); border-color:var(--edda-mint); color:#fff; } | |||
/* ===== CABEÇALHO DE SEÇÃO ===== */ | |||
.wiki-section { margin:26px 0 12px; display:flex; align-items:baseline; gap:12px; scroll-margin-top:16px; } | |||
.wiki-section:first-of-type { margin-top:4px; } | |||
.wiki-section-label { font-size:13px; font-weight:800; color:var(--edda-text); white-space:nowrap; } | |||
.wiki-section-line { flex:1; height:1px; background:var(--edda-mint-tint-strong); } | |||
.wiki-section-desc { font-size:11.5px; color:#9B94A8; white-space:nowrap; } | |||
/* ===== SUBCABEÇALHO interno ===== */ | |||
.wiki-subhead { display:flex; align-items:center; gap:8px; padding:13px 16px 7px; } | |||
.wiki-subhead-dot { width:6px; height:6px; border-radius:50%; background:var(--edda-mint); flex-shrink:0; } | |||
.wiki-subhead-text { font-size:10px; font-weight:700; text-transform:uppercase; letter-spacing:0.9px; color:#2E8F6E; } | |||
.wiki-subhead-count { font-size:9px; font-weight:700; color:var(--edda-text-secondary); background:#F2FBF7; border:1px solid var(--edda-mint-tint-strong); border-radius:20px; padding:1px 8px; margin-left:auto; } | |||
/* ===== RODAPÉ EDDA ===== */ | |||
.edda-banner { display:flex; align-items:center; gap:14px; background:var(--edda-plum); border:1px solid var(--edda-lavender-tint); border-radius:12px; padding:16px 20px; } | |||
.edda-banner-title { color:var(--edda-mint-light); font-size:13.5px; font-weight:700; margin-bottom:3px; } | |||
.edda-banner-sub { color:rgba(255,255,255,0.5); font-size:11.5px; line-height:1.5; } | |||
/* ===== RESPONSIVO ===== */ | |||
@media (max-width:720px) { | |||
.wiki-quick { grid-template-columns:repeat(2,1fr); } | |||
.wiki-col-wrap { grid-template-columns:1fr; } | |||
.wiki-grid-4 { grid-template-columns:repeat(2,1fr); } | |||
.wiki-grid-4 .wiki-link:nth-child(2n) { border-right:none; } | |||
.wiki-grid-4 .wiki-link:nth-child(4n) { border-right:1px solid var(--edda-mint-tint); } | |||
.wiki-grid-3 { grid-template-columns:repeat(2,1fr); } | |||
.wiki-grid-3 .wiki-link:nth-child(2n) { border-right:none; } | |||
.wiki-grid-3 .wiki-link:nth-child(3n) { border-right:1px solid var(--edda-mint-tint); } | |||
.wiki-section-desc { display:none; } | |||
} | |||
</style> | |||
<!-- HERO --> | <!-- HERO --> | ||
<div class="edda-hero"> | <div class="edda-hero"> | ||
<div class="edda-hero-content"> | |||
<img src="/index.php/Special:FilePath/Edda_World_Zada.png" alt="Edda World" class="edda-hero-logo"> | |||
< | |||
</div> | </div> | ||
</div> | </div> | ||
| Linha 28: | Linha 195: | ||
<div class="edda-infobar-cell"> | <div class="edda-infobar-cell"> | ||
<div class="edda-infobar-label">Mecânica</div> | <div class="edda-infobar-label">Mecânica</div> | ||
<div class="edda-infobar-value | <div class="edda-infobar-value mint">Gold Times</div> | ||
</div> | </div> | ||
<div class="edda-infobar-cell"> | <div class="edda-infobar-cell"> | ||
<div class="edda-infobar-label">Emulador</div> | <div class="edda-infobar-label">Emulador</div> | ||
<div class="edda-infobar-value"> | <div class="edda-infobar-value">Pre-Renewal</div> | ||
</div> | </div> | ||
<div class="edda-infobar-cell"> | <div class="edda-infobar-cell"> | ||
<div class="edda-infobar-label">Rates</div> | <div class="edda-infobar-label">Rates</div> | ||
<div class="edda-infobar-value"> | <div class="edda-infobar-value">10x / 10x / 2x</div> | ||
</div> | </div> | ||
<div class="edda-infobar-cell"> | <div class="edda-infobar-cell"> | ||
<div class="edda-infobar-label">Episódio</div> | <div class="edda-infobar-label">Episódio</div> | ||
<div class="edda-infobar-value"> | <div class="edda-infobar-value">Encontro com o Desconhecido +</div> | ||
</div> | </div> | ||
<div class="edda-infobar-cell"> | <div class="edda-infobar-cell"> | ||
| Linha 48: | Linha 215: | ||
<div class="edda-infobar-cell"> | <div class="edda-infobar-cell"> | ||
<div class="edda-infobar-label">Anti-Cheat</div> | <div class="edda-infobar-label">Anti-Cheat</div> | ||
<div class="edda-infobar-value | <div class="edda-infobar-value mint">Gepard 3</div> | ||
</div> | </div> | ||
</div> | </div> | ||
<!-- | <!-- COMUNIDADE --> | ||
< | <div class="wiki-quick"> | ||
<a href="https://discord.gg/7WZM2w5mTM" class="wiki-quick-card"> | |||
.wiki- | <span class="wiki-quick-title">Discord</span> | ||
<span class="wiki-quick-sub">Comunidade & suporte</span> | |||
</a> | |||
<a href="https://www.eddaworld.com.br" class="wiki-quick-card"> | |||
.wiki- | <span class="wiki-quick-title">Site Oficial</span> | ||
<span class="wiki-quick-sub">Notícias & downloads</span> | |||
</a> | |||
.wiki- | <a href="/index.php/Regras" class="wiki-quick-card"> | ||
<span class="wiki-quick-title">Regras</span> | |||
<span class="wiki-quick-sub">Conduta do servidor</span> | |||
</a> | |||
</div> | |||
<!-- ÍNDICE --> | |||
</ | <div class="wiki-jumpnav"> | ||
<a href="#sec-comeceaqui">Comece Aqui</a> | |||
<a href="#sec-economia">ROPs & Recompensas</a> | |||
<a href="#sec-pvpeventos">PvP & Eventos</a> | |||
<a href="#sec-progressao">Progressão & Criação</a> | |||
<a href="#sec-mundopve">Mundo & Conteúdo PvE</a> | |||
</div> | |||
<!-- | <!-- ===================== COMECE AQUI ===================== --> | ||
<div class="wiki- | <div class="wiki-section" id="sec-comeceaqui"> | ||
<span class="wiki-section-label">Comece Aqui</span> | |||
<span class="wiki-section-line"></span> | |||
<span class="wiki-section-desc">Primeiros passos do jogador novo</span> | |||
</div> | |||
<div class="wiki-block-full"> | |||
<div class="wiki-block-title"><span class="wiki-block-title-text">Início da Jornada</span></div> | |||
<div class="wiki-grid-4"> | |||
<a href="/index.php/Informações_do_Servidor" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/7304.png" width="24" height="24" alt="">Informações do Servidor</a> | |||
<a href="/index.php/Caixa_do_Iniciante" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/23285.png" width="24" height="24" alt="">Caixa do Iniciante</a> | |||
<a href="/index.php/Grupo_Éden" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/22508.png" width="24" height="24" alt="">Grupo Éden</a> | |||
<a href="/index.php/Balanceamento_de_Classes" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/2822.png" width="24" height="24" alt="">Balanceamento de Classes</a> | |||
<a href="/index.php/Mestra_das_Classes" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/102909.png" width="24" height="24" alt="">Mestra das Classes</a> | |||
<a href="/index.php/MoEdda" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/6379.png" width="24" height="24" alt="">MoEdda</a> | |||
<a href="/index.php/Guild_Point" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/460050.png" width="24" height="24" alt="">Guild Point</a> | |||
<a href="/index.php/Economia" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/7444.png" width="24" height="24" alt="">Economia</a> | |||
<a href="/index.php/Curandeira" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/12002.png" width="24" height="24" alt="">Curandeira</a> | |||
<a href="/index.php/Resetadora" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/12213.png" width="24" height="24" alt="">Resetadora</a> | |||
<a href="/index.php/Artesão" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/11641.png" width="24" height="24" alt="">Artesão</a> | |||
<a href="/index.php/Removedora_de_Cartas" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/6443.png" width="24" height="24" alt="">Removedora de Cartas</a> | |||
</div> | </div> | ||
</div> | |||
<!-- ===================== ROPS & RECOMPENSAS ===================== --> | |||
<div class="wiki-section" id="sec-economia"> | |||
<span class="wiki-section-label">ROPs & Recompensas</span> | |||
<span class="wiki-section-line"></span> | |||
<span class="wiki-section-desc">Onde ganhar, gastar e trocar recursos</span> | |||
</div> | |||
<div class="wiki-col-wrap"> | |||
<div class="wiki-block"> | <div class="wiki-block"> | ||
<div class="wiki-block-title"><span class="wiki-block-title-text"> | <div class="wiki-block-title"><span class="wiki-block-title-text">ROPs & Pontos</span></div> | ||
<div class="wiki-grid-2"> | <div class="wiki-grid-2"> | ||
<a href="/index.php/Loja_de_ROPs" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/670.png" width="24" height="24" alt="">Loja de ROPs</a> | <a href="/index.php/Loja_de_ROPs" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/670.png" width="24" height="24" alt="">Loja de ROPs</a> | ||
<a href="/index.php/Passe_de_Batalha" class="wiki-link"><img src="https:// | <a href="/index.php/Passe_de_Batalha" class="wiki-link"><img src="https://www.divine-pride.net/img/items/item/LATAM/540111" width="24" height="24" alt="">Passe de Batalha</a> | ||
<a href="/index.php/Pontos_de_Voto" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/20344.png" width="24" height="24" alt="">Pontos de Voto</a> | <a href="/index.php/Pontos_de_Voto" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/20344.png" width="24" height="24" alt="">Pontos de Voto</a> | ||
<a href="/index.php/Pontos_de_Presença" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/1001010.png" width="24" height="24" alt="">Pontos de Presença</a> | <a href="/index.php/Pontos_de_Presença" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/1001010.png" width="24" height="24" alt="">Pontos de Presença</a> | ||
<a href="/index.php/Benefícios_VIP" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/25876.png" width="24" height="24" alt="">Benefícios VIP</a> | <a href="/index.php/Benefícios_VIP" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/25876.png" width="24" height="24" alt="">Benefícios VIP</a> | ||
<a href="/index.php/ | <a href="/index.php/Logue_e_Ganhe" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/105759.png" width="24" height="24" alt="">Logue e Ganhe</a> | ||
<a href="/index.php/Bônus_de_Retorno" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/103426.png" width="24" height="24" alt="">Bônus de Retorno</a> | |||
<a href="/index.php/Loja_Kachua" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/1000274.png" width="24" height="24" alt="">Loja Kachua</a> | |||
</div> | </div> | ||
</div> | </div> | ||
<div class="wiki-block"> | <div class="wiki-block"> | ||
<div class="wiki-block-title"><span class="wiki-block-title-text"> | <div class="wiki-block-title"><span class="wiki-block-title-text">Itens & Recompensas</span></div> | ||
<div class="wiki-grid-2"> | <div class="wiki-grid-2"> | ||
<a href="/index.php/ | <a href="/index.php/Pedras_de_Rate" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/1001655.png" width="24" height="24" alt="">Pedras de Rate</a> | ||
<a href="/index.php/ | <a href="/index.php/Equipamentos_Aprimoráveis" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/550181.png" width="24" height="24" alt="">Equipamentos Aprimoráveis</a> | ||
<a href="/index.php/ | <a href="/index.php/Caixa_dos_Melhores_Itens" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/12608.png" width="24" height="24" alt="">Caixa dos Melhores Itens</a> | ||
<a href="/index.php/ | <a href="/index.php/Pedras_Visuais" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/6638.png" width="24" height="24" alt="">Pedras Visuais</a> | ||
<a href="/index.php/ | <a href="/index.php/Ovo_de_Visuais" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/103923.png" width="24" height="24" alt="">Ovo de Visuais</a> | ||
<a href="/index.php/Equipamentos_Sombrios" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/24184.png" width="24" height="24" alt="">Equipamentos Sombrios</a> | |||
<a href="/index.php/Equipamentos_Rubi" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/490045.png" width="24" height="24" alt="">Equipamentos Rubi</a> | |||
<a href="/index.php/ | |||
<a href="/index.php/ | |||
</div> | </div> | ||
</div> | </div> | ||
</div> | |||
<!-- ===================== PVP & EVENTOS ===================== --> | |||
<div class="wiki-section" id="sec-pvpeventos"> | |||
<span class="wiki-section-label">PvP & Eventos</span> | |||
<span class="wiki-section-line"></span> | |||
<span class="wiki-section-desc">Combate competitivo e conteúdo sazonal</span> | |||
</div> | |||
<div class="wiki-col-wrap"> | |||
<div class="wiki-block | <div class="wiki-block"> | ||
<div class="wiki-block-title"><span class="wiki-block-title-text">PvP & Batalhas</span></div> | <div class="wiki-block-title"><span class="wiki-block-title-text">PvP & Batalhas</span></div> | ||
<div class="wiki- | <div class="wiki-list"> | ||
<a href="/index.php/Guerra_do_Emperium" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/1000330.png" width="24" height="24" alt="">Guerra do Emperium</a> | <a href="/index.php/Guerra_do_Emperium" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/1000330.png" width="24" height="24" alt="">Guerra do Emperium</a> | ||
<a href="/index.php/Sistema_PK" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/7752.png" width="24" height="24" alt="">Sistema PK</a> | <a href="/index.php/Sistema_PK" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/7752.png" width="24" height="24" alt="">Sistema PK</a> | ||
<a href="/index.php/KVM" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/6376.png" width="24" height="24" alt="">KVM</a> | <a href="/index.php/KVM" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/6376.png" width="24" height="24" alt="">KVM</a> | ||
</div> | </div> | ||
</div> | </div> | ||
<div class="wiki-block"> | |||
<div class="wiki-block-title"><span class="wiki-block-title-text">Eventos</span></div> | |||
<div class="wiki-block | <div class="wiki-grid-2"> | ||
<div class="wiki-block-title"><span class="wiki-block-title-text"> | <a href="/index.php/Mapa_do_Tesouro" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/420385.png" width="24" height="24" alt="">Mapa do Tesouro</a> | ||
<div class="wiki-grid- | <a href="/index.php/Corrida_dos_Bichos" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/18930.png" width="24" height="24" alt="">Corrida dos Bichos</a> | ||
<a href="/index.php/ | <a href="/index.php/Fuja_da_Dengue" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/742.png" width="24" height="24" alt="">Fuja da Dengue</a> | ||
<a href="/index.php/ | <a href="/index.php/Pegue_o_Pombo" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/18912.png" width="24" height="24" alt="">Pegue o Pombo</a> | ||
<a href="/index.php/ | |||
<a href="/index.php/ | |||
<a href="/index.php/Raça_do_Dia" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/410059.png" width="24" height="24" alt="">Raça do Dia</a> | <a href="/index.php/Raça_do_Dia" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/410059.png" width="24" height="24" alt="">Raça do Dia</a> | ||
<a href="/index.php/Evento_da_Copa" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/7549.png" width="24" height="24" alt="">Evento da Copa</a> | |||
</div> | </div> | ||
</div> | </div> | ||
</div> | |||
<!-- ===================== PROGRESSÃO & CRIAÇÃO ===================== --> | |||
<div class="wiki-section" id="sec-progressao"> | |||
<span class="wiki-section-label">Progressão & Criação</span> | |||
<span class="wiki-section-line"></span> | |||
<span class="wiki-section-desc">Forje, encante e evolua seu equipamento</span> | |||
</div> | |||
<div class="wiki-block-full"> | |||
<div class="wiki-block-title"><span class="wiki-block-title-text">Criação & Aprimoramento</span></div> | |||
<div class="wiki-grid-3"> | |||
<a href="/index.php/Refinamentos" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/6438.png" width="24" height="24" alt="">Refinamentos</a> | |||
<a href="/index.php/Encantamentos" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/1001090.png" width="24" height="24" alt="">Encantamentos</a> | |||
<a href="/index.php/Sloteamentos" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/1001076.png" width="24" height="24" alt="">Sloteamentos</a> | |||
<a href="/index.php/Sistema_de_Runas" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/1001283.png" width="24" height="24" alt="">Sistema de Runas</a> | |||
<a href="/index.php/Sistema_de_Progressão" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/1001661.png" width="24" height="24" alt="">Sistema de Progressão</a> | |||
<a href="/index.php/Mascotes" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/9065.png" width="24" height="24" alt="">Mascotes</a> | |||
<a href="/index.php/Quests_Edda" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/7874.png" width="24" height="24" alt="">Quests Edda</a> | |||
<a href="/index.php/Forja" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/6596.png" width="24" height="24" alt="">Forja</a> | |||
<a href="/index.php/Alquimia" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/6285.png" width="24" height="24" alt="">Alquimia</a> | |||
<a href="/index.php/Mineração" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/28116.png" width="24" height="24" alt="">Mineração</a> | |||
<a href="/index.php/Afinidades" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/28627.png" width="24" height="24" alt="">Afinidades</a> | |||
<a href="/index.php/Encantamentos_de_Malangdo" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/6423.png" width="24" height="24" alt="">Encantamentos de Malangdo</a> | |||
</div> | |||
</div> | </div> | ||
<!-- | <!-- ===================== MUNDO & CONTEÚDO PVE ===================== --> | ||
<div | <div class="wiki-section" id="sec-mundopve"> | ||
<a href="https:// | <span class="wiki-section-label">Mundo & Conteúdo PvE</span> | ||
<span class="wiki-section-line"></span> | |||
<span class="wiki-section-desc">Instâncias estruturadas e o mundo aberto de Edda</span> | |||
</div> | |||
<div class="wiki-block-full"> | |||
<div class="wiki-block-title"><span class="wiki-block-title-text">Conteúdo PvE</span></div> | |||
<div class="wiki-subhead"> | |||
<span class="wiki-subhead-dot"></span> | |||
<span class="wiki-subhead-text">Instâncias</span> | |||
<span class="wiki-subhead-count">7</span> | |||
</div> | |||
<div class="wiki-grid-4"> | |||
<a href="/index.php/Batalha_dos_Orcs" class="wiki-link"><img src="https://browiki.org/images/c/c3/Monster_OrcHer%C3%B3i.png" width="24" height="24" alt="">Batalha dos Orcs</a> | |||
<a href="/index.php/Torre_sem_Fim" class="wiki-link"><img src="https://browiki.org/images/5/5e/Monster_NaghtSieger.png" width="24" height="24" alt="">Torre sem Fim</a> | |||
<a href="/index.php/Thanatos_Corrompido" class="wiki-link"><img src="https://browiki.org/images/6/69/Monster_BrokenThana.png" width="24" height="24" alt="">Thanatos Corrompido</a> | |||
<a href="/index.php/Memórias_de_Sarah" class="wiki-link"><img src="https://browiki.org/images/e/e2/Monster_SaraIrine.png" width="24" height="24" alt="">Memórias de Sarah</a> | |||
<a href="/index.php/Palácio_das_Mágoas" class="wiki-link"><img src="https://game.ragnaplace.com/ro/bro/card/27184.webp" width="24" height="24" alt="">Palácio das Mágoas</a> | |||
<a href="/index.php/Torneio_de_Magia" class="wiki-link"><img src="https://browiki.org/images/f/f7/Monster_FenrisFenrir.png" width="24" height="24" alt="">Torneio de Magia</a> | |||
<a href="/index.php/Invasão_ao_Aeroplano" class="wiki-link"><img src="https://browiki.org/images/b/bd/Monster_Capit%C3%A3oFerlock.png" width="24" height="24" alt="">Invasão ao Aeroplano</a> | |||
<a href="/index.php/Altar_do_Selo" class="wiki-link"><img src="https://browiki.org/images/1/10/Monster_Bafom%C3%A9.png" width="24" height="24" alt="">Altar do Selo</a> | |||
<a href="/index.php/Ninho_de_Nidhogg" class="wiki-link"><img src="https://browiki.org/images/3/3e/Monster_SombraNidhogg.png" width="24" height="24" alt="">Ninho de Nidhogg</a> | |||
<a href="/index.php/Caverna_do_Polvo" class="wiki-link"><img src="https://browiki.org/images/8/81/Monster_PolvoGigante.png" width="24" height="24" alt="">Caverna do Polvo</a> | |||
<a href="/index.php/Esgotos_de_Malangdo" class="wiki-link"><img src="https://browiki.org/images/e/e0/Monster_CelacantoE.png" width="24" height="24" alt="">Esgotos de Malangdo</a> | |||
</div> | |||
<div class="wiki-subhead"> | |||
<span class="wiki-subhead-dot"></span> | |||
<span class="wiki-subhead-text">PvM & Mundos</span> | |||
<span class="wiki-subhead-count">11</span> | |||
</div> | |||
<div class="wiki-grid-4"> | |||
<a href="/index.php/Sistema_MVP" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/31488.png" width="24" height="24" alt="">Sistema MVP</a> | |||
<a href="/index.php/Monstros_Dimensionais" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/20562.png" width="24" height="24" alt="">Monstros Dimensionais</a> | |||
<a href="/index.php/Guardião_dos_Destinos" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/6659.png" width="24" height="24" alt="">Guardião dos Destinos</a> | |||
<a href="/index.php/Dragão_Púrpura" class="wiki-link"><img src="https://browiki.org/images/6/67/Monster_Drag%C3%A3oP%C3%BArpura.png" width="24" height="24" alt="">Dragão Púrpura</a> | |||
<a href="/index.php/Mapas_Modificados" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/28527.png" width="24" height="24" alt="">Mapas Modificados</a> | |||
<a href="/index.php/Fenda_Dimensional" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/313932.png" width="24" height="24" alt="">Fenda Dimensional</a> | |||
<a href="/index.php/Experimento_Escarlate" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/6728.png" width="24" height="24" alt="">Experimento Escarlate</a> | |||
<a href="/index.php/Zona_Morta" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/7642.png" width="24" height="24" alt="">Zona Morta</a> | |||
<a href="/index.php/Bestiário" class="wiki-link"><img src="https://static.divine-pride.net/images/items/item/22653.png" width="24" height="24" alt="">Bestiário</a> | |||
</div> | |||
</div> | </div> | ||
<!-- RODAPÉ EDDA --> | <!-- RODAPÉ EDDA --> | ||
<div class="edda-banner" style="margin-bottom:0;"> | <div class="edda-banner" style="margin-top:16px;margin-bottom:0;"> | ||
<img src="https://static.divine-pride.net/images/items/item/19948.png" width="30" height="30" style="image-rendering:pixelated;flex-shrink:0;" alt=""> | <img src="https://static.divine-pride.net/images/items/item/19948.png" width="30" height="30" style="image-rendering:pixelated;flex-shrink:0;" alt=""> | ||
<div> | <div> | ||
<div class="edda-banner-title">Edda World | <div class="edda-banner-title">Edda World — o mundo é vivo</div> | ||
<div class="edda-banner-sub"> | <div class="edda-banner-sub">Tudo acontece por aqui — fendas dimensionais, MVPs globais e muito mais!</div> | ||
</div> | </div> | ||
</div> | </div> | ||
</html> | </html> | ||
Edição atual tal como às 18h02min de 15 de julho de 2026
Comece Aqui
Primeiros passos do jogador novo
Início da Jornada
ROPs & Recompensas
Onde ganhar, gastar e trocar recursos
ROPs & Pontos
PvP & Eventos
Combate competitivo e conteúdo sazonal
PvP & Batalhas
Progressão & Criação
Forje, encante e evolua seu equipamento
Criação & Aprimoramento
Mundo & Conteúdo PvE
Instâncias estruturadas e o mundo aberto de Edda
Conteúdo PvE
Instâncias
7
PvM & Mundos
11