- updateNavButtons: 改用数组索引查找,而非简单的+1/-1 - updateSidebarHighlight: 使用parseFloat比较章节ID - updateMobileTOCHighlight: 使用parseFloat比较章节ID - 更新版本号强制刷新缓存
779 lines
33 KiB
HTML
779 lines
33 KiB
HTML
<!DOCTYPE html>
|
||
<html lang="zh-CN">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<title>设定集 - 阿拉德:剑之回响</title>
|
||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
||
<link rel="stylesheet" href="css/style.css">
|
||
<style>
|
||
.wiki-page {
|
||
padding-top: 72px;
|
||
min-height: 100vh;
|
||
}
|
||
|
||
.wiki-header {
|
||
padding: 60px 0 40px;
|
||
background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
|
||
border-bottom: 1px solid var(--border);
|
||
}
|
||
|
||
.wiki-title {
|
||
font-family: var(--font-serif);
|
||
font-size: 2.5rem;
|
||
font-weight: 700;
|
||
text-align: center;
|
||
margin-bottom: 12px;
|
||
}
|
||
|
||
.wiki-subtitle {
|
||
text-align: center;
|
||
color: var(--text-tertiary);
|
||
font-size: 1.125rem;
|
||
}
|
||
|
||
.wiki-container {
|
||
max-width: 1000px;
|
||
margin: 0 auto;
|
||
padding: 40px 24px;
|
||
}
|
||
|
||
.wiki-nav {
|
||
display: flex;
|
||
flex-wrap: wrap;
|
||
gap: 12px;
|
||
margin-bottom: 40px;
|
||
padding: 20px;
|
||
background: var(--bg-card);
|
||
border: 1px solid var(--border);
|
||
border-radius: var(--radius-md);
|
||
}
|
||
|
||
.wiki-nav a {
|
||
padding: 8px 16px;
|
||
background: var(--bg-tertiary);
|
||
border-radius: var(--radius-sm);
|
||
color: var(--text-secondary);
|
||
font-size: 0.9375rem;
|
||
transition: all var(--transition-fast);
|
||
}
|
||
|
||
.wiki-nav a:hover {
|
||
background: var(--primary);
|
||
color: white;
|
||
}
|
||
|
||
.wiki-section {
|
||
margin-bottom: 48px;
|
||
}
|
||
|
||
.wiki-section h2 {
|
||
font-family: var(--font-serif);
|
||
font-size: 1.75rem;
|
||
font-weight: 700;
|
||
margin-bottom: 20px;
|
||
padding-bottom: 12px;
|
||
border-bottom: 2px solid var(--primary);
|
||
display: inline-block;
|
||
}
|
||
|
||
.wiki-section h3 {
|
||
font-size: 1.25rem;
|
||
font-weight: 600;
|
||
margin: 24px 0 12px;
|
||
color: var(--primary-light);
|
||
}
|
||
|
||
.wiki-section p {
|
||
color: var(--text-secondary);
|
||
line-height: 1.8;
|
||
margin-bottom: 12px;
|
||
}
|
||
|
||
.wiki-table {
|
||
width: 100%;
|
||
border-collapse: collapse;
|
||
margin: 20px 0;
|
||
}
|
||
|
||
.wiki-table th,
|
||
.wiki-table td {
|
||
padding: 12px 16px;
|
||
text-align: left;
|
||
border-bottom: 1px solid var(--border);
|
||
}
|
||
|
||
.wiki-table th {
|
||
background: var(--bg-tertiary);
|
||
font-weight: 600;
|
||
color: var(--text-primary);
|
||
}
|
||
|
||
.wiki-table tr:hover {
|
||
background: var(--bg-card);
|
||
}
|
||
|
||
.character-card {
|
||
display: flex;
|
||
gap: 24px;
|
||
padding: 24px;
|
||
background: var(--bg-card);
|
||
border: 1px solid var(--border);
|
||
border-radius: var(--radius-md);
|
||
margin-bottom: 20px;
|
||
}
|
||
|
||
.character-avatar {
|
||
width: 100px;
|
||
height: 100px;
|
||
background: linear-gradient(135deg, var(--primary), var(--secondary));
|
||
border-radius: 50%;
|
||
display: flex;
|
||
align-items: center;
|
||
justify-content: center;
|
||
font-size: 3rem;
|
||
flex-shrink: 0;
|
||
}
|
||
|
||
.character-info h4 {
|
||
font-size: 1.375rem;
|
||
font-weight: 700;
|
||
margin-bottom: 8px;
|
||
}
|
||
|
||
.character-role {
|
||
color: var(--primary-light);
|
||
font-size: 0.9375rem;
|
||
margin-bottom: 12px;
|
||
}
|
||
|
||
.character-info p {
|
||
color: var(--text-secondary);
|
||
line-height: 1.7;
|
||
}
|
||
|
||
.weapon-grid {
|
||
display: grid;
|
||
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
||
gap: 16px;
|
||
margin: 20px 0;
|
||
}
|
||
|
||
.weapon-card {
|
||
padding: 20px;
|
||
background: var(--bg-card);
|
||
border: 1px solid var(--border);
|
||
border-radius: var(--radius-md);
|
||
transition: all var(--transition-fast);
|
||
}
|
||
|
||
.weapon-card:hover {
|
||
border-color: var(--primary);
|
||
transform: translateY(-4px);
|
||
}
|
||
|
||
.weapon-icon {
|
||
font-size: 2.5rem;
|
||
margin-bottom: 12px;
|
||
}
|
||
|
||
.weapon-name {
|
||
font-size: 1.125rem;
|
||
font-weight: 600;
|
||
margin-bottom: 4px;
|
||
}
|
||
|
||
.weapon-type {
|
||
font-size: 0.875rem;
|
||
color: var(--primary-light);
|
||
margin-bottom: 8px;
|
||
}
|
||
|
||
.weapon-desc {
|
||
font-size: 0.875rem;
|
||
color: var(--text-tertiary);
|
||
}
|
||
|
||
.timeline-list {
|
||
list-style: none;
|
||
padding: 0;
|
||
}
|
||
|
||
.timeline-list li {
|
||
padding: 16px 0;
|
||
border-bottom: 1px solid var(--border);
|
||
display: flex;
|
||
gap: 16px;
|
||
}
|
||
|
||
.timeline-list li:last-child {
|
||
border-bottom: none;
|
||
}
|
||
|
||
.timeline-level {
|
||
width: 80px;
|
||
flex-shrink: 0;
|
||
font-weight: 600;
|
||
color: var(--primary-light);
|
||
}
|
||
|
||
.timeline-content {
|
||
flex: 1;
|
||
}
|
||
|
||
.timeline-content strong {
|
||
color: var(--text-primary);
|
||
}
|
||
|
||
.tag {
|
||
display: inline-block;
|
||
padding: 2px 8px;
|
||
background: var(--bg-tertiary);
|
||
border-radius: 100px;
|
||
font-size: 0.75rem;
|
||
color: var(--text-tertiary);
|
||
margin-left: 8px;
|
||
}
|
||
|
||
.tag.completed {
|
||
background: rgba(99, 102, 241, 0.2);
|
||
color: var(--primary-light);
|
||
}
|
||
|
||
@media (max-width: 768px) {
|
||
.wiki-title {
|
||
font-size: 1.75rem;
|
||
}
|
||
|
||
.character-card {
|
||
flex-direction: column;
|
||
text-align: center;
|
||
}
|
||
|
||
.character-avatar {
|
||
margin: 0 auto;
|
||
}
|
||
|
||
.wiki-table {
|
||
font-size: 0.875rem;
|
||
}
|
||
|
||
.wiki-table th,
|
||
.wiki-table td {
|
||
padding: 8px 12px;
|
||
}
|
||
}
|
||
</style>
|
||
</head>
|
||
<body class="wiki-page">
|
||
<!-- 导航栏 -->
|
||
<nav class="navbar">
|
||
<div class="nav-container">
|
||
<a href="index.html" class="logo">
|
||
<span class="logo-icon">⚔️</span>
|
||
<span class="logo-text">阿拉德文库</span>
|
||
</a>
|
||
<div class="nav-links">
|
||
<a href="index.html">首页</a>
|
||
<a href="chapters.html">目录</a>
|
||
<a href="wiki.html" class="active">设定集</a>
|
||
</div>
|
||
<div class="nav-actions">
|
||
<button class="theme-toggle" id="themeToggle">
|
||
<span class="theme-icon">🌙</span>
|
||
</button>
|
||
</div>
|
||
</div>
|
||
</nav>
|
||
|
||
<!-- 头部 -->
|
||
<header class="wiki-header">
|
||
<div class="container">
|
||
<h1 class="wiki-title">⚔️ 设定集</h1>
|
||
<p class="wiki-subtitle">《阿拉德:剑之回响》世界观与资料</p>
|
||
</div>
|
||
</header>
|
||
|
||
<!-- 内容区 -->
|
||
<main class="wiki-container">
|
||
<!-- 快速导航 -->
|
||
<nav class="wiki-nav">
|
||
<a href="#world">世界观</a>
|
||
<a href="#characters">角色</a>
|
||
<a href="#relationships">感情线</a>
|
||
<a href="#weapons">武器</a>
|
||
<a href="#classes">职业</a>
|
||
<a href="#maps">地图</a>
|
||
<a href="#progress">进度</a>
|
||
</nav>
|
||
|
||
<!-- 世界观 -->
|
||
<section class="wiki-section" id="world">
|
||
<h2>🌍 世界观</h2>
|
||
|
||
<h3>故事背景</h3>
|
||
<p>《阿拉德:剑之回响》是一部以DNF(地下城与勇士)60版本为背景的同人小说,讲述少年林克从鬼剑士成长为剑魂的冒险故事。</p>
|
||
<p>故事严格遵循DNF 60版本的地图等级设定,从艾尔文防线的洛兰开始,一步步探索格兰之森、天空之城等经典区域。</p>
|
||
|
||
<h3>核心设定</h3>
|
||
<p><strong>鬼手(Ghost Hand):</strong>被卡赞诅咒的左手,拥有鬼神之力的同时也会被诅咒侵蚀。鬼剑士通过修炼可以掌控这份力量。</p>
|
||
<p><strong>转职系统:</strong>鬼剑士可以在18级时选择转职方向——狂战士、鬼泣、阿修罗或剑魂。</p>
|
||
<p><strong>武器大师:</strong>剑魂的核心特性,可以精通所有武器类型,根据战况灵活切换。</p>
|
||
<p><strong>天空之城:</strong>连接天界与阿拉德大陆的通道,隐藏着光之核心的秘密。</p>
|
||
</section>
|
||
|
||
<!-- 角色 -->
|
||
<section class="wiki-section" id="characters">
|
||
<h2>👥 主要角色</h2>
|
||
|
||
<div class="character-card">
|
||
<div class="character-avatar">⚔️</div>
|
||
<div class="character-info">
|
||
<h4>林克(Link)</h4>
|
||
<div class="character-role">主角 | 鬼剑士 → 剑魂</div>
|
||
<p>从小被鬼手诅咒的少年,为寻找师父阿甘左踏上冒险之路。性格冷静坚韧,追求极致剑术。在GSD的指导下转职为剑魂,成为武器大师。</p>
|
||
<p><strong>武器库:</strong>光剑晨曦、太刀霜刃、巨剑破军、短剑影牙、钝器碎骨</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="character-card">
|
||
<div class="character-avatar">✨</div>
|
||
<div class="character-info">
|
||
<h4>赛丽亚</h4>
|
||
<div class="character-role">女主角 | 精灵族最后的血脉</div>
|
||
<p>艾尔文防线旅馆的少女,真实身份是精灵族最后的血脉,"精灵之心"的容器。拥有治愈魔法和精灵之箭,在旅途中给予林克重要的支持。</p>
|
||
<p><strong>特殊能力:</strong>治愈术、精灵之箭、精灵感知</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="character-card">
|
||
<div class="character-avatar">🗡️</div>
|
||
<div class="character-info">
|
||
<h4>阿甘左</h4>
|
||
<div class="character-role">林克的师父 | 传奇剑士</div>
|
||
<p>四处游历的传奇剑士,发现林克的潜力后收他为徒。性格冷淡但内心关心弟子,教授林克基础剑术后继续自己的旅程。</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="character-card">
|
||
<div class="character-avatar">👁️</div>
|
||
<div class="character-info">
|
||
<h4>GSD</h4>
|
||
<div class="character-role">鬼剑士导师 | 阿修罗</div>
|
||
<p>赫顿玛尔的鬼剑士导师,蒙眼的老人,掌握着四种鬼剑职业的力量。为林克主持剑魂转职仪式,并带领他初探天空之城。</p>
|
||
<p><strong>觉醒技:</strong>暗天波动眼</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="character-card">
|
||
<div class="character-avatar">✝️</div>
|
||
<div class="character-info">
|
||
<h4>艾伦(Alan)</h4>
|
||
<div class="character-role">圣骑士 | 队友</div>
|
||
<p>赫顿玛尔圣堂的年轻圣骑士,正直热心,追踪使徒气息来到天帷巨兽。在第一脊椎与林克相遇后加入队伍,成为重要的治疗和BUFF支援。</p>
|
||
<p><strong>技能:</strong>治愈术、光之复仇、圣光守护、圣光十字</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="character-card">
|
||
<div class="character-avatar">📜</div>
|
||
<div class="character-info">
|
||
<h4>奥菲利亚</h4>
|
||
<div class="character-role">GBL教幸存者 | 向导</div>
|
||
<p>GBL教唯一的清醒幸存者,请求林克调查天帷巨兽的异变。性格坚韧,对拯救被控制的教友有着强烈的执念,在冒险中对林克产生依赖和好感。</p>
|
||
<p><strong>特殊能力:</strong>古代知识、神殿机关解读</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="character-card">
|
||
<div class="character-avatar">🔫</div>
|
||
<div class="character-info">
|
||
<h4>凯丽</h4>
|
||
<div class="character-role">装备强化师 | 天界人</div>
|
||
<p>来自天界的漫游枪手,掌握着天界科技。在赫顿玛尔经营装备强化店,对赛丽亚有好感,后成为林克一行人的重要技术支持。</p>
|
||
<p><strong>专长:</strong>装备强化、天界科技</p>
|
||
</div>
|
||
</div>
|
||
|
||
<div class="character-card">
|
||
<div class="character-avatar">🔮</div>
|
||
<div class="character-info">
|
||
<h4>莎兰</h4>
|
||
<div class="character-role">魔法师公会会长 | 魔道学者</div>
|
||
<p>西海岸魔法师公会的会长,暗精灵族,拥有强大的魔法知识。性格优雅神秘,对林克的故事很感兴趣,为他提供魔法方面的帮助。</p>
|
||
<p><strong>专长:</strong>魔法研究、古代文献解读</p>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- 角色关系与感情线 -->
|
||
<section class="wiki-section" id="relationships">
|
||
<h2>💕 角色关系与感情线</h2>
|
||
|
||
<h3>赛丽亚 → 林克(主线女主)</h3>
|
||
<p><strong>关系进展:</strong></p>
|
||
<ul style="margin-left: 20px; color: var(--text-secondary); line-height: 1.8;">
|
||
<li><strong>初期(Lv.1-10):</strong>救命恩人→伙伴。赛丽亚救助重伤的林克,两人在艾尔文防线共同生活,建立起深厚的信任。</li>
|
||
<li><strong>中期(Lv.11-22):</strong>亲密的伙伴。赛丽亚跟随林克踏上冒险,多次在危急时刻用治愈术救他,两人的羁绊逐渐加深。</li>
|
||
<li><strong>当前(Lv.23+):</strong>暧昧萌芽。极昼离别时,赛丽亚主动拥抱林克,感情开始质变。重逢后有望发展更进一步的关系。</li>
|
||
<li><strong>未来:</strong>预定成为林克的正宫女友,有亲吻、同眠等亲密场景。</li>
|
||
</ul>
|
||
|
||
<h3>奥菲利亚 → 林克(暗恋者)</h3>
|
||
<p><strong>关系进展:</strong></p>
|
||
<ul style="margin-left: 20px; color: var(--text-secondary); line-height: 1.8;">
|
||
<li><strong>初期(Lv.19-21):</strong>救命恩人→依赖。林克从发狂的GBL教徒手中救下奥菲利亚,成为她的希望。</li>
|
||
<li><strong>中期(Lv.22-24):</strong>崇拜与暗恋。看着林克一路战斗,奥菲利亚对他产生强烈的好感和依赖,经常偷偷看他。</li>
|
||
<li><strong>未来:</strong>预定表白,成为林克的后宫之一。有并肩作战时的肢体接触、危机时的保护等场景。</li>
|
||
</ul>
|
||
|
||
<h3>莎兰 → 林克(暧昧对象)</h3>
|
||
<p><strong>关系进展:</strong></p>
|
||
<ul style="margin-left: 20px; color: var(--text-secondary); line-height: 1.8;">
|
||
<li><strong>初期(Lv.18):</strong>前辈与后辈。莎兰对林克的鬼手和晨曦剑很感兴趣,提供魔法咨询。</li>
|
||
<li><strong>未来:</strong>发展暧昧关系。莎兰喜欢调戏林克,有意无意的肢体接触(魔法指导时的近距离),可能会有醉酒后的亲密场景。</li>
|
||
</ul>
|
||
|
||
<h3>凯丽 → 林克(欣赏者)</h3>
|
||
<p><strong>关系进展:</strong></p>
|
||
<ul style="margin-left: 20px; color: var(--text-secondary); line-height: 1.8;">
|
||
<li><strong>初期:</strong>对赛丽亚有好感,对林克只是普通顾客。</li>
|
||
<li><strong>中期(Lv.25):</strong>开始欣赏。看到林克为救赛丽亚不惜挑战使徒,凯丽对他产生好感。</li>
|
||
<li><strong>未来:</strong>暗恋但不表白,默默支持。可能会吃赛丽亚的醋,有暧昧的互动。</li>
|
||
</ul>
|
||
|
||
<h3>后宫关系设定</h3>
|
||
<table class="wiki-table">
|
||
<thead>
|
||
<tr>
|
||
<th>角色</th>
|
||
<th>定位</th>
|
||
<th>亲密程度</th>
|
||
<th>未来发展</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>赛丽亚</td>
|
||
<td>正宫女主</td>
|
||
<td>拥抱、亲吻脸颊</td>
|
||
<td>亲吻、同眠、啪啪</td>
|
||
</tr>
|
||
<tr>
|
||
<td>奥菲利亚</td>
|
||
<td>后宫成员</td>
|
||
<td>并肩作战、保护</td>
|
||
<td>表白、拥抱、亲吻</td>
|
||
</tr>
|
||
<tr>
|
||
<td>莎兰</td>
|
||
<td>暧昧对象</td>
|
||
<td>调戏、近距离指导</td>
|
||
<td>醉酒亲密、暧昧关系</td>
|
||
</tr>
|
||
<tr>
|
||
<td>凯丽</td>
|
||
<td>暗恋者</td>
|
||
<td>欣赏、支持</td>
|
||
<td>暗恋、偶尔暧昧</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</section>
|
||
|
||
<!-- 武器 -->
|
||
<section class="wiki-section" id="weapons">
|
||
<h2>⚔️ 林克的武器库</h2>
|
||
<p>作为剑魂,林克精通五种武器,根据敌人特点灵活切换:</p>
|
||
|
||
<div class="weapon-grid">
|
||
<div class="weapon-card">
|
||
<div class="weapon-icon">⚔️</div>
|
||
<div class="weapon-name">晨曦</div>
|
||
<div class="weapon-type">光剑 · 主武器</div>
|
||
<div class="weapon-desc">剑魂专属武器,极速连击,附加光属性伤害。与天空之城的光之核心有着神秘的联系。</div>
|
||
</div>
|
||
|
||
<div class="weapon-card">
|
||
<div class="weapon-icon">🗡️</div>
|
||
<div class="weapon-name">霜刃</div>
|
||
<div class="weapon-type">太刀</div>
|
||
<div class="weapon-desc">林纳斯赠送的武器,灵活迅捷,适合单挑和精准打击。</div>
|
||
</div>
|
||
|
||
<div class="weapon-card">
|
||
<div class="weapon-icon">🪓</div>
|
||
<div class="weapon-name">破军</div>
|
||
<div class="weapon-type">巨剑</div>
|
||
<div class="weapon-desc">力量型武器,破甲能力极强。对付硬甲敌人时的最佳选择。</div>
|
||
</div>
|
||
|
||
<div class="weapon-card">
|
||
<div class="weapon-icon">🗡️</div>
|
||
<div class="weapon-name">影牙</div>
|
||
<div class="weapon-type">短剑</div>
|
||
<div class="weapon-desc">漆黑如墨,剑刃上缠绕着暗影之力。对付魔法防御低的敌人效果显著。</div>
|
||
</div>
|
||
|
||
<div class="weapon-card">
|
||
<div class="weapon-icon">🔨</div>
|
||
<div class="weapon-name">碎骨</div>
|
||
<div class="weapon-type">钝器</div>
|
||
<div class="weapon-desc">巨大的铁锤,能够产生震荡伤害,有概率眩晕目标。</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<!-- 职业 -->
|
||
<section class="wiki-section" id="classes">
|
||
<h2>🛡️ 鬼剑士转职方向</h2>
|
||
|
||
<table class="wiki-table">
|
||
<thead>
|
||
<tr>
|
||
<th>职业</th>
|
||
<th>特点</th>
|
||
<th>武器</th>
|
||
<th>风格</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td><strong>狂战士</strong></td>
|
||
<td>解放鬼手力量,以鲜血为代价换取狂暴战力</td>
|
||
<td>巨剑</td>
|
||
<td>越战越勇,生命值越低力量越强</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>鬼泣</strong></td>
|
||
<td>与鬼神签订契约,借用鬼神之力</td>
|
||
<td>太刀/短剑</td>
|
||
<td>范围攻击和控制,团队控场者</td>
|
||
</tr>
|
||
<tr>
|
||
<td><strong>阿修罗</strong></td>
|
||
<td>放弃双眼,以心眼感知世界</td>
|
||
<td>短剑/太刀</td>
|
||
<td>波动之力,属性攻击,毁灭者</td>
|
||
</tr>
|
||
<tr style="background: rgba(99, 102, 241, 0.1);">
|
||
<td><strong>剑魂</strong> ⭐</td>
|
||
<td>追求极致剑术,武器大师</td>
|
||
<td>所有武器</td>
|
||
<td>精通所有武器,灵活切换</td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</section>
|
||
|
||
<!-- 地图 -->
|
||
<section class="wiki-section" id="maps">
|
||
<h2>🗺️ 地图等级表</h2>
|
||
|
||
<h3>格兰之森区域(Lv.1-18)</h3>
|
||
<table class="wiki-table">
|
||
<thead>
|
||
<tr>
|
||
<th>地图</th>
|
||
<th>等级</th>
|
||
<th>BOSS</th>
|
||
<th>状态</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>洛兰</td>
|
||
<td>Lv.1-2</td>
|
||
<td>哥布林</td>
|
||
<td><span class="tag completed">✅ 完成</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>洛兰深处</td>
|
||
<td>Lv.2-3</td>
|
||
<td>哥布林头目</td>
|
||
<td><span class="tag completed">✅ 完成</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>幽暗密林</td>
|
||
<td>Lv.3-5</td>
|
||
<td>猫妖</td>
|
||
<td><span class="tag completed">✅ 完成</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>幽暗密林深处</td>
|
||
<td>Lv.4-7</td>
|
||
<td>猫妖王</td>
|
||
<td><span class="tag completed">✅ 完成</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>雷鸣废墟</td>
|
||
<td>Lv.7-10</td>
|
||
<td>闪电哥布林王</td>
|
||
<td><span class="tag completed">✅ 完成</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>格拉卡</td>
|
||
<td>Lv.11-14</td>
|
||
<td>牛头王萨乌塔</td>
|
||
<td><span class="tag completed">✅ 完成</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>烈焰格拉卡</td>
|
||
<td>Lv.13-16</td>
|
||
<td>火女彼诺修</td>
|
||
<td><span class="tag completed">✅ 完成</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>冰霜幽暗密林</td>
|
||
<td>Lv.9-12</td>
|
||
<td>冰女克拉赫</td>
|
||
<td><span class="tag completed">✅ 完成</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>暗黑雷鸣废墟</td>
|
||
<td>Lv.15-18</td>
|
||
<td>僵尸王</td>
|
||
<td><span class="tag completed">✅ 完成</span></td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
|
||
<h3>天空之城区域(Lv.18-28)</h3>
|
||
<table class="wiki-table">
|
||
<thead>
|
||
<tr>
|
||
<th>地图</th>
|
||
<th>等级</th>
|
||
<th>BOSS</th>
|
||
<th>状态</th>
|
||
</tr>
|
||
</thead>
|
||
<tbody>
|
||
<tr>
|
||
<td>龙人之塔</td>
|
||
<td>Lv.19-20</td>
|
||
<td>龙人首领</td>
|
||
<td><span class="tag completed">✅ 完成</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>人偶玄关</td>
|
||
<td>Lv.21-22</td>
|
||
<td>人偶之王</td>
|
||
<td><span class="tag completed">✅ 完成</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>石巨人塔</td>
|
||
<td>Lv.23-26</td>
|
||
<td>黄金巨人普拉塔尼</td>
|
||
<td><span class="tag completed">✅ 完成</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>黑暗玄廊</td>
|
||
<td>Lv.24-27</td>
|
||
<td>天之驱逐者</td>
|
||
<td><span class="tag">📝 待写</span></td>
|
||
</tr>
|
||
<tr>
|
||
<td>城主宫殿</td>
|
||
<td>Lv.26-29</td>
|
||
<td>光之城主赛格哈特</td>
|
||
<td><span class="tag">📝 待写</span></td>
|
||
</tr>
|
||
</tbody>
|
||
</table>
|
||
</section>
|
||
|
||
<!-- 进度 -->
|
||
<section class="wiki-section" id="progress">
|
||
<h2>📊 当前进度</h2>
|
||
|
||
<h3>已完成章节(34/60+)</h3>
|
||
<ul class="timeline-list">
|
||
<li>
|
||
<span class="timeline-level">Lv.1-18</span>
|
||
<div class="timeline-content">
|
||
<strong>第一~十二章:艾尔文防线篇</strong> - 洛兰、幽暗密林、格拉卡、转职试炼、天空之城入口
|
||
</div>
|
||
</li>
|
||
<li>
|
||
<span class="timeline-level">Lv.19-29</span>
|
||
<div class="timeline-content">
|
||
<strong>第十三~十八章:天空之城篇</strong> - 龙人之塔、人偶玄关、石巨人塔、黑暗玄廊、城主宫殿、悬空城
|
||
</div>
|
||
</li>
|
||
<li>
|
||
<span class="timeline-level">Lv.28-45</span>
|
||
<div class="timeline-content">
|
||
<strong>第十九~二十六章:天帷巨兽篇</strong> - 神殿外围、树精丛林、炼狱、极昼、第一脊椎、第二脊椎,击败使徒罗特斯
|
||
</div>
|
||
</li>
|
||
<li>
|
||
<span class="timeline-level">Lv.45-46</span>
|
||
<div class="timeline-content">
|
||
<strong>第二十七章:重逢的温柔</strong> - 赛丽亚线,感情确立
|
||
</div>
|
||
</li>
|
||
<li>
|
||
<span class="timeline-level">Lv.46-48</span>
|
||
<div class="timeline-content">
|
||
<strong>第二十八~二十九章:暗精灵的委托</strong> - 奥菲利亚表白,后宫建立,抵达阿法利亚营地
|
||
</div>
|
||
</li>
|
||
<li>
|
||
<span class="timeline-level">Lv.46-51</span>
|
||
<div class="timeline-content">
|
||
<strong>第三十~三十一章:浅栖之地、蜘蛛洞穴</strong> - 调查摩根笔记,击败艾克洛索,突破Lv.50
|
||
</div>
|
||
</li>
|
||
<li>
|
||
<span class="timeline-level">Lv.49-51</span>
|
||
<div class="timeline-content">
|
||
<strong>第三十二章:克伦特的委托</strong> - 接受收集四把钥匙任务,深夜告白
|
||
</div>
|
||
</li>
|
||
<li>
|
||
<span class="timeline-level">Lv.50-52</span>
|
||
<div class="timeline-content">
|
||
<strong>第三十三章:暗精灵墓地·左翼守卫</strong> - 击败火焰骷髅将军,奥菲利亚献身,后宫正式确立
|
||
</div>
|
||
</li>
|
||
<li>
|
||
<span class="timeline-level">Lv.50-52</span>
|
||
<div class="timeline-content">
|
||
<strong>第三十四章:暗精灵墓地·剩余三将军</strong> - 击败冰冻、速度、剧毒三位将军,集齐四把钥匙
|
||
</div>
|
||
</li>
|
||
</ul>
|
||
|
||
<h3>后续路线预览</h3>
|
||
<p><strong>阿法利亚营地:</strong>暗影迷宫 → 邪龙斯皮兹BOSS战</p>
|
||
<p><strong>诺斯玛尔:</strong>帕丽丝登场,新的后宫成员</p>
|
||
<p><strong>万年雪山:</strong>冰龙斯卡萨篇</p>
|
||
<p><strong>阿法利亚:</strong>浅栖之地 → 蜘蛛洞穴 → 熔岩穴 → 暗黑城入口(无头骑士)</p>
|
||
</section>
|
||
</main>
|
||
|
||
<!-- 页脚 -->
|
||
<footer class="footer">
|
||
<div class="container">
|
||
<div class="footer-content">
|
||
<div class="footer-brand">
|
||
<span class="logo-icon">⚔️</span>
|
||
<span class="logo-text">阿拉德文库</span>
|
||
</div>
|
||
<p class="footer-desc">为《阿拉德:剑之回响》打造的专属阅读平台</p>
|
||
<div class="footer-links">
|
||
<a href="index.html">首页</a>
|
||
<a href="chapters.html">目录</a>
|
||
<a href="wiki.html">设定集</a>
|
||
</div>
|
||
<p class="footer-copyright">© 2026 阿拉德:剑之回响 · 李策 著</p>
|
||
</div>
|
||
</div>
|
||
</footer>
|
||
|
||
<script src="js/app.js"></script>
|
||
</body>
|
||
</html> |