182 lines
232 KiB
HTML
182 lines
232 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-Hant">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<title>the-demon-awakens — 單字卡</title>
|
|
<style>
|
|
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
|
|
:root { --accent: #3498db; }
|
|
html, body { height: 100%; }
|
|
body {
|
|
font-family: 'Noto Sans TC', 'PingFang TC', 'Microsoft JhengHei', sans-serif;
|
|
background: #f0f4f8; color: #2c3e50;
|
|
display: flex; flex-direction: column;
|
|
}
|
|
header {
|
|
background: #2c3e50; color: #fff;
|
|
padding: 14px 24px 0;
|
|
position: sticky; top: 0; z-index: 10;
|
|
box-shadow: 0 2px 10px rgba(0,0,0,.25);
|
|
}
|
|
.header-top { display: flex; align-items: baseline; gap: 12px; margin-bottom: 12px; }
|
|
h1 { font-size: 17px; font-weight: 700; }
|
|
.meta { font-size: 11px; opacity: .55; }
|
|
.tabs { display: flex; gap: 2px; overflow-x: auto; scrollbar-width: none; }
|
|
.tabs::-webkit-scrollbar { display: none; }
|
|
.tab {
|
|
padding: 8px 18px; border: none; background: transparent;
|
|
color: rgba(255,255,255,.6); font-size: 14px; cursor: pointer;
|
|
border-bottom: 3px solid transparent; white-space: nowrap;
|
|
transition: color .15s, border-color .15s; font-family: inherit;
|
|
}
|
|
.tab:hover { color: #fff; }
|
|
.tab.active { color: #fff; border-bottom-color: var(--tc, var(--accent)); }
|
|
.tab-n {
|
|
display: inline-block; background: rgba(255,255,255,.18);
|
|
border-radius: 10px; padding: 1px 7px; font-size: 11px; margin-left: 5px;
|
|
}
|
|
.tab.active .tab-n { background: rgba(255,255,255,.32); }
|
|
main {
|
|
flex: 1; display: flex; flex-direction: column;
|
|
align-items: center; padding: 28px 16px 36px;
|
|
}
|
|
.progress { font-size: 14px; color: #999; margin-bottom: 14px; font-variant-numeric: tabular-nums; }
|
|
.card-wrap { width: 100%; max-width: 660px; perspective: 1200px; }
|
|
.flash-card {
|
|
width: 100%; height: 280px; position: relative;
|
|
cursor: pointer; outline: none;
|
|
}
|
|
.flash-card:focus .fc-inner { box-shadow: 0 0 0 3px rgba(52,152,219,.5); border-radius: 16px; }
|
|
.fc-inner {
|
|
position: relative; width: 100%; height: 100%;
|
|
transform-style: preserve-3d;
|
|
transition: transform .42s cubic-bezier(.4,0,.2,1);
|
|
}
|
|
.flash-card.flipped .fc-inner { transform: rotateY(180deg); }
|
|
.fc-front, .fc-back {
|
|
position: absolute; inset: 0; border-radius: 16px;
|
|
padding: 28px 36px; backface-visibility: hidden;
|
|
display: flex; flex-direction: column;
|
|
justify-content: center; align-items: center; text-align: center;
|
|
box-shadow: 0 4px 18px rgba(0,0,0,.11); overflow-y: auto;
|
|
}
|
|
.fc-front { background: #fff; border: 2px solid #e0e6f0; }
|
|
.fc-back { background: #f0f7ff; border: 2px solid var(--accent); transform: rotateY(180deg); }
|
|
.fc-primary {
|
|
font-size: 26px; font-weight: 700; color: #2c3e50;
|
|
line-height: 1.45; word-break: break-word;
|
|
}
|
|
.fc-secondary {
|
|
font-size: 13px; color: #888; font-style: italic;
|
|
margin-top: 12px; line-height: 1.6; max-height: 80px; overflow-y: auto;
|
|
}
|
|
.fc-secondary:empty { display: none; }
|
|
.fc-flip-hint { font-size: 11px; color: #ccc; margin-top: auto; padding-top: 10px; }
|
|
.fc-answer {
|
|
font-size: 18px; color: #2c3e50; line-height: 1.75;
|
|
white-space: pre-line; text-align: center; word-break: break-word;
|
|
}
|
|
.nav {
|
|
display: flex; align-items: center; gap: 10px; margin-top: 22px;
|
|
}
|
|
.nav-btn {
|
|
padding: 10px 20px; border: 2px solid #dde; border-radius: 8px;
|
|
background: #fff; font-size: 15px; cursor: pointer; color: #555;
|
|
transition: all .15s; font-family: inherit;
|
|
}
|
|
.nav-btn:hover:not(:disabled) { background: var(--accent); border-color: var(--accent); color: #fff; }
|
|
.nav-btn:disabled { opacity: .3; cursor: not-allowed; }
|
|
.nav-flip {
|
|
border-color: var(--accent); color: var(--accent);
|
|
font-weight: 600; padding: 10px 30px; min-width: 100px;
|
|
}
|
|
.nav-flip:hover:not(:disabled) { background: var(--accent); color: #fff; }
|
|
.kbd-hint { font-size: 11px; color: #c0c8d0; margin-top: 10px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="header-top">
|
|
<h1>the-demon-awakens</h1>
|
|
<div class="meta">2026/6/7 16:36:48</div>
|
|
</div>
|
|
<div class="tabs"><button class="tab active" data-tab="vocab" style="--tc:#3498db">📚 詞彙 <span class="tab-n">1002</span></button></div>
|
|
</header>
|
|
<main>
|
|
<div class="progress"><span id="prog"></span></div>
|
|
<div class="card-wrap">
|
|
<div class="flash-card" id="fc" tabindex="0">
|
|
<div class="fc-inner">
|
|
<div class="fc-front">
|
|
<div id="fc-primary" class="fc-primary"></div>
|
|
<div id="fc-secondary" class="fc-secondary"></div>
|
|
<div class="fc-flip-hint">點擊卡片 / 空白鍵 翻面 ▼</div>
|
|
</div>
|
|
<div class="fc-back">
|
|
<div id="fc-answer" class="fc-answer"></div>
|
|
<div class="fc-flip-hint">點擊卡片 / 空白鍵 翻回 ▲</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="nav">
|
|
<button id="btn-prev" class="nav-btn" title="上一張 (←)">← 上一張</button>
|
|
<button id="btn-flip" class="nav-btn nav-flip" title="翻面 (空白)">翻面</button>
|
|
<button id="btn-next" class="nav-btn" title="下一張 (→)">下一張 →</button>
|
|
</div>
|
|
<div class="kbd-hint">← → 換頁 | 空白鍵 / Enter 翻面</div>
|
|
</main>
|
|
<script>
|
|
const DATA = {"vocab":[{"primary":"him","secondary":"Elbryan's father had assured him that Wyndon boys were normally late in sprouting.","answer":"(名詞) 男性。\n\n艾爾布萊恩的父親曾向他保證,溫登家的男孩通常發育較晚。"},{"primary":"back","secondary":"The spirit had come back to Corona encased in obsidian!","answer":"(動詞) 往相反方向走。\n\n那股靈力已化作黑曜石,重返科羅納!"},{"primary":"them","secondary":"Behind them, Dundalis sat quiet and dark.","answer":"(代名詞)(複數)那些。\n\n在他們身後,鄧達利斯靜靜地矗立著,一片幽暗。"},{"primary":"monk","secondary":"The young monk nodded slightly.","answer":"(名詞)將一生奉獻於宗教服務的修道會男性成員。\n\n年輕的僧人微微點了點頭。"},{"primary":"down","secondary":"A thin crack ran down the center of the obsidian sarcophagus.","answer":"(動詞) 將(某人或某物)擊倒;使倒下,擊倒。\n\n一道細細的裂痕沿著黑曜石石棺的中間延伸而下。"},{"primary":"stone","secondary":"Its gray rock walls seemed to grow right from the solid stone, an extension of the earth's power.","answer":"(名詞) 一種堅硬的土質物質,可形成大型岩石。\n\n那灰色的岩壁彷彿直接從堅實的岩石中生長出來,彷彿是大地力量的延伸。"},{"primary":"away","secondary":"The boy looked away, angry at himself for allowing such feelings.","answer":"(副詞)來自某地,因此。\n\n男孩轉過頭去,對自己竟會產生這種情緒感到懊惱。"},{"primary":"goblin","secondary":"The wicked goblins certainly, so full of anger and greed, so delighting in murder and war.","answer":"(名詞) 指各種敵對的超自然生物之一,現今特別指(奇幻文學中)一種邪惡且畸形的矮小類人生物。\n\n那些邪惡的哥布林確實如此,滿心憤怒與貪婪,沉迷於殺戮與戰爭。"},{"primary":"way","secondary":"Gradually a smile found its way back onto her face, her dimples showing the slightest blush of red.","answer":"(名詞) (標題) 與某個或某些地方有關。\n\n她的臉上逐漸浮現出一抹微笑,酒窩裡泛起一絲淡淡的紅暈。"},{"primary":"elf","secondary":"Juraviel didn't have to look Tuntun's way to know her pose, for the obstinate elf struck it often.","answer":"(名詞)一種掌管自然與豐饒、棲居於阿爾夫海姆(精靈國)的光明精靈。可參見天使、仙女、精靈。\n\n茱拉維爾無需看向屯屯,便知道她擺了什麼姿勢,因為這位固執的精靈經常擺出那樣的身姿。"},{"primary":"right","secondary":"Its gray rock walls seemed to grow right from the solid stone, an extension of the earth's power.","answer":"(副詞)在右邊。\n\n那灰色的岩壁彷彿直接從堅實的岩石中生長出來,彷彿是大地力量的延伸。"},{"primary":"hard","secondary":"Olwan Wyndon told the tale again in full to the gathering, trying hard not to embellish it.","answer":"(形容詞) (指物質或流體) 性質嚴峻;具有困難性。\n\n奧爾萬·溫登再次向在場眾人完整地講述了這個故事,並極力避免添油加醋。"},{"primary":"other","secondary":"Panic hit him, wrestling hard with a jumble of other emotions that Elbryan did not understand.","answer":"(形容詞)不同的。\n\n恐慌席捲了他,與一團他無法理解的複雜情緒激烈纏鬥。"},{"primary":"long","secondary":"Elbryan and Pony lingered long by the corpse, studying it intently.","answer":"(形容詞) 指某物體或區域的某一端點至另一端點之間距離甚遠(通常指水平方向的距離;請參閱下方的使用說明)。\n\n艾爾布萊恩和波尼在屍體旁久久徘徊,仔細端詳著。"},{"primary":"young","secondary":"A grinding sound, the great gates sliding open, brought the young man from his contemplations.","answer":"(形容詞)處於生長或生命的初期;出生不久。\n\n一陣吱嘎聲響,巨大的大門滑開,將那名年輕人從沉思中驚醒。"},{"primary":"head","secondary":"Pony sighed, too, and shook her head as if to show her ultimate frustration with adults.","answer":"(名詞) 動物或人體中包含大腦、口腔及主要感官的部位。\n\n小馬也嘆了口氣,搖了搖頭,彷彿要表達她對大人的極度無奈。"},{"primary":"giant","secondary":"Pony shrugged, not willing to discount the possibility of giants, not after viewing a dead goblin.","answer":"(名詞)體型極為龐大的神話人物。\n\n小馬聳了聳肩,不願排除巨人存在的可能性——畢竟他親眼見過一具哥布林屍體。"},{"primary":"eyes","secondary":"Most listened politely but turned up their eyes and shook their heads whenever Brody looked away.","answer":"(名詞) 動物藉以視物(透過光線感知周遭環境)的器官。\n\n大多數人雖然禮貌地聽著,但每當布羅迪轉開視線時,他們便翻白眼並搖頭。"},{"primary":"foot","secondary":"They sat together, yet apart, separated by a couple of feet and by the wall of Elbryan's confusion.","answer":"(名詞) 許多動物身上具有的一種生物結構,用於移動,通常是位於肢體末端的一個獨立器官。\n\n他們雖坐在一起,卻又彼此疏離,相隔僅有幾英尺,更隔著埃爾布萊恩內心的困惑之牆。"},{"primary":"side","secondary":"Immediately a pair of mugs came up into the air from the side of the room.","answer":"(名詞) 二維形狀的邊界直邊。\n\n霎時間,房間一側飛起了一對馬克杯。"},{"primary":"turned","secondary":"Its thoughts turned from its enemies to those it would summon as minions.","answer":"(動詞) (標題) 做出非線性的身體動作。\n\n它的思緒從敵人轉向了那些它將召喚來作為爪牙的生物。"},{"primary":"against","secondary":"Pony squeezed in tight between two buildings and put her head against a wall.","answer":"(介詞)與……相反的方向。\n\n小馬擠在兩棟建築物之間,將頭靠在牆上。"},{"primary":"own","secondary":"Elbryan was glad that the distracted girl had not noticed his own shade of red.","answer":"(形容詞) 屬於;擁有;特有的。常標示所有格限定詞為反身形式,指回該從句或句子的主語。\n\n艾爾布萊恩慶幸那個心不在焉的女孩沒有注意到他臉上泛起的紅暈。"},{"primary":"word","secondary":"Pony spoke the words again, under her breath.","answer":"(名詞) 語言中具有特定意義且能獨立表達的最小單位;語言中最小、獨立且有意義的單位。(對比:語素。)\n\n小馬再次輕聲說了那句話。"},{"primary":"far","secondary":"All that she wanted now was to get away, far away.","answer":"(形容詞) 遙遠的;在空間上相距甚遠的。\n\n此刻,她只想逃離這裡,逃得越遠越好。"},{"primary":"sword","secondary":"The shining sword, the horse's run,\n\nThe bane of monsters all and one.","answer":"劍\n\n閃耀的寶劍,奔馳的駿馬,\n\n萬魔之敵,無一倖免。"},{"primary":"such","secondary":"For the demonic creature in the cave, such questions hardly mattered.","answer":"這樣的\n\n對洞穴中的那隻惡魔生物而言,這些問題根本無關緊要。"},{"primary":"reply","secondary":"The look the stocky man gave him in reply did little to allay the monk's mounting suspicions.","answer":"回覆\n\n那位身材魁梧的男人回瞪了他一眼,這眼神絲毫未能消除僧人心中日益加深的疑慮。"},{"primary":"behind","secondary":"The new class of twenty-five stood one behind the other.","answer":"在……之後\n\n這二十五名新生排成一列,一人緊跟一人。"},{"primary":"centaur","secondary":"Weasel?\"\n\nThe centaur snorted.","answer":"半人馬\n\n「鼬鼠?」\n\n半人馬嗤之以鼻。"},{"primary":"realize","secondary":"The object on the fourth shoulder pole, each man realized, would be enough to get the lesson across.","answer":"意識到\n\n每個人都明白,第四根肩槓上的那個物件,就足以讓人明白這個教訓。"},{"primary":"tree","secondary":"What song is this, drift through the trees\n\nTo lift men broken from their knees?","answer":"樹\n\n這是什麼歌,在樹林間飄蕩\n\n讓跌倒的人們得以從膝蓋上站起?"},{"primary":"world","secondary":"All the world seemed still, not a bird calling, not a whisper of wind.","answer":"世界\n\n整個世界彷彿靜止了,沒有鳥鳴,也沒有風聲。"},{"primary":"ground","secondary":"Pony fell to her knees and began to scrape the ground at the base of Olwan's house.","answer":"地面\n\n小馬跪倒在地,開始在奧爾萬家屋子底下的地面上刮擦。"},{"primary":"indeed","secondary":"Faith heeded no proof - indeed the very value of faith was loyalty to beliefs without proof!","answer":"確實\n\n信仰不需證據——事實上,信仰的價值正在於對信念的忠誠,無需證據!"},{"primary":"perhaps","secondary":"She reached deeper, perhaps a foot and a half down, and her hand met cold, wet ground.","answer":"也許\n\n她把手伸得更深,大概有一英尺半深,手掌觸碰到冰冷潮濕的地面。"},{"primary":"soon","secondary":"The snicker was soon gone, but the smile remained, all the wider for the sight.","answer":"很快\n\n那聲輕笑很快便消失了,但笑容卻依然掛在臉上,這番景象讓笑容顯得更加燦爛。"},{"primary":"well","secondary":"Avelyn was the youngest of ten, and his parents had been well into their forties when he was born.","answer":"嗯\n\n艾維林是十個孩子中最小的,他出生時,父母都已年過四十。"},{"primary":"creature","secondary":"For the demonic creature in the cave, such questions hardly mattered.","answer":"生物\n\n對洞穴中的那隻惡魔般的生物而言,這些問題根本無關緊要。"},{"primary":"dactyl","secondary":"Salvatore Copyright 1996\n\nThe demon dactyl came awake.","answer":"達克提爾\n\n薩爾瓦托雷 版權所有 1996\n\n惡魔達克提爾甦醒了。"},{"primary":"human","secondary":"Its head, too, was somewhat human, except more angular, with a narrow jaw and pointed chin.","answer":"人類\n\n它的頭部也帶點人形,只是線條更為棱角分明,下顎狹窄,下巴尖尖的。"},{"primary":"wall","secondary":"They sat together, yet apart, separated by a couple of feet and by the wall of Elbryan's confusion.","answer":"牆\n\n他們雖坐在一起,卻又彼此疏離,相隔僅有幾英尺,更隔著埃爾布萊恩內心的困惑之牆。"},{"primary":"moment","secondary":"After a moment of shock, the goblins had thrown their spears, injuring one man.","answer":"時刻\n\n經過片刻的驚愕,哥布林們便投擲長矛,擊傷了一名男子。"},{"primary":"last","secondary":"How many decades, even centuries, had passed since its last visit to Corona?","answer":"最後\n\n自上次造訪科羅納以來,究竟已過了多少個十年,甚至多少個世紀?"},{"primary":"body","secondary":"The tangible, corporeal body felt good to the wandering spirit.","answer":"正文\n\n這具具體而真實的軀體,讓那遊蕩的靈魂感到舒適。"},{"primary":"under","secondary":"Pony spoke the words again, under her breath.","answer":"在……之下\n\n小馬再次輕聲說了那句話。"},{"primary":"fight","secondary":"He looked ahead at the evergreen vale and noted to his dismay that a fight was going on down there.","answer":"戰鬥\n\n他望向前方那片常青的山谷,驚訝地發現下方正有一場激戰。"},{"primary":"nod","secondary":"Olwan Wyndon nodded, not wanting to get Brody into one of his legendary fits of outrage.","answer":"目標\n\n奧爾萬·溫登點了點頭,生怕惹得布羅迪發起他那傳說中的一場暴怒。"},{"primary":"thing","secondary":"CHAPTER 3 The Lingering Kiss\n\nThings quieted quickly in Dundalis.","answer":"東西\n\n第三章 縈繞不去的吻\n\n鄧達利斯很快便恢復了平靜。"},{"primary":"light","secondary":"He dressed quickly, fumbling with his clothes in the red light of the hearth's glowing embers.","answer":"光\n\n他匆匆穿好衣服,在壁爐餘燼散發的紅光下笨拙地翻找衣物。"},{"primary":"explain","secondary":"The mysteries of stone magic could not be explained away by human desires of control and order.","answer":"解釋\n\n石之魔法的奧秘,無法僅以人類對控制與秩序的渴望來解釋。"},{"primary":"great","secondary":"A grinding sound, the great gates sliding open, brought the young man from his contemplations.","answer":"太棒了\n\n一陣吱嘎聲響,巨大的大門滑開,將那名青年從沉思中拉回現實。"},{"primary":"himself","secondary":"Dinoniel himself had come into this cave after the beast, had skewered the dactyl...","answer":"他本人\n\n迪諾尼爾本人是追著那頭野獸進入這座洞穴的,他將那隻指爪獸刺穿……"},{"primary":"here","secondary":"A trip line here, a disguised patch of slick mud on a corner there.","answer":"這裡\n\n這裡有條陷阱線,那裡彎道上藏著一塊看似無害的濕滑泥地。"},{"primary":"magic","secondary":"The ruby was thrumming in his hand, its magic intense and straining for release.","answer":"魔法\n\n那顆紅寶石在他掌心震顫著,其魔力強烈而亟欲釋放。"},{"primary":"past","secondary":"Juraviel walked past Elbryan to the trough and dipped his cupped hands in.","answer":"過去\n\n茱拉維爾從艾爾布萊恩身旁走過,走向水槽,將雙手捧起浸入水中。"},{"primary":"something","secondary":"Or was it something more profound?","answer":"某物\n\n還是說,這背後有更深層的意義?"},{"primary":"little","secondary":"Goblins were little seen creatures; many considered them more myth than truth.","answer":"一點點\n\n哥布林是極少被人見到的生物;許多人認為它們更像是傳說而非真實存在。"},{"primary":"fast","secondary":"Then he saw the goblin, coming fast, half a spear in its hands.","answer":"固定\n\n接著,他看見那隻哥布林正飛快地衝過來,手中握著半支長矛。"},{"primary":"suddenly","secondary":"He felt warm suddenly, a bit dizzy, a bit frightened.","answer":"突然\n\n他突然感到一陣暖意,有些頭暈,也有些害怕。"},{"primary":"father","secondary":"Elbryan's father had assured him that Wyndon boys were normally late in sprouting.","answer":"父親\n\n艾爾布萊恩的父親曾向他保證,溫登家的男孩通常發育較晚。"},{"primary":"once","secondary":"Elbryan held his breath, gasped once, then held it again.","answer":"曾經\n\n艾爾布萊恩屏住呼吸,喘了口氣,接著又屏住呼吸。"},{"primary":"turn","secondary":"Then he wanted to turn back, to run into the hollow and cover his face.","answer":"轉\n\n接著,他想轉身逃回山谷,用手摀住臉。"},{"primary":"arm","secondary":"Jilseponie moved first, a single, tiny step, her arm reaching out helplessly.","answer":"手臂\n\n吉爾塞波妮率先動了起來,只邁出了一小步,手臂無助地伸了出去。"},{"primary":"small","secondary":"Scores and scores of small arrows, filling the air all about him!","answer":"小\n\n成百上千支小箭,彷彿填滿了他周遭的整個空間!"},{"primary":"low","secondary":"He found a tall pine with low-hanging branches and slipped underneath them into the natural tent.","answer":"低\n\n他發現了一棵枝椏低垂的高大松樹,便溜進樹枝下方,進入了這座天然帳篷。"},{"primary":"shoulder","secondary":"The object on the fourth shoulder pole, each man realized, would be enough to get the lesson across.","answer":"肩膀\n\n每個人都明白,第四根肩槓上的那樣東西,就足以讓人明白這個教訓。"},{"primary":"voice","secondary":"Pony recognized the frustration in his voice, though he did well to hide it.","answer":"聲音\n\n小馬聽出了他語氣中的挫敗感,儘管他隱藏得相當巧妙。"},{"primary":"wide","secondary":"The chin was narrow, but the jowls wide with muscle.","answer":"寬\n\n下巴雖窄,但下頜兩側卻寬闊且肌肉發達。"},{"primary":"along","secondary":"He caressed her neck, ran his hand down her side and along the outside of her strong leg.","answer":"沿著\n\n他輕撫她的頸項,手掌沿著她的腰際滑下,再順著她那條結實的大腿外側滑行。"},{"primary":"hit","secondary":"Realizing she hadn't been hit by anything, she put her feet back under her and ran on.","answer":"擊中\n\n她意識到自己並沒有被什麼東西擊中,便重新站穩腳步,繼續跑了下去。"},{"primary":"line","secondary":"He had two score lined up in the field, and so he decided to bury them alone.","answer":"行\n\n他在田裡排好了二十具屍體,於是決定獨自將它們埋葬。"},{"primary":"end","secondary":"Stubborn to the end, he stabbed again as hard as he could, then closed his eyes.","answer":"比\n\n他至死不屈,竭盡全力又刺了一刀,隨後閉上了雙眼。"},{"primary":"village","secondary":"Work in the village was at full pace, readying for winter.","answer":"村莊\n\n村裡正加緊腳步,為過冬做準備。"},{"primary":"powrie","secondary":"It was a powrie mannikin, Avelyn realized.","answer":"將回歸\n\n艾芙琳這才意識到,那是一個無力的小人偶。"},{"primary":"near","secondary":"Elbryan saw the dark stain near those hands.","answer":"附近\n\n艾爾布萊恩看見那雙手附近有塊暗色的污漬。"},{"primary":"next","secondary":"Elbryan moved up to the comer of the next house, smiling for his cleverness, and peered around.","answer":"下一頁\n\n艾爾布萊恩走到隔壁房子的轉角處,為自己的機智而暗自得意,隨即探頭張望。"},{"primary":"pair","secondary":"Immediately a pair of mugs came up into the air from the side of the room.","answer":"一對\n\n霎時間,房間一側飛起了一對馬克杯。"},{"primary":"hands","secondary":"At gentle hands of elven breed.","answer":"手\n\n在精靈族那雙溫柔的手中。"},{"primary":"smile","secondary":"The snicker was soon gone, but the smile remained, all the wider for the sight.","answer":"微笑\n\n那聲輕笑很快便消失了,但笑容卻依然掛在臉上,眼前的景象讓那笑容更加燦爛。"},{"primary":"fly","secondary":"Scatter, goblins, fly and flee!","answer":"飛機\n\n散開吧,小妖精們,快飛走逃命吧!"},{"primary":"group","secondary":"Elbryan went left, shadowing a group of three.","answer":"群組\n\n艾爾布萊恩向左轉,緊跟在一群三人身後。"},{"primary":"dark","secondary":"Yes, the dark vibrations were running strong through the stone.","answer":"黑暗\n\n是的,那股黑暗的能量正強烈地流竄於石頭之中。"},{"primary":"course","secondary":"He should organize his friends - yes, that was the course, he decided.","answer":"課程\n\n他應該召集他的朋友們——沒錯,這就是該做的,他決定了。"},{"primary":"bow","secondary":"He stopped at the door, bowed his head; and closed his eyes, conjuring images of the young Avelyn.","answer":"鞠躬\n\n他停在門口,低下了頭;閉上雙眼,腦海中浮現出年輕時的艾維琳的模樣。"},{"primary":"powry","secondary":"Now at the taffrail the four monks and Captain Adjonas watched the powries' progress.","answer":"蕗菜\n\n此刻,四名僧侶與阿喬納斯船長正站在船尾欄杆旁,注視著那些小船的前進。"},{"primary":"alone","secondary":"Their last few days together, alone for four of every five hours, had brought them even closer.","answer":"獨自\n\n他們共度的這幾天裡,每五個小時就有四個小時獨處,這讓兩人的關係更加親密。"},{"primary":"dead","secondary":"She saw the image of dead Olwan again, and the last glimpse of her father.","answer":"已死\n\n她再次看見已故奧爾萬的影像,以及父親的最後一面。"},{"primary":"sight","secondary":"Pony lost sight of her father immediately, mercifully.","answer":"視野\n\n所幸,小馬立刻就看不見父親了。"},{"primary":"moving","secondary":"Pony picked her way around the back of the nearest houses, moving in and out of the shadows.","answer":"搬家\n\n波妮小心翼翼地繞過附近房屋的後方,時而隱入陰影,時而現身於光影之間。"},{"primary":"better","secondary":"Pony knew him so very well, better than he knew himself.","answer":"更好\n\n波尼對他瞭若指掌,甚至比他自己還了解自己。"},{"primary":"point","secondary":"The starkness of the scene from this vantage point, in this mounting light, amazed the companions.","answer":"點\n\n從這個角度望去,在漸強的光線中,眼前的景象那份荒涼感令同伴們驚嘆不已。"},{"primary":"master","secondary":"He wanted to punch out at the tall master for even insinuating otherwise.","answer":"大師\n\n光是那位高個子師傅竟敢暗示另有隱情,他就想一拳揍過去。"},{"primary":"hardly","secondary":"For the demonic creature in the cave, such questions hardly mattered.","answer":"幾乎沒有\n\n對洞穴中的那隻惡魔生物而言,這些問題根本無關緊要。"},{"primary":"arrow","secondary":"Scores and scores of small arrows, filling the air all about him!","answer":"箭頭\n\n成百上千支小箭,彷彿填滿了他周遭的整個空間!"},{"primary":"water","secondary":"He stared at the water for a moment, eyeing its hue, then sniffed its delicate bouquet.","answer":"水\n\n他凝視著水面片刻,細細端詳那水色,接著嗅了嗅那清雅的香氣。"},{"primary":"above","secondary":"Perhaps he would shine in the heavens above, a fifth light on the girdle of Progos-Behemoth!","answer":"上文\n\n或許他將在天際熠熠生輝,成為普羅戈斯-貝希摩斯腰帶上的第五顆星!"},{"primary":"fear","secondary":"His hands did move now, as he lost his fear of touching Pony.","answer":"男人\n\n此刻他的手確實動了起來,因為他不再害怕觸碰小馬。"},{"primary":"monster","secondary":"The shining sword, the horse's run,\n\nThe bane of monsters all and one.","answer":"怪物\n\n閃耀的寶劍,奔馳的駿馬,\n\n萬魔之敵,無一倖免。"},{"primary":"remark","secondary":"Jojonah's explanation for the tour had been weak, some remark about an area that needed cleaning.","answer":"備註\n\n喬喬納對這次巡視的解釋很牽強,只說了些關於某個區域需要清理之類的話。"},{"primary":"weapon","secondary":"Every part of the demon was a weapon, devastating and deadly.","answer":"(名词) 用于战斗或狩猎的攻击或防御工具,例如大多数枪支、导弹或剑。\n\n那恶魔的每一处都是武器,具有毁灭性的杀伤力。"},{"primary":"forest","secondary":"He was in a forest, he understood - he was ankle deep in fallen leaves.","answer":"(名词) 一片茂密的、未经开垦的树木和灌木丛,面积比树林更大。\n\n他身处一片森林,他明白了——脚踝深陷在落叶之中。"},{"primary":"step","secondary":"Jilseponie moved first, a single, tiny step, her arm reaching out helplessly.","answer":"(名词) 从一只脚迈向另一只脚的步子;一步。\n\n吉尔塞波妮率先动了,只迈出了一小步,手臂无助地伸了出去。"},{"primary":"four","secondary":"Their last few days together, alone for four of every five hours, had brought them even closer.","answer":"(名词) 数字4;该数字的出现。\n\n他们在一起的最后几天里,每五小时就有四小时独处,这让他们之间的感情更加深厚。"},{"primary":"spirit","secondary":"The demon spirit fell deep within itself, summoned its powers, both physical and magical.","answer":"(名词) 人或其他生物的灵魂。灵魂通过经历,最终形成自我定义,并以此作为其存在的意义。\n\n恶魔沉入内心深处,调动起自身的力量,无论是肉体之力还是魔法之力。"},{"primary":"quickly","secondary":"He dressed quickly, fumbling with his clothes in the red light of the hearth's glowing embers.","answer":"(副词) 迅速地;快速地;很快。\n\n他匆匆穿好衣服,在壁炉余烬泛出的红光下笨拙地摆弄着衣物。"},{"primary":"nearly","secondary":"Elbryan, dazed, his breath blasted away, nearly fainted.","answer":"(副词)非常仔细地;谨慎地。\n\n埃尔布莱恩神志恍惚,被震得喘不过气来,几乎昏了过去。"},{"primary":"surprise","secondary":"He looked at Pony and winked, and was surprised when she returned the gesture with a serious frown.","answer":"(名词) 意料之外的事情。\n\n他看着波妮,朝她眨了眨眼,没想到她却皱着眉头严肃地回了他一个眼神,这让他大吃一惊。"},{"primary":"others","secondary":"How many others could look upon the Halo and understand the beauty of the thing?","answer":"(名词) 另一个(人等),通常译为“另一个”。\n\n还有多少人能凝视《光环》,并领略其美?"},{"primary":"force","secondary":"Now she remembered her training, forced herself to think clearly and concisely.","answer":"(名词) 身体或精神上的力量或能量;活跃的力量;活力;气势;施加影响或产生效果的能力。\n\n此刻,她想起了自己的训练,强迫自己思路清晰、言简意赅。"},{"primary":"leg","secondary":"He sat up straight, then rolled to put his legs under him.","answer":"(名词) 动物用于支撑或移动的肢体或附肢。\n\n他挺直了身子,然后翻了个身,把双腿收到了身下。"},{"primary":"cry","secondary":"Pony let out a cry, hurled one of her stones at the creature, and ran off.","answer":"(名词) 流泪;哭泣的行为。\n\n小马惊叫一声,朝那怪物扔了一块石头,然后跑开了。"},{"primary":"breath","secondary":"Elbryan held his breath, thinking that Pony's mother, often stern, would scold the girl severely.","answer":"(名词) 呼吸的行为或过程。\n\n埃尔布莱恩屏住了呼吸,心想通常很严厉的波妮的母亲一定会狠狠地训斥这个女孩。"},{"primary":"high","secondary":"The place was not bright, having only a handful of tiny windows set high up on the tall walls.","answer":"(名词)字面或比喻意义上的高点或位置;高处;高地;高处;天空;天堂。\n\n那里光线昏暗,高耸的墙壁上只开着寥寥几扇小窗。"},{"primary":"half","secondary":"Then he saw the goblin, coming fast, half a spear in its hands.","answer":"(名词) 任何事物可被划分为(或被视为已划分为)的两个通常大致相等的部分之一。\n\n接着,他看见那只哥布林正飞快地冲过来,手里拿着半截长矛。"},{"primary":"often","secondary":"Elbryan held his breath, thinking that Pony's mother, often stern, would scold the girl severely.","answer":"(形容词)频繁的。\n\n埃尔布莱恩屏住了呼吸,心想通常很严厉的波妮的母亲肯定会狠狠地训斥这个女孩。"},{"primary":"black","secondary":"Then all was gray, then black.","answer":"(名词) 在没有光线的情况下所感知到的颜色,即光线未被反射而是被吸收时所呈现的颜色。\n\n接着一切都变成了灰色,然后是黑色。"},{"primary":"edge","secondary":"Silently mouthing that litany, Elbryan inched his face toward the edge of the pine.","answer":"(名词) 曲面的边界线。\n\n埃尔布莱恩默默地默念着那段祷文,将脸慢慢凑向松树的边缘。"},{"primary":"shake","secondary":"Pony sighed, too, and shook her head as if to show her ultimate frustration with adults.","answer":"(名词) 摇晃或被摇晃的行为;颤动或来回摆动的动作。\n\n小马也叹了口气,摇了摇头,仿佛在表达她对大人们的极度无奈。"},{"primary":"ahead","secondary":"The girl was not looking ahead, though, but at the ridge to the south behind them.","answer":"(副词) 在前方或朝前方;提前;向前。\n\n然而,那个女孩并没有望向前方,而是望着他们身后南边的山脊。"},{"primary":"least","secondary":"We shall be running against the weather at least until we have turned south of All Saints Bay.","answer":"(名词) 指范围最小的东西;不可分割的单位。\n\n至少在绕过诸圣湾向南航行之前,我们都将逆风而行。"},{"primary":"hope","secondary":"Jayson only hoped that he could somehow get her home, into her own bed, before she died.","answer":"(动词)希望某事发生,并怀有它可能会发生的期待。\n\n杰森只希望能在她去世前,设法把她送回家,让她躺回自己的床上。"},{"primary":"strong","secondary":"Pony dared to reach out then; the connection was too strong to let the moment pass.","answer":"(形容词)能够产生巨大的物理力量。\n\n小马这时终于鼓起勇气伸出了手;这种联系太过强烈,绝不能让这一刻溜走。"},{"primary":"strength","secondary":"By sheer will and brute strength, the dactyl flexed its wings.","answer":"(名词) 强壮的程度或特征。\n\n凭借坚定的意志和惊人的力量,达克提尔展开了翅膀。"},{"primary":"arms","secondary":"Carved into the roof were four arms, two sets, hands lifted high, palms open and holding stones.","answer":"(名词) 人体上肢的部位,从肩部到手腕,有时也包括手部。\n\n屋顶上雕刻着四只手臂,分两组,双手高举,掌心朝上,手中各握着一块石头。"},{"primary":"straight","secondary":"The goblin on his left came in hard and straight.","answer":"直的\n\n他左边的那只哥布林猛地直冲过来。"},{"primary":"companion","secondary":"He remembered his companion, his earlier feelings, and turned away from Pony, blushing fiercely.","answer":"伴侣\n\n他想起了自己的同伴,想起了刚才的心情,便扭过头去,不再看波尼,脸颊顿时涨得通红。"},{"primary":"trying","secondary":"Olwan Wyndon told the tale again in full to the gathering, trying hard not to embellish it.","answer":"尝试\n\n奥尔万·温登再次向在场众人完整地讲述了这个故事,努力没有添油加醋。"},{"primary":"enemy","secondary":"Its thoughts turned from its enemies to those it would summon as minions.","answer":"敌人\n\n它的思绪从敌人身上转移到了那些它将召唤来作为爪牙的生物身上。"},{"primary":"deep","secondary":"The demon spirit fell deep within itself, summoned its powers, both physical and magical.","answer":"深\n\n恶魔沉入内心深处,调动起自身的力量,无论是肉体之力还是魔法之力。"},{"primary":"thick","secondary":"Her lips, too, were large and thick.","answer":"厚\n\n她的嘴唇也是又大又厚。"},{"primary":"return","secondary":"He looked at Pony and winked, and was surprised when she returned the gesture with a serious frown.","answer":"返回\n\n他看着波妮,朝她眨了眨眼,没想到她却皱着眉头严肃地回了他一个眼神,这让他大吃一惊。"},{"primary":"folk","secondary":"Dundalis had been home to more than a hundred folk; how long would it take to bury them all?","answer":"人们\n\n邓达利斯曾居住着上百人;要把他们全都安葬,得花多长时间?"},{"primary":"short","secondary":"Elbryan drew out his short sword, glancing warily into the shadows.","answer":"简短\n\n埃尔布莱恩拔出短剑,警惕地向阴影处瞥去。"},{"primary":"dwarf","secondary":"Powries were skinny dwarfs, barely four feet in height.","answer":"矮人\n\n波瑞斯是身材瘦小的矮人,身高还不到四英尺。"},{"primary":"bit","secondary":"He felt warm suddenly, a bit dizzy, a bit frightened.","answer":"位\n\n他突然感到一阵暖意,有些头晕,还有点害怕。"},{"primary":"full","secondary":"The wicked goblins certainly, so full of anger and greed, so delighting in murder and war.","answer":"完整\n\n那些邪恶的哥布林确实如此,满腔怒火与贪婪,沉迷于杀戮与战争。"},{"primary":"front","secondary":"This was Shane McMichael's house in front of her, Olwan Wyndon's right behind her.","answer":"首页\n\n她面前的是谢恩·麦克迈克尔的家,奥尔万·温登的家就在她身后。"},{"primary":"nothing","secondary":"Jojonah looked back at the courtyard, to Avelyn at work as always as though nothing was amiss.","answer":"没有\n\n乔乔纳回头望向庭院,只见艾维琳一如既往地忙碌着,仿佛一切如常。"},{"primary":"true","secondary":"Jojonah nodded but said, \"Not exactly true.\"\n\nAvelyn stared at him hard.","answer":"true\n\n乔乔纳点了点头,但说道:“倒也不尽然。”\n\n艾维琳紧盯着他。"},{"primary":"finally","secondary":"He dashed back up the slope, finally getting to the boy.","answer":"终于\n\n他飞快地冲回山坡,终于赶到了那个男孩身边。"},{"primary":"good","secondary":"The tangible, corporeal body felt good to the wandering spirit.","answer":"好\n\n这具有形有质的身体,让游荡的灵魂感到舒畅。"},{"primary":"battle","secondary":"Elbryan savored every word, envisioning the battle clearly.","answer":"战斗\n\n埃尔布莱恩细细品味着每一句话,脑海中清晰地浮现出那场战斗的景象。"},{"primary":"lift","secondary":"What song is this, drift through the trees\n\nTo lift men broken from their knees?","answer":"电梯\n\n这是什么歌,在树林间飘荡\n\n让跌倒的人们重新站起?"},{"primary":"understood","secondary":"Jilseponie understood then that she had been unconscious for a long time.","answer":"明白了\n\n吉尔塞波妮这才意识到,自己已经昏迷了很久。"},{"primary":"noted","secondary":"He looked ahead at the evergreen vale and noted to his dismay that a fight was going on down there.","answer":"已知悉\n\n他望向前方那片常青的山谷,惊愕地发现山下正有一场激战。"},{"primary":"heart","secondary":"To untwist hearts from grasping sorrow,\n\nTo offer the promise of the morrow?","answer":"心\n\n让心灵从紧握的悲伤中解脱,\n\n为明天许下承诺?"},{"primary":"image","secondary":"She saw the image of dead Olwan again, and the last glimpse of her father.","answer":"图片\n\n她再次看到了已故的奥尔万的身影,还有父亲的最后一面。"},{"primary":"clear","secondary":"Again it was the smell of his burning village that cleared his head.","answer":"清除\n\n又是他家村庄燃烧的气味,让他头脑清醒过来。"},{"primary":"bear","secondary":"Hooves of music rend the gloom\n\nBearing Nightbird, know your doom!","answer":"熊\n\n音乐的蹄声撕裂了阴霾\n\n驮着夜鸟,你该知道自己的命运了!"},{"primary":"sense","secondary":"Master Siherton wouldn't even look his way, and Avelyn could sense that the man desired his failure.","answer":"没有\n\n西赫顿大师连看都不看他一眼,而阿维琳能感觉到,那人正巴不得他失败。"},{"primary":"valley","secondary":"And of the other patrol, who had battled in the wide pine valley among the caribou moss?","answer":"山谷\n\n至于另一支巡逻队,他们曾在广阔的松林谷地中,在驯鹿苔藓丛中作战,他们又如何了?"},{"primary":"mind","secondary":"He didn't want to do that; the last notion in his mind was to pull away.","answer":"所有\n\n他并不想那样做;他脑海中最后一个念头就是抽身离开。"},{"primary":"grab","secondary":"She slapped away his grabbing hands, then slugged him twice in the face.","answer":"坟墓\n\n她甩开他抓过来的手,接着朝他脸上连打两拳。"},{"primary":"huge","secondary":"The object of Thagraine's death, a huge purple amethyst, held Avelyn's attention.","answer":"巨大的\n\n那颗巨大的紫色紫水晶——正是塔格雷恩之死的关键——吸引了阿维琳的目光。"},{"primary":"drop","secondary":"The goblin staggered weirdly, dropped its weapon, and fell to its knees.","answer":"下拉\n\n那只哥布林怪异地踉跄了一下,掉落了武器,随即跪倒在地。"},{"primary":"mountain","secondary":"Yet he could not deny the tug of that lone, smoking mountain, calling to him, compelling him .","answer":"山\n\n然而,他无法抗拒那座孤零零、烟雾缭绕的山峰所产生的吸引力,它在召唤着他,驱使着他……"},{"primary":"air","secondary":"Hot blood waft steam in night air cold.","answer":"水\n\n热血在寒冷的夜空中升腾起阵阵热气。"},{"primary":"south","secondary":"The girl was not looking ahead, though, but at the ridge to the south behind them.","answer":"南\n\n然而,那个女孩并没有望向前方,而是望着他们身后南边的山脊。"},{"primary":"part","secondary":"He felt a part of the larger and higher truths, a oneness with the universe.","answer":"部分\n\n他感到自己与更宏大、更崇高的真理融为一体,与宇宙合而为一。"},{"primary":"wonder","secondary":"Often I sit and stare at the stars, wondering, wandering.","answer":"好奇\n\n我常常静坐凝望星空,思绪万千,漫无边际。"},{"primary":"free","secondary":"As villagers died, more and more goblins were free to run about.","answer":"免费\n\n随着村民接连死去,越来越多的哥布林得以四处横行。"},{"primary":"considered","secondary":"Goblins were little seen creatures; many considered them more myth than truth.","answer":"被视为\n\n哥布林是罕见的生物;许多人认为它们更多是传说而非现实。"},{"primary":"horse","secondary":"Not a single person or even a horse remained alive.","answer":"马\n\n没有一个人,甚至连一匹马都没能幸免。"},{"primary":"area","secondary":"Jojonah's explanation for the tour had been weak, some remark about an area that needed cleaning.","answer":"区域\n\n乔乔纳对这次巡视的解释很牵强,只是含糊其辞地提到某个地方需要清理。"},{"primary":"north","secondary":"He looked to the north again, peering hard just above the horizon.","answer":"北\n\n他再次望向北方,凝神注视着地平线稍上方。"},{"primary":"attack","secondary":"Tuntun, almost expecting the attack from this man who so hated her, was not caught by surprise.","answer":"攻击\n\n屯屯早料到这个如此憎恨她的男人会发动袭击,因此并未感到措手不及。"},{"primary":"ready","secondary":"Work in the village was at full pace, readying for winter.","answer":"准备好了\n\n村里正紧锣密鼓地忙碌着,为过冬做准备。"},{"primary":"push","secondary":"If Quintall tried to sneak in and push that crank, it would likely cost them both their meal.","answer":"推送\n\n如果昆塔尔试图偷偷溜进去转动那个曲柄,很可能导致他们俩都吃不上饭。"},{"primary":"power","secondary":"The ruby, shining with power, arced lazily over the open hatch.","answer":"电源\n\n那颗红宝石闪烁着威严的光芒,懒洋洋地悬在敞开的舱口上方。"},{"primary":"dozen","secondary":"But the giant had seen the move dozens of times in its battles with little folk.","answer":"一打\n\n但那巨人与小家伙们交战时,早已见过这招几十次了。"},{"primary":"rush","secondary":"Grady then gave a curt bow and rushed away, back to a wide-smiling Pettibwa.","answer":"匆忙\n\n格雷迪随即简短地鞠了一躬,便匆匆离去,回到面带灿烂笑容的佩蒂布瓦身边。"},{"primary":"closed","secondary":"She only sighed, though, and resignedly closed the cabin door.","answer":"已关闭\n\n不过,她只是叹了口气,然后无奈地关上了舱门。"},{"primary":"beyond","secondary":"On the ridge and in the vale beyond, the primary enemy became boredom.","answer":"超越\n\n在山脊上以及山谷的另一端,最大的敌人变成了无聊。"},{"primary":"same","secondary":"Strike, parry, strike - the same routine.","answer":"萨米语\n\n出招、格挡、出招——一成不变的套路。"},{"primary":"roll","secondary":"Over and over they rolled, tumbling down the slope, punching and thrashing.","answer":"角色\n\n他们翻滚着,沿着斜坡滚落,一路上拳打脚踢、手舞足蹈。"},{"primary":"trail","secondary":"Why even you ...\" Jojonah's voice trailed off, a tease that anxious Avelyn could not ignore.","answer":"小径\n\n“连你竟然……”乔乔纳的声音渐渐淡去,这种调侃让焦虑的艾维琳无法置之不理。"},{"primary":"heavy","secondary":"They stopped before a heavy door - and what a door!","answer":"沉重\n\n他们在一扇厚重的门前停下——那可真是一扇门啊!"},{"primary":"reason","secondary":"To cry would be a weakness, Avelyn reasoned, a lack of faith.","answer":"原因\n\n“哭泣是一种软弱,”艾维琳心想,“是一种缺乏信念的表现。”"},{"primary":"tall","secondary":"The giant's hand covered the tall man's entire forearm.","answer":"数字\n\n那只巨人的手几乎盖住了那个高个子男人的整个前臂。"},{"primary":"spot","secondary":"The sun seemed a gray blur above him, a lighter spot in the sky.","answer":"点\n\n头顶的太阳仿佛是一团灰蒙蒙的模糊,是天空中的一抹亮色。"},{"primary":"beside","secondary":"And when he slipped back beside the tenth and last basket, he saw steam still rising from his tea.","answer":"旁边\n\n当他溜回第十个也是最后一个篮子旁边时,他看见茶杯里还在冒着热气。"},{"primary":"staff","secondary":"Elbryan clutched his staff and set his heels.","answer":"员工\n\n埃尔布莱恩紧握法杖,双脚稳稳地站定。"},{"primary":"pain","secondary":"Her husband held her tight then, understanding her pain, both physical and emotional.","answer":"痛苦\n\n那时,她的丈夫紧紧拥抱着她,深知她身心的双重痛苦。"},{"primary":"surely","secondary":"Avelyn calmed quickly; surely they did recognize the jewel, and apparently, it did not bother them.","answer":"当然\n\n艾维琳很快平静下来;他们显然认出了那颗宝石,而且看来并不介意。"},{"primary":"later","secondary":"A moment later, the master opened his eyes.","answer":"稍后\n\n片刻之后,师傅睁开了眼睛。"},{"primary":"scramble","secondary":"Desperately, the young man scrambled to the side, trying to ready a defense.","answer":"争抢\n\n那年轻人慌忙向一旁闪避,试图做好防御准备。"},{"primary":"laugh","secondary":"He could laugh at that embarrassment now, privately or even with Pony.","answer":"笑\n\n现在,他可以对那段尴尬的往事一笑置之了,无论是独自一人时,还是和波尼在一起的时候。"},{"primary":"sound","secondary":"He screwed up his face, the ridiculous nickname sounding foolish in his ears.","answer":"声音\n\n他皱起眉头,这个荒唐的绰号听起来让他觉得很可笑。"},{"primary":"almost","secondary":"Its feel was impossibly smooth, almost liquid.","answer":"几乎\n\n它的触感异常顺滑,几乎像液体一样。"},{"primary":"simply","secondary":"The young man simply had no answers now.","answer":"简而言之\n\n那年轻人此刻实在无言以对。"},{"primary":"old","secondary":"Quintall glowered at Smealy, the old sea dog trembling with frustration.","answer":"旧的\n\n昆塔尔怒视着斯米利,这位老海员因沮丧而浑身发抖。"},{"primary":"land","secondary":"The creature went berserk, kicking and thrashing, flopping like a landed fish.","answer":"国家\n\n那怪物突然发狂,又踢又打,像条搁浅的鱼一样在地上翻腾。"},{"primary":"feeling","secondary":"He was at ease again, the uncomfortable feelings tossed out with the mystery of the night.","answer":"感觉\n\n他又恢复了从容,那些不安的情绪随着夜色的神秘一并消散了。"},{"primary":"times","secondary":"But the giant had seen the move dozens of times in its battles with little folk.","answer":"次\n\n但那巨人与小矮人交战时,早已见过这招无数次了。"},{"primary":"known","secondary":"Avelyn had known, that she would never see her son in this world again.","answer":"已知\n\n艾维琳早就知道,她在这世上再也见不到自己的儿子了。"},{"primary":"slip","secondary":"All advantage was lost as the young man stumbled, the loose earth slipping out from under his foot.","answer":"松开\n\n就在年轻人脚下一滑、松软的泥土从脚下滑落时,所有的优势都化为乌有。"},{"primary":"done","secondary":"Pony smiled warmly, feeling that she had done well.","answer":"完成\n\n小马露出了温暖的笑容,觉得自己做得不错。"},{"primary":"large","secondary":"Her lips, too, were large and thick.","answer":"大\n\n她的嘴唇也是又大又厚。"},{"primary":"form","secondary":"They had fallen as if they had formed a defensive ring, yet there were no human bodies near them.","answer":"形式\n\n他们倒下的样子仿佛曾组成一个防御圈,然而周围却没有人的尸体。"},{"primary":"town","secondary":"She looked in every direction, trying to find some course out of the town to the trees.","answer":"(名词) 一个聚居点;一个拥有居民区、商店和公共设施,并设有地方政府的区域;尤其是指规模大于村庄、小于城市的聚居点。\n\n她四下张望,试图找到一条通往城外树林的路。"},{"primary":"whisper","secondary":"All the world seemed still, not a bird calling, not a whisper of wind.","answer":"(名词) 以轻柔的声音说话的行为,尤其是声带不发声的行为。\n\n整个世界仿佛静止了,没有鸟儿啼鸣,也没有一丝风声。"},{"primary":"pause","secondary":"The master paused and lamented his own weakness.","answer":"(名词) 一种用于暂停和恢复播放的按钮,例如DVD播放器、电子游戏机或计算机上的按钮。\n\n师傅停顿了一下,为自己的软弱而懊恼。"},{"primary":"add","secondary":"Not until this day, he silently added, looking at the slain goblin.","answer":"(名词) 添加的行为或过程。\n\n直到今天,他默默地补充道,目光落在被杀死的哥布林身上。"},{"primary":"expression","secondary":"Avelyn's expression did not change.","answer":"(名词) 表达思想、观点、情感等的行为。\n\n艾维琳的表情没有丝毫变化。"},{"primary":"glance","secondary":"He blushed deeply and lowered his head, taking a quick glance all around.","answer":"(名词) 匆匆一瞥。\n\n他脸红得厉害,低下了头,迅速环顾了一圈。"},{"primary":"lay","secondary":"The whole village had buzzed about the house because Olwan Wyndon was laying a stone foundation.","answer":"(名词) 安排或关系;布局。\n\n整个村子都在热议那栋房子,因为奥尔万·温登正在为它打石基。"},{"primary":"recognize","secondary":"Surely the Father Abbot and the masters recognized the jewel for what it was.","answer":"(动词)将(当前所感知的人或物)与之前与同一人或物相遇的记忆相匹配。\n\n修道院院长和各位导师想必都认出了这颗宝石的真正价值。"},{"primary":"doubt","secondary":"Tuntun was wrong, Juraviel knew without any doubt at all; this one had character.","answer":"(名词) 对某事的怀疑或不确定;此类怀疑或不确定性的具体表现。\n\n图图错了,朱拉维尔对此毫不怀疑;这个家伙很有个性。"},{"primary":"road","secondary":"Candlelight spilled out onto the road, softly illuminating the girl.","answer":"(名词)用于往来于各地的通道,最初指宽度足以供行人及马匹通行的道路,如今(在美国)通常指铺设了沥青或混凝土路面、专为双向多车通行而设计的道路。在英国,这两种含义均被使用:乡村公路与乡村小路是同义词。\n\n烛光洒落在路上,柔和地照亮了那个女孩。"},{"primary":"easily","secondary":"Seven goblins came into sight, trotting easily down the slope.","answer":"(副词)舒适地,没有不适或焦虑。\n\n七个哥布林映入眼帘,正轻快地沿着山坡小跑下来。"},{"primary":"spin","secondary":"Then the world was spinning as Elbryan bounced and rolled.","answer":"(名词) 快速的圆周运动。\n\n接着,随着埃尔布莱恩上下颠簸、翻滚,整个世界都开始旋转起来。"},{"primary":"blade","secondary":"Up went the blade over his left shoulder.","answer":"(名词) 刀、凿或其他工具的锋利切削边缘,如剃须刀片或剑刃。\n\n刀刃从他左肩上方劈了下去。"},{"primary":"movement","secondary":"Juraviel shrugged, a flitting little movement of his slender shoulders.","answer":"(名词) 空间中两点之间的物理运动。\n\n尤拉维尔耸了耸肩,那双纤细的肩膀微微一动。"},{"primary":"lip","secondary":"Her lips, too, were large and thick.","answer":"(名词) 口部开口周围的两处肉质突起。\n\n她的嘴唇也是又大又厚。"},{"primary":"brush","secondary":"He looked at the brush helplessly, at the steaming stew, just a few strides away.","answer":"(名词) 一种由多个柔韧程度各异的刷毛或其他细丝固定在手柄上的工具,用于清洁、涂漆和梳理头发等多种用途。\n\n他无奈地望着那把画笔,又望向仅几步之遥、正冒着热气的炖菜。"},{"primary":"forward","secondary":"Finally, the stinging ended, and the fomorian tried to move forward, back toward its prey.","answer":"(名词)八名球员之一(包括两名边锋、一名钩球手、两名锁前卫、两名边卫和一名八号位球员,统称为前排),其主要任务是夺取并保持对球的控制权(参见后排)。\n\n终于,刺痛感消失了,那个福莫里亚人试图向前移动,朝它的猎物走去。"},{"primary":"quick","secondary":"He blushed deeply and lowered his head, taking a quick glance all around.","answer":"(名词) 未愈合或敏感的皮肤,尤其是指甲和脚趾甲下的部位。\n\n他脸红得厉害,低下了头,迅速环顾了一圈。"},{"primary":"finger","secondary":"To his rubbing fingers, the hematite felt truly liquid then, and inviting.","answer":"(名词)人手除拇指以外的细长、关节分明的末端。\n\n在他摩挲的手指下,赤铁矿当时仿佛真的成了液体,令人心驰神往。"},{"primary":"morning","secondary":"Somehow, that morning, it didn't matter.","answer":"(名词) 一天中从黎明到正午的时间段。\n\n不知为何,那天早上,这些都不重要了。"},{"primary":"blood","secondary":"Hot blood waft steam in night air cold.","answer":"(名词)洛杉矶帮派“血帮”(The Bloods)的成员。\n\n热血在寒冷的夜空中升腾起阵阵热气。"},{"primary":"powerful","secondary":"He closed his eyes and began chanting softly, falling into the magic of the powerful hematite.","answer":"(形容词)具有或能够施加权力、效力或影响力的。\n\n他闭上眼睛,开始轻声吟诵,沉浸在这块强大赤铁矿的魔力之中。"},{"primary":"knee","secondary":"Pony spun and jumped on it, flailing wildly with both fists, kicking and kneeing viciously.","answer":"(名词)在人体中,指大腿与小腿之间、腿部中段的关节或该关节所在的区域。\n\n波尼转身扑了上去,双拳疯狂挥舞,又猛烈地踢打和膝击。"},{"primary":"sky","secondary":"Soon the sky was clear above him, the first stars twinkling into view.","answer":"(名词) 某一点上方的空气层,尤其是白天从地面上可见的那部分。\n\n不久,他头顶的天空放晴了,第一颗颗星星开始在夜空中闪烁。"},{"primary":"physical","secondary":"The demon spirit fell deep within itself, summoned its powers, both physical and magical.","answer":"(名词) 体格检查。\n\n恶魔沉入内心深处,调动起自身的力量,无论是肉体之力还是魔法之力。"},{"primary":"hide","secondary":"The day was late, and gray clouds were rolling in to hide the afternoon sun.","answer":"隐藏\n\n时近黄昏,灰蒙蒙的云层滚滚而来,遮住了午后的阳光。"},{"primary":"red","secondary":"The black-winged demon looked down at a darker red tear marring its otherwise smooth hide.","answer":"网络\n\n那只黑翼恶魔低头看着一滴更深的红色泪珠,它正玷污着那原本光滑的皮毛。"},{"primary":"truly","secondary":"To his rubbing fingers, the hematite felt truly liquid then, and inviting.","answer":"确实\n\n在他摩挲的手指下,赤铁矿当时仿佛真的像液体一样,令人心驰神往。"},{"primary":"person","secondary":"Not a single person or even a horse remained alive.","answer":"人\n\n没有一个人,甚至连一匹马都没能幸免。"},{"primary":"somehow","secondary":"Jayson only hoped that he could somehow get her home, into her own bed, before she died.","answer":"不知怎么的\n\n杰森只希望能在她去世前,想办法把她送回家,让她躺回自己的床上。"},{"primary":"hematite","secondary":"To his rubbing fingers, the hematite felt truly liquid then, and inviting.","answer":"赤铁矿\n\n在他摩挲的手指下,赤铁矿当时仿佛真的像液体一样,令人心驰神往。"},{"primary":"strike","secondary":"Juraviel didn't have to look Tuntun's way to know her pose, for the obstinate elf struck it often.","answer":"罢工\n\n尤拉维尔无需看向咕噜咕噜,便知道她摆出了什么姿势,因为这位固执的精灵经常摆出那个姿势。"},{"primary":"yer","secondary":"I'll take yer watch.\"\n\nJill knew better.","answer":"位置\n\n“我拿走你的表吧。”\n\n吉尔心里有数。"},{"primary":"memory","secondary":"His faith was intact and solid, and so he was not desecrating the memory of his mother.","answer":"记忆\n\n他的信仰坚定不移,因此他并没有玷污母亲的在天之灵。"},{"primary":"shadow","secondary":"Elbryan went left, shadowing a group of three.","answer":"阴影\n\n埃尔布莱恩向左走去,紧跟在一群三人身后。"},{"primary":"mother","secondary":"Elbryan held his breath, thinking that Pony's mother, often stern, would scold the girl severely.","answer":"母亲\n\n埃尔布莱恩屏住了呼吸,心想通常很严厉的波妮的母亲肯定会狠狠地训斥这个女孩。"},{"primary":"finished","secondary":"All too soon, before he had even finished with the first basket, his forearms ached from the effort.","answer":"完成\n\n还没等他完成第一个篮筐,他的前臂就因用力过猛而酸痛起来。"},{"primary":"slowly","secondary":"He moved slowly, quietly, away from Carley's body, taking cover behind a larger tree.","answer":"慢慢地\n\n他动作缓慢而悄无声息地离开卡莉的尸体,躲到一棵大树后面。"},{"primary":"floor","secondary":"He was on the floor then, but did not know how he had gotten there.","answer":"楼层\n\n当时他躺在地上,却不知道自己是怎么到那里的。"},{"primary":"perfectly","secondary":"Elbryan and Jilseponie stood perfectly still, stricken.","answer":"完美地\n\n埃尔布莱恩和吉尔塞波妮一动不动地站着,惊呆了。"},{"primary":"stare","secondary":"Master Jojonah settled back on his heels but met the penetrating stare firmly.","answer":"状态\n\n乔乔纳大师向后退了一步,却依然坚定地迎接着那道锐利的目光。"},{"primary":"cold","secondary":"She reached deeper, perhaps a foot and a half down, and her hand met cold, wet ground.","answer":"冷\n\n她把手伸得更深,大概有一英尺半深,手掌触碰到冰冷潮湿的地面。"},{"primary":"different","secondary":"Protests, laughter, taunts all came back in reply from many different places.","answer":"不同的\n\n抗议声、笑声和嘲讽声从四面八方此起彼伏。"},{"primary":"likely","secondary":"If Quintall tried to sneak in and push that crank, it would likely cost them both their meal.","answer":"可能\n\n如果昆塔尔试图偷偷溜进去转动那个曲柄,很可能导致他们俩都吃不上饭。"},{"primary":"magical","secondary":"Elbryan conferred with Avelyn first, to confirm the potential of the magical stones.","answer":"神奇的\n\n埃尔布莱恩先与艾维琳商量了一番,以确认这些魔法石的潜力。"},{"primary":"shift","secondary":"The kiss shifted, from curiosity to urgency, then back to gentleness.","answer":"shift\n\n那个吻的氛围发生了变化,从好奇转为迫切,又回到了温柔。"},{"primary":"watched","secondary":"Pony paused and watched him, confused\n\na at first.","answer":"观看\n\n小马停下脚步,一脸困惑地看着他\n\n起初。"},{"primary":"immediately","secondary":"Pony lost sight of her father immediately, mercifully.","answer":"立即\n\n幸运的是,小马立刻就没再看到她父亲的身影。"},{"primary":"chest","secondary":"Its chin came to rest on its chest, and it held the kneeling pose, quite dead.","answer":"这个\n\n它的下巴垂在胸前,保持着跪着的姿势,显然已经死了。"},{"primary":"fire","secondary":"Someone like Quintall, a young' man full of fire and full of life.","answer":"四\n\n像昆塔尔这样的人,一个充满激情、朝气蓬勃的年轻人。"},{"primary":"question","secondary":"For the demonic creature in the cave, such questions hardly mattered.","answer":"问题\n\n对于洞穴里的那只恶魔般的生物来说,这些问题根本无关紧要。"},{"primary":"truth","secondary":"He felt a part of the larger and higher truths, a oneness with the universe.","answer":"真相\n\n他感到自己已成为更宏大、更崇高真理的一部分,与宇宙融为一体。"},{"primary":"consider","secondary":"She took a moment to consider where she was, whose house this was, and she stifled a sob.","answer":"考虑\n\n她停顿片刻,思忖着自己身在何处,这是谁的家,随即强忍住了一阵抽泣。"},{"primary":"closer","secondary":"He wanted to be closer to Pony, physically and emotionally.","answer":"更近\n\n他想在身体上和情感上都更接近波妮。"},{"primary":"wind","secondary":"He imagined the wind, the green treetop canopy speeding below him ...","answer":"风\n\n他想象着风,想象着脚下飞速掠过的绿树冠……"},{"primary":"sure","secondary":"Jill wasn't sure if she was glad of that or not.","answer":"好的\n\n吉尔不确定自己对此是该高兴还是不该高兴。"},{"primary":"army","secondary":"Dinoniel and much of his army had been consumed and destroyed, but the dactyl...","answer":"军队\n\n迪诺尼尔及其大部分军队已被吞噬并歼灭,但那只达克提尔……"},{"primary":"slope","secondary":"Over and over they rolled, tumbling down the slope, punching and thrashing.","answer":"斜率\n\n他们翻滚着,沿着斜坡滚落,一路上拳打脚踢、手舞足蹈。"},{"primary":"direction","secondary":"He caught the trunk of a young maple and swung about it, turning in the direction of the voice.","answer":"管理层\n\n他抓住一棵年轻枫树的树干,顺着树干转了一圈,朝声音传来的方向转了过去。"},{"primary":"quietly","secondary":"He moved slowly, quietly, away from Carley's body, taking cover behind a larger tree.","answer":"静静地\n\n他动作缓慢而悄无声息地离开卡莉的尸体,躲到一棵大树后面。"},{"primary":"sudden","secondary":"Elbryan resisted the sudden and inexplicable urge to run over and kiss Pony.","answer":"突然\n\n埃尔布莱恩强忍住那种突然涌上心头、又说不清道不明的冲动,没跑过去亲吻波尼。"},{"primary":"mile","secondary":"That done, he hoisted the last basket and started back the half mile to the trough.","answer":"英里\n\n做完这些,他扛起最后一个篮子,开始往回走,返回半英里外的水槽。"},{"primary":"below","secondary":"With great effort, Elbryan tore his gaze from the dreadful spectacle below and glanced all around.","answer":"下方\n\n埃尔布莱恩费了九牛二虎之力,才将视线从下方的惨状上移开,环顾四周。"},{"primary":"path","secondary":"Elbryan walked a crooked path to the food and stubbornly salvaged what he could.","answer":"路径\n\n埃尔布莱恩踉踉跄跄地走向食物,顽强地捡拾着能找到的一切。"},{"primary":"scream","secondary":"Everything was confusion, screams and cries of pain.","answer":"尖叫\n\n现场一片混乱,到处都是尖叫和痛苦的呻吟。"},{"primary":"ship","secondary":"They'll not let a ship sail from them, nor do they have room for prisoners!","answer":"船\n\n他们不允许船只从那里启航,而且也没有收容囚犯的空间!"},{"primary":"captain","secondary":"He went at once to the captain, demanding an explanation.","answer":"队长\n\n他当即去找船长,要求一个解释。"},{"primary":"notice","secondary":"Elbryan was glad that the distracted girl had not noticed his own shade of red.","answer":"通知\n\n埃尔布莱恩暗自庆幸,那个心不在焉的女孩并没有注意到他脸上的红晕。"},{"primary":"clearly","secondary":"Now she remembered her training, forced herself to think clearly and concisely.","answer":"显然\n\n此刻,她想起了自己的训练,强迫自己思路清晰、言简意赅。"},{"primary":"single","secondary":"Jilseponie moved first, a single, tiny step, her arm reaching out helplessly.","answer":"单身\n\n吉尔塞波妮率先动了,只迈出了一小步,手臂无助地伸了出去。"},{"primary":"corner","secondary":"She peeked around the corner and stood transfixed.","answer":"角落\n\n她探头望了望拐角处,顿时呆立不动。"},{"primary":"simple","secondary":"The woman was not simple, far from it.","answer":"简体\n\n那个女人绝非等闲之辈,远非如此。"},{"primary":"none","secondary":"They had to be for him, for they would obviously fit none other in Caer'alfar.","answer":"无\n\n这些东西肯定是为他准备的,因为在凯尔阿尔法,显然没有其他人能穿得下。"},{"primary":"blow","secondary":"He moved to blow out the candle, then changed his mind and settled back on the cot.","answer":"一击\n\n他正要伸手吹灭蜡烛,又改变主意,重新躺回了行军床上。"},{"primary":"dagger","secondary":"He could put a dagger in his hand and curl his arm in such a way that he might strike as the viper.","answer":"匕首\n\n他可以手持匕首,将手臂弯曲成某种姿势,一击便如毒蛇般迅猛。"},{"primary":"wood","secondary":"And there were other goblins in the woods, coming in a few at a time.","answer":"木头\n\n树林里还有其他哥布林,它们三三两两地涌来。"},{"primary":"rest","secondary":"Its chin came to rest on its chest, and it held the kneeling pose, quite dead.","answer":"其余\n\n它的下巴垂在胸前,保持着跪着的姿势,显然已经死了。"},{"primary":"angle","secondary":"Pony knew that she could not move it again from this new angle, and so she didn't even try.","answer":"角度\n\n小马知道从这个新角度再也挪不动它了,所以她连试都没试。"},{"primary":"cross","secondary":"It moved nimbly from branch to branch, crossing over to nearby trees with barely a whisper.","answer":"十字\n\n它敏捷地在树枝间穿梭,几乎不发出一丝声响,便跃到了附近的树上。"},{"primary":"spear","secondary":"After a moment of shock, the goblins had thrown their spears, injuring one man.","answer":"长矛\n\n经过片刻的惊愕,哥布林们扔出了长矛,击伤了一名男子。"},{"primary":"tip","secondary":"How her blue eyes widened when she saw the pole's tip come up to meet her descent!","answer":"类型\n\n当她看到杆子的一端迎着她的下落升起时,那双蓝眼睛顿时睁得大大的!"},{"primary":"duty","secondary":"He found strength in duty, and that duty lay in burying the dead.","answer":"职责\n\n他从职责中汲取力量,而这份职责就是安葬死者。"},{"primary":"approach","secondary":"Five running strides brought him to the goblin, who didn't hear his approach until the last second.","answer":"方法\n\n他只用了五步就冲到了那只哥布林面前,哥布林直到最后一刻才听到他的脚步声。"},{"primary":"quiet","secondary":"Behind them, Dundalis sat quiet and dark.","answer":"安静\n\n在他们身后,邓达利斯静静地矗立着,一片幽暗。"},{"primary":"anything","secondary":"How could anyone, or anything, that could pipe so beautifully pose a danger?","answer":"任何东西\n\n能吹奏出如此美妙乐声的人或物,怎么可能构成威胁呢?"},{"primary":"gaze","secondary":"Elbryan turned to follow her gaze, and he, too, could not suppress a grin.","answer":"气体\n\n埃尔布莱恩转过身顺着她的目光望去,他也忍不住露出了笑容。"},{"primary":"new","secondary":"He needed something new, something Tuntun had not seen from him and could not expect.","answer":"新\n\n他需要一些新东西,一些咕咕从未在他身上见过、也始料未及的东西。"},{"primary":"enter","secondary":"She lived on, in sickness, only to see me enter the Order of St.-Mere-Abelle.","answer":"输入\n\n她病恹恹地活了下来,只为亲眼看到我加入圣梅尔-阿贝尔修会。"},{"primary":"distance","secondary":"With a grimace of determination, Elbryan halved the distance to his foe.","answer":"距离\n\n埃尔布莱恩咬紧牙关,神情坚定,瞬间缩短了与对手之间的距离。"},{"primary":"hair","secondary":"Avelyn's brown robes were tattered and dripping; he had the stench of burned hair about him.","answer":"头发\n\n艾维琳那件棕色长袍破破烂烂,湿漉漉的;他身上散发着焦发刺鼻的气味。"},{"primary":"barely","secondary":"It floated through-the chill air, barely perceptible.","answer":"勉强\n\n它飘过那刺骨的寒风,几乎难以察觉。"},{"primary":"kick","secondary":"Pony spun and jumped on it, flailing wildly with both fists, kicking and kneeing viciously.","answer":"踢\n\n波尼转身扑了上去,双拳疯狂挥舞,又猛烈地踢打和膝击。"},{"primary":"field","secondary":"He had two score lined up in the field, and so he decided to bury them alone.","answer":"字段\n\n他在田里排好了二十具尸体,于是决定独自将它们埋葬。"},{"primary":"swing","secondary":"He caught the trunk of a young maple and swung about it, turning in the direction of the voice.","answer":"摆动\n\n他抓住一棵年轻枫树的树干,顺着树干转了一圈,朝声音传来的方向转了过去。"},{"primary":"deck","secondary":"He looked at the flustered young monk, then across the deck at the other three.","answer":"甲板\n\n他看了看那名手足无措的年轻僧人,又环视甲板上的另外三人。"},{"primary":"real","secondary":"This time, the screams were real.","answer":"真实的\n\n这次,尖叫声是真实的。"},{"primary":"shrug","secondary":"Olwan snorted and shrugged his muscular shoulders.","answer":"耸肩\n\n奥尔万嗤笑一声,耸了耸他那结实的肩膀。"},{"primary":"kiss","secondary":"His thoughts careened suddenly back to Pony and the kiss at the twin pines atop the ridge.","answer":"吻\n\n他的思绪突然又回到了波尼身上,以及在山脊顶端那两棵松树下的那个吻。"},{"primary":"admit","secondary":"Pony was a girl, after all, and though Elbryan would openly admit that she was a friend, such deeper feelings were truly horrifying.","answer":"承认\n\n毕竟波妮是个女孩,虽然埃尔布莱恩会公开承认她是朋友,但这种更深层的情感确实令人毛骨悚然。"},{"primary":"score","secondary":"He had two score lined up in the field, and so he decided to bury them alone.","answer":"分数\n\n他在田里排好了二十具尸体,于是决定独自将它们埋葬。"},{"primary":"growl","secondary":"With a growl, Avelyn pushed on, finally reaching the tiring Quintall.","answer":"(名词)动物喉咙里发出的低沉、隆隆作响且充满威胁的声音。\n\n艾维琳低吼一声,继续前行,终于抵达了令人疲惫的昆塔尔。"},{"primary":"join","secondary":"All the forest seemed to join in - the gusty breezes, the birdsong, the croaking of frogs.","answer":"(名词) 管道或电线的交汇点;连接点。\n\n整片森林仿佛都融入其中——阵阵微风、鸟儿的婉转歌声,还有青蛙的呱呱叫声。"},{"primary":"cave","secondary":"For the demonic creature in the cave, such questions hardly mattered.","answer":"(名词)地下、悬崖或山坡上自然形成的大型空洞。\n\n对于洞穴里的那只恶魔般的生物来说,这些问题根本无关紧要。"},{"primary":"narrow","secondary":"Its head, too, was somewhat human, except more angular, with a narrow jaw and pointed chin.","answer":"(名词) (多用复数形式) 狭窄的水道,尤其是河流、湖泊或海洋中狭窄的部分;连接两个水体的海峡。\n\n它的头部也颇具人形,只是轮廓更为棱角分明,下颌狭窄,下巴尖尖的。"},{"primary":"glow","secondary":"He dressed quickly, fumbling with his clothes in the red light of the hearth's glowing embers.","answer":"(名词) 发光物体的状态。\n\n他匆匆穿好衣服,在壁炉余烬泛出的红光下笨拙地摆弄着衣物。"},{"primary":"tear","secondary":"The black-winged demon looked down at a darker red tear marring its otherwise smooth hide.","answer":"(名词) 因撕裂而形成的孔洞或破口。\n\n那只黑翼恶魔低头看着一滴更深的红色泪珠,它正玷污着那原本光滑的皮毛。"},{"primary":"fomorian","secondary":"Finally, the stinging ended, and the fomorian tried to move forward, back toward its prey.","answer":"福莫里亚人\n\n终于,刺痛感消失了,那个福莫里亚人试图向前移动,朝它的猎物走去。"},{"primary":"pace","secondary":"Work in the village was at full pace, readying for winter.","answer":"(名词) 步。\n\n村里正紧锣密鼓地忙碌着,为过冬做准备。"},{"primary":"ridge","secondary":"The girl was not looking ahead, though, but at the ridge to the south behind them.","answer":"(名词) 任何动物的背部;尤指四足动物背部的上部或凸出的部分。\n\n然而,那个女孩并没有望向前方,而是望着他们身后南边的山脊。"},{"primary":"darkness","secondary":"It had awakened, darkness rising, and already its influence was spreading throughout Corona.","answer":"(名词) 黑暗的状态;缺乏光线。\n\n它已然苏醒,黑暗正在蔓延,其影响已席卷整个科罗纳。"},{"primary":"gray","secondary":"The day was late, and gray clouds were rolling in to hide the afternoon sun.","answer":"(名词) 介于黑与白之间的无色。\n\n时近黄昏,灰蒙蒙的云层滚滚而来,遮住了午后的阳光。"},{"primary":"motion","secondary":"Elbryan looked at Pony, who seemed to be growing quite bored by it all, and motioned to the door.","answer":"(名词) 从一地向另一地移动的过程。\n\n埃尔布莱恩看了看波尼——他似乎对这一切越来越感到厌烦——然后朝门边示意。"},{"primary":"howl","secondary":"The fomorian charged ahead with a tremendous, hideous howl, its cudgel going high.","answer":"(名词) 狗或狼发出的绵长而悲伤的嚎叫,或其他类似的声音。\n\n那只福莫里亚人发出震耳欲聋的恐怖嚎叫,挥舞着棍棒冲了上来。"},{"primary":"forth","secondary":"Jojonah nearly laughed aloud at the spectacle, and held forth the hematite.","answer":"(副词)在时间、地点或程度上向前。\n\n乔乔纳看到这一幕,差点笑出声来,随即举起了那块赤铁矿。"},{"primary":"energy","secondary":"Elbryan halted in mid-spin, reversed his energy, and sent the staff straight out and back.","answer":"(名词) 一切运动和活动背后的驱动力。\n\n埃尔布莱恩在旋转中途停了下来,调转身势,将法杖笔直地向前一挥,又迅速收回。"},{"primary":"muscle","secondary":"The monk crouched low, bent his legs, and tightened his muscles, measuring the dog's swift approach.","answer":"(名词) 动物用于实现运动的一种具有收缩能力的组织。\n\n僧人蹲低身子,屈起双腿,绷紧肌肉,密切注视着那条飞奔而来的狗。"},{"primary":"certainly","secondary":"The wicked goblins certainly, so full of anger and greed, so delighting in murder and war.","answer":"(副词)以一种确定的方式;肯定地。\n\n那些邪恶的哥布林确实如此,满腔怒火与贪婪,沉迷于杀戮与战争。"},{"primary":"obviously","secondary":"Indeed, the two seemed obviously mismatched.","answer":"(副词) 以显而易见或一目了然的方式。\n\n确实,这两个人看起来显然是不搭调的。"},{"primary":"common","secondary":"The Forest Ghost was a common legend in the Timberlands.","answer":"(名词)共同利益,由多人共享。\n\n“森林幽灵”是蒂姆伯兰地区广为流传的一个传说。"},{"primary":"carry","secondary":"Quintall was carrying over the nighttime rivalry.","answer":"(名词) 搬运或提起某物的做法;搬运某物时的手法或姿势。\n\n昆塔尔延续了这场夜间的较量。"},{"primary":"choose","secondary":"His direction chosen, he started off, determined to find the singer.","answer":"(动词) 挑选;做出选择;选定。\n\n方向一定,他便动身出发,决心找到那位歌手。"},{"primary":"brown","secondary":"The land was relatively flat and brown, with sparse low shrubs poking here and there.","answer":"(名词) 一种类似巧克力或咖啡的颜色。\n\n这片土地相对平坦,呈褐色,零星点缀着稀疏的矮灌木。"},{"primary":"green","secondary":"As he spoke, the elf fingered a green stone, serpentine, feeling its subtle vibrations.","answer":"(形容词)颜色为绿色的。\n\n说话间,精灵手指轻抚着一块绿色的蛇纹石,感受着它细微的震动。"},{"primary":"care","secondary":"She didn't care, for she wasn't really running into battle.","answer":"(名词) 悲伤、哀痛。\n\n她并不在意,因为她其实并不是在奔赴战场。"},{"primary":"snap","secondary":"He moved quickly, stumbling - often and cursing himself silently for every stick snapping sound.","answer":"(名词) 一种短促的断裂声或咔嚓声,或发出这种声音的动作。\n\n他动作敏捷,却频频绊倒——每次听到树枝断裂的声响,他都会在心里暗自咒骂。"},{"primary":"position","secondary":"The night was dark about him; his neck ached from holding the position for so long.","answer":"位置\n\n夜色笼罩着他;因为长时间保持那个姿势,他的脖子感到酸痛。"},{"primary":"beast","secondary":"Dinoniel himself had come into this cave after the beast, had skewered the dactyl...","answer":"野兽\n\n迪诺尼尔亲自追着那头野兽闯进了这个洞穴,将那只指爪兽刺穿……"},{"primary":"chance","secondary":"Elbryan and his friends, some as young as six or seven, saw their chance unfolding.","answer":"机会\n\n埃尔布莱恩和他的朋友们——其中有些才六七岁——看到机会正在眼前展开。"},{"primary":"less","secondary":"Their course was more gentlemanly, less straightforward, but.","answer":"更少\n\n他们的行事风格更显绅士风度,不那么直来直去,不过……"},{"primary":"charge","secondary":"Out came the bear in full charge, roaring.","answer":"负载\n\n那头熊猛地冲了出来,咆哮着。"},{"primary":"rushing","secondary":"So many emotions and memories had come rushing to the surface.","answer":"匆忙\n\n无数的情感与回忆如潮水般涌上心头。"},{"primary":"important","secondary":"Master Jojonah shrugged; it was not important.","answer":"重要\n\n乔乔纳大师耸了耸肩;这不重要。"},{"primary":"protest","secondary":"Nonetheless, Jojonah began to protest again, but Markwart cut him short.","answer":"抗议\n\n尽管如此,乔乔纳又开始抗议,但马克瓦特打断了他。"},{"primary":"blue","secondary":"Avelyn looked back to see her stretched languidly on the bed, blue eyes sparkling.","answer":"蓝色\n\n艾维琳回头一看,只见她慵懒地躺在床上,蓝色的眼睛闪闪发光。"},{"primary":"view","secondary":"Pony shrugged, not willing to discount the possibility of giants, not after viewing a dead goblin.","answer":"查看\n\n波尼耸了耸肩,不愿排除巨人的可能性——毕竟他亲眼见过一只死去的哥布林。"},{"primary":"attention","secondary":"Shocked back to his senses, Avelyn turned his attention to the high roof directly below him.","answer":"注意\n\n阿维林猛然惊醒,回过神来,随即把目光投向正下方的高耸屋顶。"},{"primary":"guard","secondary":"It pleased her greatly to help out Elbryan, to guard his emotions.","answer":"守卫\n\n能帮助埃尔布莱恩、守护他的情绪,这让她感到非常高兴。"},{"primary":"stumble","secondary":"Pony ran off, stumbled and fell, then scrambled on all fours - anything to get away.","answer":"绊倒\n\n小马跑开了,绊了一跤摔倒在地,随即四肢着地爬了起来——只要能逃走,什么都行。"},{"primary":"herself","secondary":"Now she remembered her training, forced herself to think clearly and concisely.","answer":"她自己\n\n此刻,她想起了自己的训练,强迫自己思路清晰、言简意赅。"},{"primary":"abbey","secondary":"So foolish Avelyn wasn't really any serious threat to the abbey or to the Order.","answer":"修道院\n\n所以,那个愚蠢的艾维琳其实对修道院或教团并没有构成什么真正的威胁。"},{"primary":"shoot","secondary":"Only a coward would shoot from the boughs.","answer":"拍摄\n\n只有懦夫才会躲在树枝后开枪。"},{"primary":"crew","secondary":"Smealy pulled away, coughing and, predictably, turned to the crew for help.","answer":"剧组\n\n斯米利退后几步,咳嗽着,不出所料地向机组人员求助。"},{"primary":"friar","secondary":"The sheer power of the friar astounded Jill.","answer":"求婚\n\n那位修士的强大气势令吉尔惊叹不已。"},{"primary":"sun","secondary":"The boy believed the sun to be in the west, halfway from noon to sunset.","answer":"他们\n\n那个男孩以为太阳在西边,正处于正午和日落之间。"},{"primary":"expected","secondary":"It was heavier than Avelyn had expected, quite solid and dense.","answer":"预计\n\n它比艾维琳预想的要重,质地相当坚实且稠密。"},{"primary":"older","secondary":"The younger children came out in a mob, swarming around the older pair.","answer":"较旧的\n\n年幼的孩子们蜂拥而出,围在两个年长的孩子身边。"},{"primary":"really","secondary":"His next youngest sibling was seven years his senior, and so he wasn't really close to any of them.","answer":"真的\n\n他最小的兄弟姐妹比他大七岁,因此他跟他们谁都不太亲近。"},{"primary":"steal","secondary":"She stood and stared, and a numbness came over her, stealing her emotions.","answer":"偷\n\n她站着发呆,一种麻木感涌上心头,夺走了她的情感。"},{"primary":"tight","secondary":"Her husband held her tight then, understanding her pain, both physical and emotional.","answer":"紧\n\n那时,她的丈夫紧紧拥抱着她,深知她身心的双重痛苦。"},{"primary":"club","secondary":"Pony wasn't armed, having left her club back at the ridge.","answer":"俱乐部\n\n波妮身上没有武器,因为她把枪留在了山脊上的俱乐部里。"},{"primary":"stars","secondary":"They would sit and stare at the stars.","answer":"星星\n\n他们会坐着凝视星空。"},{"primary":"merchant","secondary":"When the ways of merchants turn cheating,\n\nWhen the legs of women bow,\n\nWhen gain is ill not just.","answer":"商户\n\n当商人的手段变得欺诈,\n\n当女子的双腿弯曲,\n\n当获利不仅不公,更是邪恶。"},{"primary":"grove","secondary":"They left the grove soon after, to find an evening meal.","answer":"树林\n\n不久后,他们便离开了树林,去寻找晚饭。"},{"primary":"wild","secondary":"What enemies had this wild monk made?","answer":"野生\n\n这位狂野的僧人究竟得罪了什么人?"},{"primary":"measure","secondary":"There would be a measure in this of his manhood, Avelyn realized, a test he could not fail.","answer":"度量\n\n艾维琳意识到,这将是他男子气概的试金石,一场他绝不能失败的考验。"},{"primary":"choice","secondary":"The young monk was a good choice, a God-given choice indeed, to go to Pimaninicuit.","answer":"选择\n\n这位年轻的僧人去皮马尼尼库特,确实是个明智的选择,甚至可以说是天赐良机。"},{"primary":"solid","secondary":"Its gray rock walls seemed to grow right from the solid stone, an extension of the earth's power.","answer":"实心\n\n它那灰色的岩壁仿佛直接从坚实的岩石中生长出来,仿佛是大地的力量的延伸。"},{"primary":"gentle","secondary":"Elbryan conceded the point, though he still thought Brody Gentle more bluster than truth.","answer":"温柔\n\n埃尔布莱恩承认了这一点,尽管他仍然认为布罗迪·詹特尔更多是虚张声势,而非实情。"},{"primary":"chapter","secondary":"CHAPTER 1 The Unexpected Kill\n\nElbryan Wyndon was up before the dawn.","answer":"章节\n\n第一章 意料之外的杀戮\n\n埃尔布莱恩·温登在黎明前就醒了。"},{"primary":"soft","secondary":"Then they heard a distant piping, soft music, perfect melody.","answer":"soft\n\n接着,他们听见远处传来一阵悠扬的笛声,轻柔的乐声,旋律完美无瑕。"},{"primary":"soldier","secondary":"There should have been a second sentry there, the relaying voice to the soldiers within.","answer":"士兵\n\n那里本该还有一名哨兵,负责向里面的士兵传递消息。"},{"primary":"longer","secondary":"Finally he stopped, realizing it was dead, that it could no longer hurt him.","answer":"更长\n\n最后,他停了下来,意识到那东西已经死了,再也伤害不了他了。"},{"primary":"notion","secondary":"He didn't want to do that; the last notion in his mind was to pull away.","answer":"概念\n\n他并不想那样做;他脑海中最后一个念头就是抽身离开。"},{"primary":"knowing","secondary":"For Elbryan, knowing Bradwarden was a wonderful thing indeed.","answer":"知道\n\n对埃尔布莱恩来说,能认识布拉德沃登确实是一件美事。"},{"primary":"throat","secondary":"Elbryan fell back behind the twin pines, catching the shout in his throat, gasping for breath.","answer":"喉咙\n\n埃尔布莱恩退到两棵松树后面,强忍住喉间的喊声,大口喘着气。"},{"primary":"bolt","secondary":"A short distance away, Elbryan sat bolt upright, confused.","answer":"商店\n\n不远处,埃尔布莱恩猛地坐直了身子,一脸茫然。"},{"primary":"island","secondary":"Brother Avelyn's thoughts were full of that island and of the long voyage ahead of him.","answer":"冰岛\n\n阿维林修士的思绪中,满是那座岛屿,以及前方漫长的航程。"},{"primary":"launch","secondary":"Bradwarden belched again, and then he launched into a long speech about the ills of humankind.","answer":"发布\n\n布拉德沃登又打了个嗝,接着便滔滔不绝地大谈人类的种种弊端。"},{"primary":"death","secondary":"CHAPTER 4 The Death of Dundalis\n\nElbryan and Pony were stunned and terrified for many seconds.","answer":"死亡\n\n第四章 邓达利斯的死\n\n埃尔布莱恩和波尼愣住了,恐惧笼罩着他们,足足有好几秒钟。"},{"primary":"white","secondary":"Elbryan saw the bright red gash, the white of split bone, the grayish brain.","answer":"白色\n\n埃尔布莱恩看见了那道鲜红的伤口、露出的白骨,还有灰蒙蒙的大脑。"},{"primary":"tone","secondary":"Still the tears came; every so often his even tone was broken by a sniffle or a sob.","answer":"语气\n\n眼泪还是止不住地流;他那平稳的语调时不时会被抽泣或啜泣打断。"},{"primary":"fact","secondary":"This is fact, it has begun and there can be no turning back.","answer":"事实\n\n这是事实,事情已经开始了,再也无法回头。"},{"primary":"wound","secondary":"Stupid badger, Elbryan thought, and stupid Pony for opening that wound once again.","answer":"伤口\n\n“蠢獾,”埃尔布莱恩心想,“还有那个蠢笨的波尼,居然又把那道伤口撕开了。”"},{"primary":"rolling","secondary":"The day was late, and gray clouds were rolling in to hide the afternoon sun.","answer":"滚动\n\n时近黄昏,灰蒙蒙的云层滚滚而来,遮住了午后的阳光。"},{"primary":"journey","secondary":"But Avelyn caught his fears in time and started the journey once more.","answer":"旅程\n\n但艾维琳及时察觉到了他的恐惧,于是再次踏上了旅程。"},{"primary":"sheer","secondary":"His hands grew clammy - more out of sheer fear than anticipation.","answer":"纯\n\n他的手心开始冒汗——这更多是出于纯粹的恐惧,而非期待。"},{"primary":"ear","secondary":"A soft melody vibrated in his ear, somewhere just below his consciousness.","answer":"耳朵\n\n一首柔和的旋律在他耳边回荡,就在他意识的边缘。"},{"primary":"insist","secondary":"Was it, as Siherton insisted, the young man's apparent inhumanity?","answer":"坚持\n\n难道正如西赫顿所坚持的那样,是因为那个年轻人表现出的冷酷无情吗?"},{"primary":"difficult","secondary":"Back at the trough, Elbryan began his more difficult work.","answer":"困难\n\n回到食槽旁,埃尔布莱恩开始了更艰巨的工作。"},{"primary":"gain","secondary":"Elbryan still could not navigate this area, but he was gaining some understanding.","answer":"超过\n\n埃尔布莱恩仍然无法在这片区域中找到方向,但他已逐渐有所领悟。"},{"primary":"snort","secondary":"She didn't miss Elbryan's third snort.","answer":"snort\n\n她没有漏听埃尔布莱恩的第三声鼻息。"},{"primary":"demand","secondary":"By right, Connor could have demanded her execution.","answer":"需求\n\n按理说,康纳本可以要求处决她。"},{"primary":"mirror","secondary":"There was something in the mirror, just beyond his vision!","answer":"镜子\n\n镜子里有什么东西,就在他视线范围之外!"},{"primary":"figure","secondary":"Quite a bit of juice might be ruined, but Juraviel figured the loss was worth it.","answer":"图\n\n虽然可能会浪费不少果汁,但尤拉维尔觉得这损失是值得的。"},{"primary":"stallion","secondary":"Then the great stallion leaped away, thundering back into the shadows, into the brush.","answer":"种马\n\n接着,那匹雄壮的骏马猛地跃开,如雷般奔回阴影之中,消失在灌木丛里。"},{"primary":"argue","secondary":"Theologians of Corona argued over whether the demon dactyl was the source or the result of evil.","answer":"争论\n\n科罗纳的神学家们就恶魔达克提尔究竟是邪恶的根源还是结果这一问题展开了争论。"},{"primary":"mouth","secondary":"Silently mouthing that litany, Elbryan inched his face toward the edge of the pine.","answer":"嘴巴\n\n埃尔布莱恩默默念着那段祷文,将脸慢慢凑向松树的边缘。"},{"primary":"song","secondary":"In the Way the hearth was always blazing, the beds were always soft, and the song was always loud.","answer":"歌曲\n\n在那条路上,炉火总是熊熊燃烧,床铺总是柔软舒适,歌声总是响亮欢快。"},{"primary":"dangerous","secondary":"Still, the vicious monk would have let it go, but then Tenegrid made a dangerous mistake.","answer":"危险的\n\n尽管如此,那个凶残的僧人本可以就此作罢,但随后特内格里德犯了一个致命的错误。"},{"primary":"staring","secondary":"Elbryan pulled back his trembling hand, staring wide-eyed at the bright blood that now covered it.","answer":"凝视\n\n埃尔布莱恩缩回颤抖的手,瞪大眼睛盯着手上那片鲜红的血迹。"},{"primary":"glad","secondary":"Elbryan was glad that the distracted girl had not noticed his own shade of red.","answer":"高兴\n\n埃尔布莱恩暗自庆幸,那个心不在焉的女孩并没有注意到他脸上的红晕。"},{"primary":"command","secondary":"This was his game, his force to command.","answer":"命令\n\n这是他的比赛,是他可以调动的兵力。"},{"primary":"higher","secondary":"He marveled at the loose structure of the wood, at the density of the higher room's tile floor.","answer":"更高\n\n他惊叹于木材的疏松质地,也惊叹于上层房间瓷砖地面的致密感。"},{"primary":"slap","secondary":"He turned about, regarding the giant, which was dancing and slapping at the air.","answer":"松弛\n\n他转过身,望着那个正在跳舞、挥手拍打空气的巨人。"},{"primary":"faith","secondary":"But the young man held faith and passed his hopes down the line.","answer":"信仰\n\n但这位年轻人始终坚信不移,并将希望传递给了后人。"},{"primary":"needed","secondary":"Jojonah's explanation for the tour had been weak, some remark about an area that needed cleaning.","answer":"所需\n\n乔乔纳对这次巡视的解释很牵强,只是含糊其辞地提到某个地方需要清理。"},{"primary":"apparently","secondary":"Avelyn calmed quickly; surely they did recognize the jewel, and apparently, it did not bother them.","answer":"显然\n\n艾维琳很快平静下来;他们显然认出了那颗宝石,而且看来并不介意。"},{"primary":"top","secondary":"She caught up to her friend at the top of the ridge.","answer":"顶部\n\n她在山脊顶端追上了她的朋友。"},{"primary":"thus","secondary":"They would be stranded in open water, and thus, surely doomed.","answer":"因此\n\n他们将困在开阔水域,因此注定难逃一死。"},{"primary":"destroy","secondary":"Dinoniel and much of his army had been consumed and destroyed, but the dactyl...","answer":"摧毁\n\n迪诺尼尔及其大部分军队已被吞噬并歼灭,但那只达克提尔……"},{"primary":"respect","secondary":"To completely lose the respect of Thagraine, or any of the others, could jeopardize it all.","answer":"(名词) 体贴或敬重的态度\n\n如果彻底失去塔格莱恩或其他任何人的尊重,可能会让一切化为泡影。"},{"primary":"softly","secondary":"Candlelight spilled out onto the road, softly illuminating the girl.","answer":"(副词) 轻柔地;温柔地。\n\n烛光洒落在路上,柔和地照亮了那个女孩。"},{"primary":"sigh","secondary":"She only sighed, though, and resignedly closed the cabin door.","answer":"(名词) 指深长而持续的吸气和呼气声;通常出现在感到疲惫、沮丧、悲伤或如释重负之时;即叹息的行为。\n\n不过,她只是叹了口气,然后无奈地关上了舱门。"},{"primary":"leape","secondary":"He would have leaped clear of the phony, only to drop heavily into the real one.","answer":"美丽\n\n他本想跳开那个假的,结果却重重地跌进了那个真的。"},{"primary":"block","secondary":"Blocked by the wall of the house, Pony couldn't follow the man's ascent.","answer":"(名词) 任何物质中体积较大、通常近似长方体的块状物。\n\n由于被房子的墙挡住了视线,波尼无法看到那个男人向上攀爬的情景。"},{"primary":"firmly","secondary":"Carley dan Aubrey, one of the younger scouts, staggered toward him, his face ashen, both hands clenched firmly to his right side at his waist.","answer":"(副词) (方式) 以坚定、明确或强有力的方式。\n\n卡利和奥布里——一名年轻的侦察兵——踉跄着向他走来,脸色苍白,双手紧紧攥在右侧腰间。"},{"primary":"tale","secondary":"Olwan Wyndon told the tale again in full to the gathering, trying hard not to embellish it.","answer":"(名词) 对某项被宣称的事实或情况的描述;传闻;报道,尤其是无聊或恶意的故事;闲话或诽谤;谎言。\n\n奥尔万·温登再次向在场众人完整地讲述了这个故事,努力没有添油加醋。"},{"primary":"best","secondary":"Brother Avelyn is the best of the lot.\"\n\nThe words stung Siherton profoundly.","answer":"(名词) 一个人所能做出的,或已经做出的最大努力。\n\n“阿维林兄弟是其中最出色的。”\n\n这句话深深刺痛了西赫顿。"},{"primary":"yell","secondary":"He tried to yell out in protest, but had no breath.","answer":"(名词) 一声喊叫。\n\n他试图大声抗议,却喘不过气来。"},{"primary":"rise","secondary":"It had awakened, darkness rising, and already its influence was spreading throughout Corona.","answer":"(动词)相对于地面,身体向上移动或看似向上移动。\n\n它已然苏醒,黑暗正在蔓延,其影响已席卷整个科罗纳。"},{"primary":"training","secondary":"Now she remembered her training, forced herself to think clearly and concisely.","answer":"(动词) 练习某项技能。\n\n此刻,她想起了自己的训练,强迫自己思路清晰、言简意赅。"},{"primary":"tumble","secondary":"Over and over they rolled, tumbling down the slope, punching and thrashing.","answer":"(名词) 跌倒,尤其是头朝下翻滚。\n\n他们翻滚着,沿着斜坡滚落,一路上拳打脚踢、手舞足蹈。"},{"primary":"target","secondary":"The very next day, Elbryan hit the target two out of every three shots.","answer":"(名词) 用于射击的目标,例如用于练习,或用于测试枪支的精度或弹丸的威力。\n\n就在第二天,埃尔布莱恩每投三球就有两球命中。"},{"primary":"study","secondary":"Elbryan and Pony lingered long by the corpse, studying it intently.","answer":"(动词)(通常用于学术场合)复习已学内容,以确保自己不会遗忘,通常是为了备考。\n\n埃尔布莱恩和波尼在尸体旁久久驻足,仔细端详着。"},{"primary":"promise","secondary":"To untwist hearts from grasping sorrow,\n\nTo offer the promise of the morrow?","answer":"(名词) 誓言或保证;誓约\n\n让心灵从紧握的悲伤中解脱,\n\n为明天许下承诺?"},{"primary":"task","secondary":"If that failed, the next task was to save as many individuals as possible.","answer":"(名词) 作为工作职责的一部分所完成的一项工作。\n\n如果那招行不通,接下来的任务就是尽可能多地拯救生命。"},{"primary":"growing","secondary":"Elbryan looked at Pony, who seemed to be growing quite bored by it all, and motioned to the door.","answer":"(动词)变大,规模扩大。\n\n埃尔布莱恩看了看波尼——他似乎对这一切越来越感到厌烦——然后朝门边示意。"},{"primary":"dawn","secondary":"He awoke with the dawn - and with resolve.","answer":"(名词) 日出前的晨曦时分。\n\n他随着黎明醒来——心中充满决心。"},{"primary":"tiny","secondary":"The place was not bright, having only a handful of tiny windows set high up on the tall walls.","answer":"(名词)幼儿;婴儿。\n\n那里光线昏暗,高耸的墙壁上只开着寥寥几扇小窗。"},{"primary":"big","secondary":"Tuntun had little fondness for the big, bumbling humans.","answer":"(名词) 身材高大的人或物\n\n嘟嘟对那些笨手笨脚的大个子人类没什么好感。"},{"primary":"stride","secondary":"Five running strides brought him to the goblin, who didn't hear his approach until the last second.","answer":"(动词)大步走。\n\n他只用了五步就冲到了那只哥布林面前,哥布林直到最后一刻才听到他的脚步声。"},{"primary":"dive","secondary":"Something daring, even desperate, like the shadow dive Tallareyish had used to defeat him.","answer":"(名词) 跳入或扑入水中的动作。\n\n某种大胆甚至近乎绝望的招数,就像塔拉雷伊什当年用来击败他的“影之潜行”那样。"},{"primary":"catapult","secondary":"Stay back from the catapults, I warn you.","answer":"(名词)一种用于投掷或发射大型物体的装置或武器,例如航空母舰上用于协助飞机从飞行甲板起飞的机械装置。\n\n离弩远点,我警告你。"},{"primary":"danger","secondary":"I hold no comforting illusions; that group is in danger as great as my own.","answer":"(名词) 面临可能的伤害;危险。\n\n我没有抱任何自欺欺人的幻想;那群人面临的危险,和我自己一样大。"},{"primary":"couple","secondary":"They sat together, yet apart, separated by a couple of feet and by the wall of Elbryan's confusion.","answer":"(名词)处于恋爱或性关系中的双方。\n\n他们并肩而坐,却又若隔千山万水,之间隔着几英尺的距离,更隔着埃尔布莱恩心中那道困惑筑起的墙。"},{"primary":"wings","secondary":"He noted the elf's spring, heard the wings fluttering.","answer":"翅膀\n\n他注意到精灵的轻盈步伐,听见了翅膀的扑动声。"},{"primary":"covered","secondary":"The giant's hand covered the tall man's entire forearm.","answer":"已涵盖\n\n那只巨人的手几乎盖住了那个高个子男人的整个前臂。"},{"primary":"itself","secondary":"The demon spirit fell deep within itself, summoned its powers, both physical and magical.","answer":"本身\n\n恶魔沉入内心深处,调动起自身的力量,无论是肉体之力还是魔法之力。"},{"primary":"skin","secondary":"Avelyn thought his very skin would slip off his body, a great rag, and fall rumpled to the deck.","answer":"皮肤\n\n艾维琳觉得他的皮肤仿佛要从身上滑落,像一块巨大的破布,褶皱着掉落在甲板上。"},{"primary":"source","secondary":"Theologians of Corona argued over whether the demon dactyl was the source or the result of evil.","answer":"来源\n\n科罗纳的神学家们就恶魔达克提尔究竟是邪恶的根源还是结果这一问题展开了争论。"},{"primary":"number","secondary":"She noted the great numbers of dead goblins, even a couple of giants.","answer":"数字\n\n她注意到有大量死去的哥布林,甚至还有一两个巨人。"},{"primary":"sea","secondary":"But the old sea dog couldn't fathom the level of physical training these four men had endured.","answer":"即\n\n但这位老水手实在无法想象这四个人经历了多么严酷的体能训练。"},{"primary":"desperately","secondary":"Pony ran on desperately, blinded by tears.","answer":"极力地\n\n波尼泪眼朦胧,拼命地跑着。"},{"primary":"inside","secondary":"And a large one; there had to be forty people inside, filling the tavern from wall to wall.","answer":"内部\n\n而且规模不小;里面至少有四十个人,把酒馆挤得水泄不通。"},{"primary":"lines","secondary":"There were no lines of defense anymore, no organized pockets of resistance.","answer":"行\n\n再也没有防线了,也没有有组织的抵抗据点。"},{"primary":"feared","secondary":"But still she feared that his decision was folly, based on his underestimating the pain within her.","answer":"害怕\n\n但她仍然担心,他的决定是愚蠢的,因为他低估了她内心的痛苦。"},{"primary":"slow","secondary":"Elbryan knew it, yet he did not slow his pace and did not alter his course.","answer":"慢\n\n埃尔布莱恩心知肚明,但他既没有放慢脚步,也没有改变方向。"},{"primary":"lie","secondary":"It was a lie, Elbryan knew, all of it.","answer":"谎言\n\n埃尔布莱恩知道,那全是谎言,每一句都是。"},{"primary":"late","secondary":"Elbryan's father had assured him that Wyndon boys were normally late in sprouting.","answer":"晚些时候\n\n埃尔布莱恩的父亲曾向他保证,温登家的男孩通常发育较晚。"},{"primary":"accept","secondary":"Avelyn nodded, accepting the news.","answer":"接受\n\n艾维琳点了点头,接受了这个消息。"},{"primary":"weight","secondary":"When the goblin came over, its own weight forced it down on Elbryan's sword.","answer":"重量\n\n当那只哥布林扑过来时,它自身的重量把它压在了埃尔布莱恩的剑上。"},{"primary":"save","secondary":"If that failed, the next task was to save as many individuals as possible.","answer":"自己\n\n如果那招行不通,接下来的任务就是尽可能多地拯救人员。"},{"primary":"gather","secondary":"What creatures could the dactyl gather this time to wage its war?","answer":"收集\n\n这次,达克提尔会召集哪些生物来发动战争呢?"},{"primary":"burn","secondary":"Again it was the smell of his burning village that cleared his head.","answer":"燃烧\n\n又是他家村庄燃烧的气味,让他头脑清醒过来。"},{"primary":"pole","secondary":"The object on the fourth shoulder pole, each man realized, would be enough to get the lesson across.","answer":"没有\n\n每个人都意识到,第四根肩扛杆上的那个物件,足以让人明白这个道理。"},{"primary":"band","secondary":"He heard the footsteps as the band of pursuing goblins closed the distance to him.","answer":"乐队\n\n他听见脚步声,那群追赶他的哥布林正一步步逼近。"},{"primary":"merely","secondary":"His expression blank, he merely shrugged.","answer":"仅仅\n\n他面无表情,只是耸了耸肩。"},{"primary":"neck","secondary":"He caressed her neck, ran his hand down her side and along the outside of her strong leg.","answer":"脖子\n\n他轻抚她的脖颈,手掌顺着她的腰侧滑下,沿着她那条结实的大腿外侧抚过。"},{"primary":"diamond","secondary":"He considered the stones Master Siherton had carried to the ship: a diamond and a smoky quartz.","answer":"钻石\n\n他端详着西赫顿大师带到船上的两块宝石:一颗钻石和一颗烟晶。"},{"primary":"rope","secondary":"He tucked his hands into his rope belt, taking on an important attitude.","answer":"绳子\n\n他把双手插进绳编腰带里,摆出一副郑重其事的样子。"},{"primary":"camp","secondary":"She came into the camp quietly and moved right across the way from him without a word.","answer":"营地\n\n她悄悄走进营地,一言不发地径直走到他正对面的位置。"},{"primary":"easy","secondary":"The daytime training was not as easy or as inspiring for Avelyn.","answer":"简单\n\n对于艾维琳来说,白天的训练既不轻松,也不那么令人振奋。"},{"primary":"present","secondary":"Winter was still present in this part of Andur'Blough Inninness, but its grip was fast loosening.","answer":"当前\n\n在安杜尔布洛·因尼内斯这一带,冬意犹存,但寒意正迅速消退。"},{"primary":"perfect","secondary":"Then they heard a distant piping, soft music, perfect melody.","answer":"完美\n\n接着,他们听见远处传来一阵悠扬的笛声,轻柔的乐声,旋律完美无瑕。"},{"primary":"evil","secondary":"It told him these creatures were not of the evil goblin race; these were friends to be trusted.","answer":"邪恶\n\n它告诉他,这些生物并非邪恶的哥布林一族;它们是值得信赖的朋友。"},{"primary":"vale","secondary":"On the ridge and in the vale beyond, the primary enemy became boredom.","answer":"错误\n\n在山脊上以及山谷的另一端,最大的敌人变成了无聊。"},{"primary":"nearby","secondary":"It moved nimbly from branch to branch, crossing over to nearby trees with barely a whisper.","answer":"附近\n\n它敏捷地从一枝跳到另一枝,几乎不发出一丝声响,便跃到了附近的树上。"},{"primary":"particularly","secondary":"These weren't particularly nasty traps, designed more to embarrass than to injure.","answer":"特别是\n\n这些陷阱并不算特别恶毒,其设计目的更多是为了让人难堪,而非造成伤害。"},{"primary":"clutch","secondary":"He looked to Jojonah and saw that the master was clutching the chrysoberyl close to his heart.","answer":"离合器\n\n他看向乔乔纳,只见那位大师正将金绿宝石紧贴在胸口。"},{"primary":"questions","secondary":"Avelyn asked no questions, nor did Quintall, who was swimming hard for the rope.","answer":"问题\n\n艾维琳没有问任何问题,昆塔尔也没有,他正拼命游向那根绳子。"},{"primary":"grimly","secondary":"He could make it, he told himself grimly.","answer":"阴沉地\n\n“他一定能行,”他阴沉地对自己说。"},{"primary":"appear","secondary":"When would that bucket finally appear?","answer":"出现\n\n那个水桶到底什么时候才会出现?"},{"primary":"calm","secondary":"Olwan started away, and McMichael calmed and moved to follow.","answer":"平静\n\n奥尔万率先跑开,麦克迈克尔镇定下来,跟了上去。"},{"primary":"familiar","secondary":"Elbryan didn't answer, but that familiar sparkle fit up his eyes.","answer":"家庭\n\n埃尔布莱恩没有回答,但那双眼睛里闪烁着那熟悉的灵光。"},{"primary":"aim","secondary":"Elbryan looked at him curiously; of course he was aiming at the target!","answer":"目标\n\n埃尔布莱恩好奇地看着他;他当然是在瞄准目标!"},{"primary":"defeat","secondary":"Back left, back right, each time the angle shifting to defeat the intended attack.","answer":"失败\n\n向左后方、向右后方,每次都改变角度以化解预期的攻击。"},{"primary":"inch","secondary":"Silently mouthing that litany, Elbryan inched his face toward the edge of the pine.","answer":"英寸\n\n埃尔布莱恩默默念着那段祷文,将脸慢慢凑向松树的边缘。"},{"primary":"dance","secondary":"Dark thoughts could not be sustained in the place where Juraviel's people danced and played.","answer":"舞蹈\n\n在朱拉维尔的人民载歌载舞的地方,阴暗的念头无法存续。"},{"primary":"suspected","secondary":"She knew her name now; and suspected that alone would begin to bring other memories back to her.","answer":"涉嫌\n\n她现在知道自己的名字了;她怀疑,光是这一点,就足以开始唤回她其他的记忆。"},{"primary":"remind","secondary":"Around and around the weapons went, reminding Elbryan of her uncanny dexterity.","answer":"提醒\n\n武器在空中不断旋转,让埃尔布莱恩不禁感叹她那超凡的灵巧。"},{"primary":"cover","secondary":"Then he wanted to turn back, to run into the hollow and cover his face.","answer":"封面\n\n接着,他想转身,冲进山谷里,用手捂住脸。"},{"primary":"further","secondary":"She rolled to the lip of the ledge, pulled her mask further down, and vomited.","answer":"此外\n\n她滚到悬崖边缘,把面罩往下拉了拉,然后呕吐起来。"},{"primary":"certain","secondary":"He paused and listened hard, certain there was something out there beyond his vision.","answer":"某些\n\n他停下脚步,侧耳倾听,确信视线之外一定有什么东西。"},{"primary":"ride","secondary":"Symphony would come back to him, he knew, would let him ride again, but.","answer":"骑行\n\n他知道,辛菲尼会回到他身边,会让他再次骑上马,但是……"},{"primary":"gently","secondary":"She cupped Elbryan's chin in one hand and gently turned him back to face her.","answer":"轻柔地\n\n她单手托起埃尔布莱恩的下巴,轻轻地将他转过来面对自己。"},{"primary":"connect","secondary":"She heard the crack of bone as her knee connected with his face.","answer":"连接\n\n她的膝盖撞上他的脸时,她听到了骨头断裂的声音。"},{"primary":"fill","secondary":"Scores and scores of small arrows, filling the air all about him!","answer":"填充\n\n成百上千支小箭,密密麻麻地填满了他周围的空气!"},{"primary":"masters","secondary":"To see such human frailty in the masters of St.-Mere-Abelle touched the very core of Avelyn's faith.","answer":"硕士\n\n在圣梅尔-阿贝尔的主人身上看到这种人类的脆弱,深深触动了阿维琳信仰的核心。"},{"primary":"warn","secondary":"Sometime later, as dusk descended, Pony's senses warned her that she was not alone.","answer":"警告\n\n过了一会儿,黄昏降临,波妮的直觉告诉她,她并不孤单。"},{"primary":"hill","secondary":"He moved up the side of one steep hill, peering intently into every shadow.","answer":"山丘\n\n他沿着一座陡峭的山坡向上攀爬,目光紧盯着每一个阴影。"},{"primary":"base","secondary":"Pony fell to her knees and began to scrape the ground at the base of Olwan's house.","answer":"基础\n\n波妮跪倒在地,开始在奥尔万家屋檐下的地面上刮擦。"},{"primary":"desire","secondary":"Elbryan felt no desire to tease when looking at Pony's lips now.","answer":"渴望\n\n此刻,埃尔布莱恩看着波尼的嘴唇,心中再无半分戏弄之意。"},{"primary":"empty","secondary":"Avelyn ran from the chapel, skittering down the empty halls, his footsteps echoing noisily.","answer":"空\n\n阿维林从小教堂里跑出来,沿着空荡荡的走廊飞快地跑着,脚步声在走廊里回荡,响彻耳际。"},{"primary":"thrust","secondary":"Then he sent it straight out a second time, cutting short the thrust as the elf predictably ducked.","answer":"推力\n\n接着,他再次直刺而出,就在精灵如预料中那般闪身躲避时,他猛地收住了剑锋。"},{"primary":"mere","secondary":"Did such a thing as the Halo even exist, or was her memory a mere fantasy?","answer":"更多\n\n“光环”这种东西真的存在过吗,还是说她的记忆不过是场幻觉?"},{"primary":"warm","secondary":"He felt warm suddenly, a bit dizzy, a bit frightened.","answer":"温暖\n\n他突然感到一阵暖意,有些头晕,还有点害怕。"},{"primary":"snow","secondary":"Brother Justice knifed his hand into her throat, dropping her back to the snow and dirt.","answer":"雪\n\n正义兄弟将手刀劈向她的喉咙,将她摔回了积雪和泥土之中。"},{"primary":"stick","secondary":"He moved quickly, stumbling - often and cursing himself silently for every stick snapping sound.","answer":"棍子\n\n他动作敏捷,却频频绊倒——每次听到树枝断裂的声响,他都会在心里暗自咒骂自己。"},{"primary":"meal","secondary":"You have a few minutes left for your midday meal.\"\n\nAvelyn bowed deeply and exited the room.","answer":"餐\n\n“你还有几分钟时间吃午饭。”\n\n艾维琳深深鞠了一躬,然后走出了房间。"},{"primary":"jump","secondary":"She reflexively cocked a fist, and Elbryan wisely jumped back.","answer":"跳转\n\n她下意识地握紧了拳头,埃尔布莱恩机敏地向后跳开。"},{"primary":"grin","secondary":"Pony grinned warmly, hoping he was right.","answer":"笑\n\n小马露出了温暖的笑容,希望自己说得没错。"},{"primary":"vision","secondary":"Every dip and sudden rise blurred his vision, scrambled his thoughts.","answer":"愿景\n\n每次下沉和骤然上升都让他视线模糊,思绪混乱。"},{"primary":"slam","secondary":"He hit the ground in a roll but slammed hard against a tree trunk as he came around.","answer":"愿平安与你同在\n\n他翻滚着落地,但刚翻过身来,便重重地撞上了一棵树干。"},{"primary":"branch","secondary":"It moved nimbly from branch to branch, crossing over to nearby trees with barely a whisper.","answer":"分支\n\n它敏捷地从一枝跳到另一枝,几乎不发出一丝声响,便跃到了附近的树上。"},{"primary":"search","secondary":"Still his eyes searched the corners of the shadowy room for his mother's spirit.","answer":"搜索\n\n然而,他的目光仍在昏暗房间的每个角落搜寻着母亲的魂魄。"},{"primary":"corridor","secondary":"He was some distance down the corridor and still he heard complaining near the Abbot's door.","answer":"走廊\n\n他已走下走廊一段距离,却仍能听到修道院院长房门附近传来的抱怨声。"},{"primary":"bade","secondary":"He led the two masters back to Avelyn and bade the young man to look up at him.","answer":"是\n\n他领着两位大师回到阿维琳,并让那年轻人抬头看着他。"},{"primary":"mad","secondary":"Then the ranger went back to watching, thinking that the mad monk would soon tire.","answer":"食物\n\n随后,护林员又继续观察起来,心想那个疯和尚很快就会累了。"},{"primary":"wish","secondary":"How Avelyn wished that Dansally were there!","answer":"愿望\n\n艾维琳多么希望丹萨莉也在场啊!"},{"primary":"hang","secondary":"One had many daggers within easy grasp, hanging on a bandolier that crisscrossed his chest.","answer":"一次\n\n他胸前系着一条交错缠绕的弹药带,上面挂着许多匕首,伸手可及。"},{"primary":"apart","secondary":"They sat together, yet apart, separated by a couple of feet and by the wall of Elbryan's confusion.","answer":"(形容词)(用于名词之后或作谓语)非凡的,独特的。\n\n他们并肩而坐,却又若隔千山万水,之间隔着几英尺的距离,更隔着埃尔布莱恩心中那道困惑筑起的墙。"},{"primary":"shining","secondary":"Its limbs were slender and long and its armor a silver shining coat of fine interlocking links.","answer":"(动词)发出光。\n\n它的四肢纤细修长,身披一层银光闪闪的铠甲,由细密的链环紧密交织而成。"},{"primary":"matter","secondary":"The dactyl could not take direct credit, but that mattered little.","answer":"(名词) 物质,材料。\n\n那个达克提尔人无法直接居功,但这并不重要。"},{"primary":"lower","secondary":"He blushed deeply and lowered his head, taking a quick glance all around.","answer":"(形容词)位于地面或另一个常规基准面附近,甚至低于其下方;不高或不崇高。\n\n他脸红得厉害,低下了头,迅速环顾了一圈。"},{"primary":"war","secondary":"She hoped Elbryan would wage a gallant war now, with an outcome similar to her own.","answer":"(名词)国家之间,或民族、族群及其他较大群体之间有组织、大规模的武装冲突,通常涉及军事力量的交战。\n\n她希望埃尔布莱恩此刻能打一场英勇的仗,结局能和她自己一样。"},{"primary":"barrelboat","secondary":"The four were at the port rail out of sight of the barrelboat soon after.","answer":"桶船\n\n不久后,这四人便来到船舷边,已看不见那艘运桶船了。"},{"primary":"aside","secondary":"All jealousy aside, Elbryan found the taller Pony quite a pleasing sight.","answer":"(名词)一种轻声说出的随口话,旨在让听者听见,而不被周围其他人听到。\n\n抛开嫉妒不谈,埃尔布莱恩觉得那个身材高挑的波尼看起来相当赏心悦目。"},{"primary":"leading","secondary":"They watched, chattering wildly, trying to count and to guess who was leading but getting confused as parts of the line wove in and out of the tree shadows.","answer":"(动词)用铅覆盖、填充或使受铅影响\n\n他们一边看一边叽叽喳喳地议论着,试图数一数并猜猜谁走在最前面,但当队伍在树影间穿梭时,他们却搞得一头雾水。"},{"primary":"branches","secondary":"He found a tall pine with low-hanging branches and slipped underneath them into the natural tent.","answer":"(名词) 树木从树干上长出的木质部分,通常会分枝。\n\n他发现了一棵枝桠低垂的高大松树,便溜到树下,钻进了这天然的帐篷里。"},{"primary":"sharp","secondary":"He was a handsome man of thirty years, nearly twice Cat's age, with sharp brown eyes.","answer":"(名词) 符号♯,置于调号中的音符名称之后,或置于五线谱上的音符之前,表示该音符应提高半音演奏。\n\n他是个三十岁左右的英俊男子,年纪几乎是凯特的两倍,一双棕色的眼睛炯炯有神。"},{"primary":"wave","secondary":"Jojonah waved his hand and shook his head, uninterested.","answer":"(动词)反复且略显松散地来回移动。\n\n乔乔纳挥了挥手,摇了摇头,一副不感兴趣的样子。"},{"primary":"warrior","secondary":"Twin rows of massive columns, each carved into the likeness of a giant warrior, lined the room.","answer":"(名词)积极参与战斗、冲突或战争的人;士兵或战斗人员。\n\n房间两侧排列着两排巨大的石柱,每根石柱上都雕刻着巨型战士的形象。"},{"primary":"instead","secondary":"Elbryan tugged more fiercely with his other hand instead, increasing the pace of the roll.","answer":"(副词)代替某物(通常指前文提及的);作为替代品或替代方案。\n\n埃尔布莱恩反而用另一只手更用力地一拉,使滚动的速度加快了。"},{"primary":"rage","secondary":"Wisdom overruled his rage, though, and he stayed hidden and let them pass.","answer":"(名词) 暴力且无法控制的愤怒。\n\n不过,理智战胜了他的怒火,他便藏在暗处,任由他们经过。"},{"primary":"circle","secondary":"Holding hands, the elves formed a wide circle about him.","answer":"(名词) 一种二维几何图形,即一条直线,由平面上所有到给定点(中心)距离相等的点的集合构成。\n\n精灵们手拉着手,在他周围围成一个大圈。"},{"primary":"curiously","secondary":"Pony blinked curiously, for Olwan's arm did not come down, seemed to be going up, up, up.","answer":"(副词) 以一种好奇的方式;带着好奇;充满探究地。\n\n小马好奇地眨了眨眼,因为奥尔万的手臂并没有放下,反而似乎在往上、往上、往上抬。"},{"primary":"hole","secondary":"Still she dug, widening the hole, trying desperately to squeeze under the slab.","answer":"(名词) 中空之处或空腔;挖掘出的坑洞;深坑;固体物体、织物等上的孔洞或贯通孔;穿孔;裂口;裂缝。\n\n她依然不停地挖着,把洞挖得越来越大,拼命想钻到石板底下。"},{"primary":"stab","secondary":"Stubborn to the end, he stabbed again as hard as he could, then closed his eyes.","answer":"(名词) 用某物刺入或戳刺的行为。\n\n他至死不屈,竭尽全力又刺了一刀,随即闭上了眼睛。"},{"primary":"instruct","secondary":"The guard, as instructed, placed the body at the base of the low wall and stepped back.","answer":"(名词) 指导。\n\n那名卫兵按照指示,将尸体放在矮墙脚下,然后退后几步。"},{"primary":"blanket","secondary":"And so we live on, here and there, under blankets of cloud, under cover of darkness.","answer":"(名词) 一种厚重、织法疏松的织物,通常尺寸较大且由羊毛制成,用于在睡眠或休息时保暖。\n\n于是,我们继续生活着,时而在云层之下,时而在黑暗之中。"},{"primary":"trained","secondary":"Anyone trained in the stones could do it.","answer":"(动词)练习某项技能。\n\n只要受过石头训练的人都能做到。"},{"primary":"elvish","secondary":"The mighty elvish weapon scored hit after hit, sparks flying as it banged hard against metal armor.","answer":"(形容词)与精灵有关的;精灵的。\n\n那柄威力强大的精灵武器接连命中,当它重重撞击金属盔甲时,火花四溅。"},{"primary":"balance","secondary":"He was amazed by its balance, by the smoothness of its long and comfortable draw.","answer":"(名词) 相互对立的力量达到和谐的状态;平衡。\n\n他对其平衡感赞叹不已,也对其长而舒适的拉动过程的顺滑度赞不绝口。"},{"primary":"lightning","secondary":"A sheet of conjured lightning silenced the screams forever.","answer":"(名词)云层内部、云层之间或云层与地面之间发生短时高压放电时产生的光芒。\n\n一道召唤出的闪电,让那些尖叫声永远地戛然而止。"},{"primary":"visit","secondary":"How many decades, even centuries, had passed since its last visit to Corona?","answer":"(名词)一次拜访。\n\n自从它上次造访科罗纳以来,已经过去了多少个十年,甚至多少个世纪?"},{"primary":"outside","secondary":"He caressed her neck, ran his hand down her side and along the outside of her strong leg.","answer":"外面\n\n他轻抚她的脖颈,手掌顺着她的腰侧滑下,沿着她那条结实的大腿外侧抚过。"},{"primary":"previous","secondary":"Indeed he was tired from the previous day's labors, but so full of excitement that.","answer":"上一页\n\n他确实因前一天的劳累而感到疲惫,但内心却充满了兴奋。"},{"primary":"secret","secondary":"This was her secret place, her place of contemplation.","answer":"秘密\n\n这是她的秘密之地,也是她静思冥想的地方。"},{"primary":"respond","secondary":"Juraviel responded with a nod of his own, but his admiration was sincere.","answer":"回复\n\n尤拉维尔也点了点头,但他流露出的钦佩之情却是发自内心的。"},{"primary":"control","secondary":"The boy could control it, could find that necessary place of detachment\n\n...","answer":"控制\n\n那个男孩能够控制它,能够找到那种必要的超然之地\n\n……"},{"primary":"correct","secondary":"If it did exist, then her memory was correct, then she had found yet another image of her lost life.","answer":"正确\n\n如果那确实存在,那么她的记忆就是正确的,那么她又找到了自己那段逝去生活的另一幅画面。"},{"primary":"completely","secondary":"Though he was completely inexperienced in physical lovemaking, he understood what she was saying.","answer":"完全\n\n尽管他在肉体的欢爱方面完全没有经验,但他明白她的意思。"},{"primary":"flee","secondary":"Scatter, goblins, fly and flee!","answer":"逃离\n\n散开吧,小妖精们,快飞快逃!"},{"primary":"private","secondary":"His questions were kept private though, for it was not his place to ask anything of the masters.","answer":"私有\n\n不过,他的疑问始终未曾表露,因为他无权向大师们请教任何问题。"},{"primary":"confused","secondary":"Pony paused and watched him, confused\n\na at first.","answer":"困惑\n\n小马停下脚步,一脸困惑地看着他\n\n起初。"},{"primary":"bent","secondary":"He led Elbryan to the nearest plant and bent low, bidding the young man to inspect the fern's stem.","answer":"是\n\n他领着埃尔布莱恩走到最近的一株植物旁,俯下身子,示意那年轻人仔细观察蕨类植物的茎干。"},{"primary":"utter","secondary":"Now, the young man did utter an unintended sound, a gasp of disbelief and delight.","answer":"完全\n\n这时,那年轻人确实发出一声不经意的声音,那是惊讶与喜悦交织的惊呼。"},{"primary":"tower","secondary":"The three older men moved to the edge of the tower and talked among themselves.","answer":"塔\n\n那三位年长的男子走到塔楼边缘,彼此交谈起来。"},{"primary":"smoke","secondary":"It was his mother, dead as well - of smoke, Elbryan soon realized, for she had not a wound on her.","answer":"烟\n\n那是他的母亲,她也死了——埃尔布莱恩很快意识到,她是被烟熏死的,因为她身上连一点伤痕都没有。"},{"primary":"idea","secondary":"He had no idea how long he had slept.","answer":"想法\n\n他完全不知道自己睡了多久。"},{"primary":"throne","secondary":"Entel was the third largest city in Corona, behind Ursal, the throne seat, and Palmaris.","answer":"王座\n\n恩特尔是科罗纳第三大城市,仅次于王都乌尔萨尔和帕尔马里斯。"},{"primary":"spotted","secondary":"Thagraine spotted him then, a hopeful, pitiful, smile widening on his bloody face.","answer":"发现\n\n塔格雷恩这时发现了他,那张血淋淋的脸上浮现出一抹充满希望又令人怜悯的笑容。"},{"primary":"managed","secondary":"Cat nodded to him and managed a smile.","answer":"已管理\n\n凯特朝他点了点头,勉强挤出一丝微笑。"},{"primary":"table","secondary":"Pettibwa was forever laughing, dancing with her tray from one table to the next.","answer":"表格\n\n佩蒂布瓦总是笑眯眯的,端着托盘在各张餐桌间穿梭。"},{"primary":"roof","secondary":"He dismissed that ridiculous notion and turned his spirit about, looking at the roof of the abbey.","answer":"屋顶\n\n他驳斥了那个荒谬的想法,转过身来,望向修道院的屋顶。"},{"primary":"leader","secondary":"It shadowed Elbryan's every move, studying the young leader intently.","answer":"领导者\n\n它如影随形地跟踪着埃尔布莱恩的一举一动,全神贯注地观察着这位年轻的领袖。"},{"primary":"guess","secondary":"It wasn't hard for Tuntun to guess who had worked it.","answer":"猜想\n\n对咕咕来说,猜出是谁干的并不难。"},{"primary":"action","secondary":"These were men of God, the men closest to God, and such petty actions on their part diminished the very meaning of the Abellican Church.","answer":"动作\n\n他们是上帝的仆人,是最接近上帝的人,而他们这些微不足道的行为,却贬损了阿贝利坎教会的根本意义。"},{"primary":"alive","secondary":"The air came alive with a strange humming sound.","answer":"活着\n\n空气中突然传来一阵奇怪的嗡嗡声。"},{"primary":"cause","secondary":"Quintall realized that shooting the desperate man in front of the crew would likely cause a mutiny.","answer":"原因\n\n昆塔尔意识到,如果在船员面前开枪打死那个走投无路的人,很可能会引发哗变。"},{"primary":"center","secondary":"A thin crack ran down the center of the obsidian sarcophagus.","answer":"中心\n\n一道细细的裂纹沿着黑曜石石棺的中央延伸而下。"},{"primary":"desperate","secondary":"Something daring, even desperate, like the shadow dive Tallareyish had used to defeat him.","answer":"走投无路\n\n某种大胆甚至近乎绝望的招数,就像塔拉雷伊什当年用来击败他的“影之潜行”那样。"},{"primary":"broken","secondary":"What song is this, drift through the trees\n\nTo lift men broken from their knees?","answer":"损坏的\n\n这是什么歌,在树林间飘荡\n\n让跌倒的人重新站起?"},{"primary":"winter","secondary":"The weather had turned toward winter.","answer":"冬天\n\n天气已转入冬季。"},{"primary":"punch","secondary":"Over and over they rolled, tumbling down the slope, punching and thrashing.","answer":"拳击\n\n他们翻滚着,沿着斜坡滚落,一路上拳打脚踢、手舞足蹈。"},{"primary":"bright","secondary":"The place was not bright, having only a handful of tiny windows set high up on the tall walls.","answer":"明亮\n\n那里光线昏暗,高耸的墙壁上只开着寥寥几扇小窗。"},{"primary":"running","secondary":"But dark images began to wash over Avelyn, scenes of men running amok with stone power.","answer":"正在运行\n\n但一幅幅阴暗的画面开始涌入艾维琳的脑海,画面中,男人们正肆意挥舞着石之力量。"},{"primary":"probably","secondary":"If that was true, then he probably was not dead.","answer":"大概\n\n如果那是真的,那他大概还没死。"},{"primary":"gasp","secondary":"Now, the young man did utter an unintended sound, a gasp of disbelief and delight.","answer":"抢劫\n\n这时,那年轻人确实发出一声不经意的声音,那是惊讶与喜悦交织的惊呼。"},{"primary":"cutting","secondary":"Avelyn took a bold step, cutting between Quintall and Thagraine.","answer":"切割\n\n艾维琳果断地迈出一步,穿过昆塔尔和塔格雷恩之间。"},{"primary":"precious","secondary":"The moment, this most precious moment in all of Elbryan's young life ...","answer":"珍贵的\n\n这一刻,这是埃尔布莱恩短暂人生中最珍贵的时刻……"},{"primary":"sweep","secondary":"Avelyn then let go and dropped into a leg sweep that left Thagraine lying flat on the deck.","answer":"清扫\n\n阿维琳随即松开手,顺势使出一记扫腿,将塔格雷恩放倒在甲板上。"},{"primary":"prove","secondary":"Would his victory prove tainted?","answer":"证明\n\n他的胜利会因此蒙上阴影吗?"},{"primary":"gradually","secondary":"The elves gradually closed in.","answer":"逐渐地\n\n精灵们逐渐逼近。"},{"primary":"effort","secondary":"With great effort, Elbryan tore his gaze from the dreadful spectacle below and glanced all around.","answer":"努力\n\n埃尔布莱恩费了九牛二虎之力,才将视线从下方的惨状上移开,环顾四周。"},{"primary":"escape","secondary":"But there was no escape, no way to get beyond Dundalis without being seen.","answer":"逃脱\n\n但无处可逃,若不想被人发现,就无法绕过邓达利斯。"},{"primary":"hot","secondary":"Always it was a hot meal they set, and Elbryan soon understood why.","answer":"热门\n\n他们端上来的总是热腾腾的一餐,埃尔布莱恩很快便明白了其中的缘由。"},{"primary":"widen","secondary":"Still she dug, widening the hole, trying desperately to squeeze under the slab.","answer":"扩大\n\n她依然不停地挖着,把洞挖得越来越大,拼命想钻到石板底下。"},{"primary":"grasp","secondary":"To untwist hearts from grasping sorrow,\n\nTo offer the promise of the morrow?","answer":"掌握\n\n让心灵从紧握的悲伤中解脱,\n\n为明天许下承诺?"},{"primary":"roar","secondary":"Quintall's roar, truly the roar of a tiger, sent the crew scrambling.","answer":"咆哮\n\n昆塔尔的咆哮,简直就像老虎的咆哮,吓得船员们四散奔逃。"},{"primary":"lava","secondary":"Bestesbulzibar looked from Quintall to one of the lava rivers.","answer":"查找\n\n贝斯特斯布尔齐巴的目光从昆塔尔移向其中一条熔岩河。"},{"primary":"slash","secondary":"Elbryan wanted to jump out at them, to slash them all.","answer":"斜杠\n\n埃尔布莱恩想扑向他们,把他们全都砍倒。"},{"primary":"northern","secondary":"I had not even considered this until my northern trek led me back to these lands familiar.","answer":"北部的\n\n直到这次北行之旅将我带回这片熟悉的土地,我才第一次想到这一点。"},{"primary":"smiling","secondary":"Elbryan moved up to the comer of the next house, smiling for his cleverness, and peered around.","answer":"微笑\n\n埃尔布莱恩走到隔壁房子的拐角处,为自己的机智暗自得意,然后探头张望。"},{"primary":"tug","secondary":"But now something else tugged at him and put him on edge.","answer":"拉\n\n但此刻,另有某种东西牵动着他的心弦,让他感到坐立难安。"},{"primary":"deeper","secondary":"In many places, the caribou moss was even deeper than his knees!","answer":"更深\n\n在许多地方,驯鹿苔藓甚至深过他的膝盖!"},{"primary":"candle","secondary":"He moved to blow out the candle, then changed his mind and settled back on the cot.","answer":"蜡烛\n\n他正要伸手吹灭蜡烛,又改变主意,重新躺回了行军床上。"},{"primary":"villager","secondary":"If the man made but a single mistake, the mob of villagers would overwhelm him.","answer":"村民\n\n只要那人犯一个错误,村民们就会一拥而上。"},{"primary":"regard","secondary":"He turned about, regarding the giant, which was dancing and slapping at the air.","answer":"视线\n\n他转过身,望着那个正在跳舞、挥手拍打空气的巨人。"},{"primary":"loose","secondary":"All advantage was lost as the young man stumbled, the loose earth slipping out from under his foot.","answer":"松散的\n\n就在年轻人脚下一滑,松软的泥土从脚下滑落之际,所有的优势都化为乌有。"},{"primary":"west","secondary":"The boy believed the sun to be in the west, halfway from noon to sunset.","answer":"西\n\n那个男孩以为太阳在西边,正处于正午和日落之间。"},{"primary":"beneath","secondary":"Not so far down, they moved beneath the misty canopy, and the forested valley came clear to Elbryan.","answer":"下方\n\n没走多远,他们便穿过了雾气缭绕的树冠层,这片林木葱郁的山谷在埃尔布莱恩眼前豁然开朗。"},{"primary":"defense","secondary":"There were no lines of defense anymore, no organized pockets of resistance.","answer":"防御\n\n再也没有防线了,也没有有组织的抵抗据点。"},{"primary":"bury","secondary":"He found strength in duty, and that duty lay in burying the dead.","answer":"埋葬\n\n他从职责中汲取了力量,而这份职责就是安葬死者。"},{"primary":"guards","secondary":"She would die, not of any fault of her own, but because the Coastpoint Guards had grown weak.","answer":"警卫\n\n她将死去,这并非她的过错,而是因为海岸守卫队已日渐衰弱。"},{"primary":"silently","secondary":"He didn't know what to do, then cursed himself silently for what he had already done!","answer":"默默地\n\n他不知该如何是好,随即为自己已做出的事暗自咒骂!"},{"primary":"evenly","secondary":"Then Paulson started out, slowly, pacing evenly and calmly toward the goblin pair.","answer":"均匀地\n\n接着,保尔森缓缓动身,步伐均匀而沉稳地朝那对地精走去。"},{"primary":"gift","secondary":"There was something else, though, some gift that Avelyn had left behind.","answer":"已婚\n\n不过,还有一样东西,那是艾维琳留下的某样礼物。"},{"primary":"note","secondary":"Elbryan sat up and rubbed his face, noting the cut and dried blood on one of his hands.","answer":"注\n\n埃尔布莱恩坐起身来,揉了揉脸,发现自己一只手上有一道伤口,上面还沾着干涸的血迹。"},{"primary":"mutter","secondary":"Thagraine was most ill at ease, pacing, stalking, and muttering to himself.","answer":"母亲\n\n塔格雷恩感到极度不安,他在屋里来回踱步,踉跄着走动,还自言自语。"},{"primary":"calmly","secondary":"The elf looked up at him calmly, smiling, perfectly relaxed.","answer":"平静地\n\n精灵平静地抬头看着他,脸上带着微笑,显得十分从容。"},{"primary":"concern","secondary":"Her face screwed up with concern.","answer":"关切\n\n她忧心忡忡地皱起了眉头。"},{"primary":"region","secondary":"The one advantage on the ranger's side was his knowledge of the region surrounding Weedy Meadow.","answer":"地区\n\n护林员唯一的优势在于他对杂草草甸周边地区的熟悉。"},{"primary":"plant","secondary":"He led Elbryan to the nearest plant and bent low, bidding the young man to inspect the fern's stem.","answer":"儿童\n\n他领着埃尔布莱恩走到最近的一株植物旁,俯下身子,示意那年轻人仔细观察蕨类植物的茎。"},{"primary":"family","secondary":"Her friends and family could not win!","answer":"家庭\n\n她的亲朋好友都赢不了!"},{"primary":"anger","secondary":"The wicked goblins certainly, so full of anger and greed, so delighting in murder and war.","answer":"悔恨\n\n那些邪恶的哥布林确实如此,满心愤怒与贪婪,沉迷于杀戮与战争。"},{"primary":"complete","secondary":"What might he do after the task was completed?","answer":"完整\n\n任务完成后,他会做什么呢?"},{"primary":"disappear","secondary":"Avelyn didn't look over his shoulder to watch the ranger disappear into the night.","answer":"消失\n\n艾维琳没有回头看,任由那名游侠消失在夜色中。"},{"primary":"grown","secondary":"Where trees and thick brush had grown was now only battered pulp and blasted stone.","answer":"长大\n\n曾经生长着树木和茂密灌木的地方,如今只剩下一片残破的碎木和炸裂的石块。"},{"primary":"pointed","secondary":"Down came Tuntun, her wing-fluttering hop exhausted, her sword pointed below her, leading.","answer":"尖的\n\n噗通一声,咕噜咕噜落地了,她那振翅跳跃的动作已然竭尽,长剑指向身下,引领着前行。"},{"primary":"chin","secondary":"She cupped Elbryan's chin in one hand and gently turned him back to face her.","answer":"(名词)脸部的下部,(特指)通常位于嘴巴下方、向外突出的下颌线。\n\n她单手托起埃尔布莱恩的下巴,轻轻地将他转过来面对自己。"},{"primary":"distant","secondary":"Then they heard a distant piping, soft music, perfect melody.","answer":"(形容词)遥远的(在物理上、逻辑上或心理上)。\n\n接着,他们听见远处传来一阵悠扬的笛声,轻柔的乐声,旋律完美无瑕。"},{"primary":"deny","secondary":"He tried to deny it, tried to fight back.","answer":"(动词)不予批准或拒绝。\n\n他试图否认,试图反抗。"},{"primary":"closest","secondary":"The goblin, the closest form, was dead, its head bashed.","answer":"(动词) (物理) 消除间隙。\n\n离得最近的那只哥布林已经死了,脑袋被砸得粉碎。"},{"primary":"bend","secondary":"He came upon them at last at a bend in the river, where the goblins - many goblins!","answer":"(名词) 曲线。\n\n他终于在河湾处发现了他们,那里有许多哥布林——成群的哥布林!"},{"primary":"fat","secondary":"The creature's ears, pointed at the top and with a loose flapping, fat lobe at the bottom, stuck out several inches from its head.","answer":"(名词) 一种富含脂肪的特殊动物组织,用于长期储存能量。\n\n那生物的耳朵顶端呈尖状,底部则垂着一块松弛晃动的肥厚耳垂,从头部向外突出了好几英寸。"},{"primary":"chair","secondary":"That done, the young man felt about, found his chair, and slipped into it.","answer":"(名词)一种供人坐于其上或其中的家具,由座面、腿、靠背以及有时还包括扶手组成,供一人使用。可与凳子、长椅、沙发、双人沙发、双座沙发和长凳进行比较。\n\n做完这些,年轻人摸索着找到了自己的椅子,便坐了下去。"},{"primary":"fool","secondary":"He said nothing, though, fearful of making a fool of himself.","answer":"(名词) 判断力差或智商不高的人。\n\n但他什么也没说,生怕出丑。"},{"primary":"chamber","secondary":"They were far below ground in one of the abbey's interior chambers, so there could be no window.","answer":"(名词)一间或一组房间,特别是:\n\n他们身处修道院地下深处的一间内室,因此那里不可能有窗户。"},{"primary":"shield","secondary":"Avelyn pulled out his hematite, then remembered the anti-magic shield that Quintall had constructed.","answer":"(名词) 任何具有保护或防御作用的事物;防御;庇护所;保护。\n\n艾维琳掏出了他的赤铁矿,随即想起了昆塔尔构筑的抗魔法护盾。"},{"primary":"mostly","secondary":"Three men lay about on piled skins, black bear mostly, drinking foamy beer from old mugs.","answer":"(副词) 主要地或主要地;大部分;通常、一般、总体而言。\n\n三名男子散躺在堆叠的兽皮上——大多是黑熊皮——用旧酒杯喝着泡沫翻涌的啤酒。"},{"primary":"settled","secondary":"Master Jojonah settled back on his heels but met the penetrating stare firmly.","answer":"(动词)结束或解决(某事):\n\n乔乔纳大师向后退了一步,却依然坚定地迎接着那灼人的目光。"},{"primary":"shower","secondary":"Master Jojonah had called the stone showers \"offerings,\" and to Avelyn, that description seemed exactly wrong.","answer":"(名词) 短暂的降水(一场雨,或类似的降雪、雨夹雪或瀑布般的降水)。\n\n乔乔纳大师将那些石雨称为“祭品”,但在艾维琳看来,这种说法恰恰大错特错。"},{"primary":"breathe","secondary":"Avelyn found he could hardly breathe.","answer":"(动词)将空气吸入(吸气)并排出(呼气)肺部,以吸收氧气并排出废气。\n\n艾维琳发现自己几乎无法呼吸。"},{"primary":"laughter","secondary":"Her glare at Juraviel was almost threatening as laughter erupted about her.","answer":"(名词) 因空气喷出而产生的笑声;任何类似的声音。\n\n当周围爆发出阵阵笑声时,她投向朱拉维尔的目光几乎带着威胁。"},{"primary":"mist","secondary":"Elbryan had the distinct feeling the mist and the treetops were somehow connected.","answer":"(名词)悬浮在空气中的水或其他液体微粒。\n\n埃尔布莱恩隐约觉得,那片雾气与树梢之间似乎有着某种联系。"},{"primary":"crouch","secondary":"Elbryan turned and dropped into a defensive crouch, but no enemies presented themselves.","answer":"(名词) 弯腰或驼背的姿势。\n\n埃尔布莱恩转身蹲下摆出防御姿势,但周围并没有敌人。"},{"primary":"bar","secondary":"Not in a lewd way, like the drunk in the bar, or even in a teasing way, like the handsome young man.","answer":"(名词) 一种由金属或木材制成的固体、或多或少具有刚性的物体,其横截面均匀,且横截面尺寸小于其长度。\n\n并非像酒吧里那个醉汉那样流光溢彩,甚至也不像那位英俊小伙那样调情。"},{"primary":"belly","secondary":"They were about the same height, but Tol, with his barrel-like torso and ample belly, was heavier.","answer":"(名词) 腹部,尤其是肥胖的腹部。\n\n他们身高差不多,但托尔身材魁梧,躯干像酒桶一样粗壮,肚子也挺大,所以更重一些。"},{"primary":"spike","secondary":"Into the spike, the beast sent its vision, the telltale tracings of human-woven magic.","answer":"(名词)小提琴类乐器中,嵌入琴底块的雕花木塞。\n\n那头野兽将视线投向尖刺,那里留有人类编织的魔法所留下的明显痕迹。"},{"primary":"discern","secondary":"Avelyn swallowed hard, trying to discern his best response.","answer":"(动词)通过感官,尤其是眼睛,去察觉。\n\n艾维琳用力咽了口唾沫,努力思考该如何回应才好。"},{"primary":"powers","secondary":"The demon spirit fell deep within itself, summoned its powers, both physical and magical.","answer":"(名词) 做某事或经历某事的能力。\n\n恶魔沉入内心深处,调动起自身的力量,无论是肉体之力还是魔法之力。"},{"primary":"bottom","secondary":"Then likely he was now a charred thing, drifting to the bottom of the harbor.","answer":"(名词) 任何事物的最底端。\n\n那么,他现在八成已经变成一具焦黑的尸体,正漂向海港的底部。"},{"primary":"deadly","secondary":"How many thousands of goblins and giants had fallen to Mother's deadly blade!","answer":"(形容词) 会死亡的;凡人的。\n\n有多少千名哥布林和巨人倒在了母亲那致命的利刃之下!"},{"primary":"doom","secondary":"He had thought Dundalis doomed ...","answer":"(名词) 命运,尤其是可怕的命运。\n\n他原以为邓达利斯注定要完蛋……"},{"primary":"younger","secondary":"How much younger and more vibrant Annalisa had seemed!","answer":"更年轻\n\n安娜丽莎当时看起来是多么年轻有活力啊!"},{"primary":"assured","secondary":"Elbryan's father had assured him that Wyndon boys were normally late in sprouting.","answer":"确信\n\n埃尔布莱恩的父亲曾向他保证,温登家的男孩通常发育较晚。"},{"primary":"everything","secondary":"The elves didn't see things that way; Juraviel had once asserted to Elbryan that everything in the.","answer":"一切\n\n精灵们并不这么认为;朱拉维尔曾向埃尔布里安断言,在……中的一切。"},{"primary":"ease","secondary":"He was at ease again, the uncomfortable feelings tossed out with the mystery of the night.","answer":"轻松\n\n他又恢复了从容,那些不安的情绪随着夜色的神秘一并消散了。"},{"primary":"toss","secondary":"He was at ease again, the uncomfortable feelings tossed out with the mystery of the night.","answer":"抛\n\n他又恢复了从容,那些不安的情绪随着夜色的神秘一并消散了。"},{"primary":"pines","secondary":"Something else watched the young man from a perch in one of the thicker pines on the ridge.","answer":"松树\n\n山脊上某棵枝叶茂密的松树上,还有个东西正从树梢上注视着那个年轻人。"},{"primary":"miss","secondary":"Pony didn't miss her companion's derisive snort.","answer":"小姐\n\n波妮没有漏听同伴那声嗤之以鼻的冷笑。"},{"primary":"focus","secondary":"He glanced all around, tried to focus on individual creatures that he might discern their leader.","answer":"焦点\n\n他环顾四周,试图锁定其中几只生物,好找出它们的首领。"},{"primary":"metal","secondary":"One hand banged against the powrie's solid waists against a metal ball above the dwarf's belt.","answer":"金属\n\n一只手猛地撞上了那名矮人的腰带,撞到了他腰带上方的一颗金属球上。"},{"primary":"obvious","secondary":"From the sounds emanating from within, it was quite obvious what was going on in there.","answer":"显而易见的\n\n从里面传出的声音听起来,里面发生了什么事再明显不过了。"},{"primary":"blast","secondary":"Elbryan, dazed, his breath blasted away, nearly fainted.","answer":"blast\n\n埃尔布莱恩神志恍惚,被震得喘不过气来,几乎昏了过去。"},{"primary":"pray","secondary":"Always working or praying; there were no other recollections of Avelyn to be found.","answer":"祈祷\n\n不是在工作就是在祈祷;关于艾维琳,再也找不到其他记忆了。"},{"primary":"storm","secondary":"Whoever or whatever was coming certainly wasn't kicking up a storm - it could not be giants.","answer":"风暴\n\n无论是什么东西正在靠近,显然并没有掀起风浪——那不可能是巨人。"},{"primary":"crystal","secondary":"Fortunately, the water was crystal clear.","answer":"水晶\n\n幸运的是,水清澈见底。"},{"primary":"beat","secondary":"Even if he beat these two, others were coming fast, including the one with the glowing spike!","answer":"蒙福的\n\n即使他打败了这两个人,其他人也正迅速逼近,其中还包括那个身上带着发光尖刺的家伙!"},{"primary":"caravan","secondary":"Up in front, one of the women signaled that the caravan was nearly upon them.","answer":"房车\n\n前方,其中一名女子示意车队快要赶上他们了。"},{"primary":"prisoner","secondary":"You are not a prisoner, yet you are not free.","answer":"囚犯\n\n你并非囚徒,却也并非自由之身。"},{"primary":"tavern","secondary":"There is a tavern now, larger than the old common house and built on the foundation of my old home.","answer":"酒馆\n\n现在那里有一家酒馆,比旧时的公共房屋还要大,建在我老家的地基上。"},{"primary":"refugee","secondary":"Lady Dasslerond and Juraviel, all the elves and the refugees, and Bestesbulzibar.","answer":"难民\n\n达斯勒隆夫人和朱拉维尔,所有精灵和难民,还有贝斯特斯布尔齐巴。"},{"primary":"collect","secondary":"She cursed herself for not having had the wisdom to collect a weapon before leaving Dundalis.","answer":"收集\n\n她暗自埋怨自己,当初离开邓达利斯时竟没想起来带上一件武器。"},{"primary":"protect","secondary":"Not that Graevis wouldn't protect her.","answer":"保护\n\n倒不是说格雷维斯不会保护她。"},{"primary":"wrap","secondary":"He had to get his own shirt off and use it to somehow wrap the wound.","answer":"wrap\n\n他不得不脱下自己的衬衫,设法用它包扎伤口。"},{"primary":"crack","secondary":"A thin crack ran down the center of the obsidian sarcophagus.","answer":"裂缝\n\n一道细细的裂纹沿着黑曜石石棺的中央延伸而下。"},{"primary":"shape","secondary":"He noted a movement up above, a dark shape coming atop the jutting rock.","answer":"形状\n\n他注意到上方有动静,一块突出的岩石顶端出现了一个黑影。"},{"primary":"tremendous","secondary":"The fomorian charged ahead with a tremendous, hideous howl, its cudgel going high.","answer":"巨大的\n\n那只福莫里亚人发出震耳欲聋的恐怖嚎叫,挥舞着棍棒冲了上来。"},{"primary":"fully","secondary":"She stopped, taken fully by surprise.","answer":"完全\n\n她停下了脚步,完全措手不及。"},{"primary":"purpose","secondary":"Their attacks will only increase in number and in purpose.\"\n\nQuintall shrugged away the grim words.","answer":"目的\n\n“他们的袭击只会愈演愈烈,目的也会愈发明确。”\n\n昆塔尔耸了耸肩,对这番令人不安的话不以为意。"},{"primary":"horizon","secondary":"But for all the harsh reality, for all the possibilities that he would not survive, Avelyn watched the watery horizon for hint of those square sails most intently of all.","answer":"地平线\n\n尽管现实如此残酷,尽管他很可能无法生还,但阿维琳却比任何时候都更加专注地凝视着水天相接处,期盼能瞥见那些方形船帆的踪影。"},{"primary":"sign","secondary":"His arm hung practically useless, with no sign that it would ever improve.","answer":"符号\n\n他的手臂几乎完全无法动弹,丝毫没有好转的迹象。"},{"primary":"horror","secondary":"He forced himself to remember Dundalis, to replay the horror, that he might find a fighting edge.","answer":"恐怖\n\n他强迫自己回想邓达利斯,重温那段恐怖经历,以此寻找战斗的动力。"},{"primary":"stern","secondary":"Elbryan held his breath, thinking that Pony's mother, often stern, would scold the girl severely.","answer":"星\n\n埃尔布莱恩屏住了呼吸,心想通常很严厉的波妮的母亲一定会狠狠地训斥这个女孩。"},{"primary":"southern","secondary":"She remembered running up a forested slope, looking back to her village, nestled in a sheltered vale, and then turning her gaze above it, to the southern sky, to the faint colors of the Halo.","answer":"南部\n\n她记得自己曾沿着一片林木葱郁的山坡向上奔跑,回头望向藏身于避风山谷中的村庄,随后又将视线投向村庄上方,望向南方的天空,凝视着那道光环的淡淡色彩。"},{"primary":"halfway","secondary":"The boy believed the sun to be in the west, halfway from noon to sunset.","answer":"半途\n\n那个男孩以为太阳在西边,正处于正午和日落之间。"},{"primary":"twice","secondary":"He was a handsome man of thirty years, nearly twice Cat's age, with sharp brown eyes.","answer":"两次\n\n他是个三十岁左右的英俊男子,年纪几乎是凯特的两倍,一双棕色的眼睛炯炯有神。"},{"primary":"wildly","secondary":"Pony spun and jumped on it, flailing wildly with both fists, kicking and kneeing viciously.","answer":"极度\n\n波尼转身扑了上去,双拳疯狂挥舞,又猛烈地踢打和膝击。"},{"primary":"weave","secondary":"They watched, chattering wildly, trying to count and to guess who was leading but getting confused as parts of the line wove in and out of the tree shadows.","answer":"编织\n\n他们一边看一边叽叽喳喳地议论着,试图数一数并猜猜谁走在最前面,但当队伍的一部分在树影间穿梭时,他们就搞糊涂了。"},{"primary":"rock","secondary":"Elbryan rocked back on his heels, fumbling with his thoughts.","answer":"摇滚\n\n埃尔布莱恩向后仰了仰身子,思绪纷乱。"},{"primary":"groan","secondary":"The other was also on the ground, squirming and groaning.","answer":"呻吟\n\n另一个也躺在地上,扭动着身子,发出呻吟声。"},{"primary":"fine","secondary":"Its limbs were slender and long and its armor a silver shining coat of fine interlocking links.","answer":"结束\n\n它的四肢纤细修长,身披一层银光闪闪的铠甲,由细密的链环紧密交织而成。"},{"primary":"length","secondary":"\"All right then,\" she said at length.","answer":"长度\n\n“好吧,”她终于说道。"},{"primary":"pleased","secondary":"It pleased her greatly to help out Elbryan, to guard his emotions.","answer":"很高兴\n\n能帮助埃尔布莱恩、守护他的情绪,这让她感到非常高兴。"},{"primary":"steady","secondary":"Elbryan forced himself to remain steady, to think clearly.","answer":"稳定\n\n埃尔布莱恩强迫自己保持镇定,头脑清醒。"},{"primary":"sort","secondary":"Avelyn sorted them out in his mind.","answer":"结局\n\n艾维琳在脑海中理清了这些思绪。"},{"primary":"indicate","secondary":"And if the humanoids didn't sack the town, that indicated they meant to continue on.","answer":"表示\n\n而且,如果那些人形生物没有洗劫小镇,那就说明他们打算继续前行。"},{"primary":"speed","secondary":"He went forward with all speed, scrambling over the low ridge.","answer":"速度\n\n他全速向前冲去,翻越了那道低矮的山脊。"},{"primary":"poor","secondary":"Too many images assailed poor Elbryan.","answer":"可怜\n\n过多的画面向可怜的埃尔布莱恩扑来。"},{"primary":"yard","secondary":"The barrelboat closed - fifty yards, forty, twenty - cutting the water smoothly.","answer":"院子\n\n那艘桶形船迅速逼近——五十码、四十码、二十码——在水面上平稳地划行。"},{"primary":"grim","secondary":"It took grim Cat a long while to learn the truth of Pettibwa.","answer":"丑陋\n\n阴沉的凯特花了很长时间才弄清佩蒂布瓦的真相。"},{"primary":"wounded","secondary":"She remembered wandering into a village, dirty and wounded, covered in soot and blood.","answer":"受伤的\n\n她记得自己曾浑身脏兮兮、伤痕累累,满身是煤灰和鲜血,跌跌撞撞地走进一个村庄。"},{"primary":"manner","secondary":"Put in that manner, this was indeed a day of celebration.","answer":"更少\n\n这么一说,这确实是个值得庆祝的日子。"},{"primary":"craft","secondary":"Avelyn could see the craft clearly now; no longer did he confuse the strange barrelboat with any wave shadows.","answer":"手工艺\n\n阿维琳现在能清楚地看见那艘船了;他不再把这艘奇怪的桶形船误认为是海浪的倒影。"},{"primary":"boat","secondary":"Finally came the welcome sound of oars and the boat, all three safely aboard.","answer":"船\n\n终于传来了令人欣慰的划桨声,三人都平安登上了船。"},{"primary":"graphite","secondary":"He took his hand, and the graphite, out of his pocket, pointing it in Quintall's direction.","answer":"石墨\n\n他从口袋里掏出手和那支石墨笔,朝昆塔尔的方向指了指。"},{"primary":"possible","secondary":"Jojonah would not have believed it possible.","answer":"可能\n\n乔乔纳原本绝不会相信这种事。"},{"primary":"heat","secondary":"She felt the heat against her hands as this house, too, started to burn.","answer":"热\n\n当这栋房子也开始燃烧时,她感到热浪扑面而来。"},{"primary":"drink","secondary":"Three men lay about on piled skins, black bear mostly, drinking foamy beer from old mugs.","answer":"饮料\n\n三名男子散落在堆叠的兽皮上——大多是黑熊皮——用旧酒杯喝着泡沫翻涌的啤酒。"},{"primary":"situation","secondary":"Either way, her situation was about to become desperate.","answer":"情况\n\n无论怎样,她的处境都即将变得岌岌可危。"},{"primary":"curious","secondary":"Elbryan and Pony exchanged curious looks.","answer":"好奇\n\n埃尔布莱恩和波尼面面相觑,神情好奇。"},{"primary":"threat","secondary":"The way to our destination was cleared, the threat to the Windrunner ended.","answer":"威胁\n\n通往目的地的道路已畅通无阻,对“风行者”的威胁也已消除。"},{"primary":"tightly","secondary":"Pony clenched the graphite tightly, nodded once, and walked away.","answer":"紧密地\n\n波尼紧紧握住石墨笔,点点头,然后转身离去。"},{"primary":"flow","secondary":"All flowed slowly, beautifully.","answer":"流\n\n一切都缓缓流淌,美不胜收。"},{"primary":"size","secondary":"He selected an egg-sized hematite next, and then a ruby, small but flawless to his trained eye.","answer":"给您\n\n接着,他挑选了一颗鸡蛋大小的赤铁矿,随后又选了一颗红宝石——虽小,但在他那双训练有素的眼中却毫无瑕疵。"},{"primary":"frustration","secondary":"Pony sighed, too, and shook her head as if to show her ultimate frustration with adults.","answer":"沮丧\n\n小马也叹了口气,摇了摇头,仿佛在表达她对大人们的极度无奈。"},{"primary":"ghost","secondary":"The Forest Ghost was a common legend in the Timberlands.","answer":"幽灵\n\n“森林幽灵”是蒂姆伯兰地区广为流传的一个传说。"},{"primary":"bare","secondary":"Even his head was bare, for his superiors had shaved it.","answer":"仅\n\n就连他的头也光秃秃的,因为上级给他剃了光头。"},{"primary":"features","secondary":"Siherton's features befit his rank of class overseer, the disciplinarian of the newest brothers.","answer":"功能\n\n西赫顿的举止风度与他作为班级督导的身份相称,他是新入会的兄弟们的纪律监督者。"},{"primary":"closely","secondary":"Jill wished that she had a cloak, at least, to gather closely about her.","answer":"密切地\n\n吉尔真希望自己至少有一件斗篷,好紧紧裹住自己。"},{"primary":"conversation","secondary":"Finally, Father Abbot Markwart halted the conversation with an upraised hand.","answer":"对话\n\n最后,马克瓦特院长举起手来,打断了谈话。"},{"primary":"possibility","secondary":"Pony shrugged, not willing to discount the possibility of giants, not after viewing a dead goblin.","answer":"可能性\n\n波尼耸了耸肩,不愿排除巨人的可能性——毕竟他亲眼见过一只死去的哥布林。"},{"primary":"locked","secondary":"She couldn't look at the man but kept her eyes locked on the stars, as if seeking refuge high above.","answer":"已锁定\n\n她不敢看那个男人,目光始终凝视着星空,仿佛在高空寻求庇护。"},{"primary":"tears","secondary":"He was beyond grief, beyond logic, with no tears to cry.","answer":"眼泪\n\n他已悲痛欲绝,理智尽失,甚至流不出眼泪。"},{"primary":"burned","secondary":"Avelyn's brown robes were tattered and dripping; he had the stench of burned hair about him.","answer":"烧焦的\n\n艾维琳那件棕色长袍破破烂烂,湿漉漉的;他身上散发着焦发刺鼻的气味。"},{"primary":"response","secondary":"Avelyn swallowed hard, trying to discern his best response.","answer":"回复\n\n艾维琳用力咽了口唾沫,努力思考该如何回应才好。"},{"primary":"flat","secondary":"They came together hard, Elbryan going flat out on his back.","answer":"平的\n\n两人猛地撞在了一起,埃尔布莱恩仰面倒地,整个人瘫软在地。"},{"primary":"backward","secondary":"He shot back up straight, then fell over backward, but Cat was not done with him.","answer":"向后\n\n他猛地直起身子,随即向后倒去,但凯特还没完。"},{"primary":"defensive","secondary":"They had fallen as if they had formed a defensive ring, yet there were no human bodies near them.","answer":"(名词) 一种防御手段、态度或立场。\n\n他们倒下的样子仿佛曾组成一个防御圈,然而周围却没有人的尸体。"},{"primary":"behemoth","secondary":"But they hardly seemed to stop the behemoth.","answer":"(名词)《约伯记》40章15至24节中,上帝向约伯显明的一头巨大而威猛的野兽。\n\n但这似乎根本无法阻挡这头巨兽。"},{"primary":"dear","secondary":"And then she could look no more, fearing that she would find Thomas Ault, her father dear, among the dead.","answer":"(名词) 一个非常善良、充满爱心的人。\n\n然后她再也看不下去了,生怕会在死者之中发现她亲爱的父亲托马斯·奥尔特。"},{"primary":"slight","secondary":"He gave a slight nod to Jojonah and started away.","answer":"(名词) 轻视的行为;一种故意的冷落或无礼之举。\n\n他向乔乔纳微微点了点头,随即转身离去。"},{"primary":"chuckle","secondary":"Belli'mar Juraviel suppressed a chuckle, for he liked seeing Tuntun flustered.","answer":"(名词) 轻声的笑。\n\n贝利马尔·朱拉维尔强忍住笑意,因为他喜欢看顿顿手足无措的样子。"},{"primary":"sacred","secondary":"They were talking about a private auction of the sacred stones!","answer":"(形容词)具有庄严宗教仪式或宗教用途的特征,尤指积极意义上的;经祝圣的,被视为神圣的。\n\n他们正在谈论一场关于圣石的私人拍卖会!"},{"primary":"drew","secondary":"Elbryan drew out his short sword, glancing warily into the shadows.","answer":"(动词)推动或发展某事。\n\n埃尔布莱恩拔出短剑,警惕地向阴影处瞥去。"},{"primary":"answers","secondary":"The young man simply had no answers now.","answer":"(名词) 回应或答复;对某项陈述或问题所作出的言语或行为。\n\n那年轻人此刻实在无言以对。"},{"primary":"ruby","secondary":"Malachite, amber, serpentine, ruby, in that order.","answer":"(名词)一种色泽清澈、色泽深红的刚玉,被视为宝石。\n\n孔雀石、琥珀、蛇纹石、红宝石,依此顺序。"},{"primary":"sail","secondary":"They'll not let a ship sail from them, nor do they have room for prisoners!","answer":"(名词)固定在船上的布料,其布置方式能使风推动船只前进。船帆通常通过桅杆、横杆和绳索的组合固定在船上。\n\n他们不允许船只从那里启航,而且也没有收容囚犯的场所!"},{"primary":"sometimes","secondary":"Quintall spent the better part of an hour in a sometimes heated discussion with Captain Adjonas.","answer":"(形容词)曾经的;曾经的。\n\n昆塔尔与阿乔纳斯上尉进行了近一个小时的讨论,期间气氛时而变得紧张。"},{"primary":"imagine","secondary":"The goblin was behind her; she could imagine it readying its spear, lining up her vulnerable back.","answer":"(名词)一种短篇同人小说或写作提示,将读者代入小说情节中,与某个角色或名人互动。\n\n那只哥布林就在她身后;她仿佛能看见它正举起长矛,瞄准她毫无防备的后背。"},{"primary":"extended","secondary":"Bestesbulzibar extended its hand palm down and telepathically demanded that Quintall pay homage.","answer":"(动词)范围扩大。\n\n贝斯特斯布尔齐巴尔伸出掌心向下的手,通过心灵感应命令昆塔尔向他致敬。"},{"primary":"poke","secondary":"The leg had splintered in the fall; Cat could see the jagged edge of a bone poking through the skin.","answer":"(名词) 戳、捅或刺。\n\n那条腿在跌倒时断裂了;凯特能看见骨头的锯齿状边缘从皮肤里露了出来。"},{"primary":"aloud","secondary":"Jojonah nearly laughed aloud at the spectacle, and held forth the hematite.","answer":"(形容词) 说出来的。\n\n乔乔纳看到这一幕,差点笑出声来,随即举起了那块赤铁矿。"},{"primary":"retrieve","secondary":"Even if he went and retrieved it, the liquid within the stone had been tainted and was no good.","answer":"(名词) 检索\n\n即便他去把它取回来,石头里的液体也已经受到污染,已经没用了。"},{"primary":"shelter","secondary":"He could get to Thagraine and shelter the man back to the cave.","answer":"(名词) 避难所、庇护所或其他能躲避或抵御某种事物的地方。\n\n他可以找到塔格雷恩,并护送那人回到洞穴。"},{"primary":"hunt","secondary":"Next spring, Elbryan would hunt with the adults, the games of his youth left behind.","answer":"(名词) 狩猎的行为。\n\n来年春天,埃尔布莱恩将跟随大人们去打猎,童年时的嬉戏时光已成往事。"},{"primary":"stunned","secondary":"CHAPTER 4 The Death of Dundalis\n\nElbryan and Pony were stunned and terrified for many seconds.","answer":"(动词)使丧失行动能力;尤其是通过诱发定向障碍或意识丧失来达到这一目的。\n\n第四章 邓达利斯的死\n\n埃尔布莱恩和波尼愣住了,恐惧笼罩着他们,足足有好几秒钟。"},{"primary":"blink","secondary":"The Lady didn't blink, but suddenly Elbryan knew that he spoke mistakenly.","answer":"(名词) 迅速闭上双眼再睁开的动作。\n\n那位女士连眼皮都没眨一下,但埃尔布莱恩突然意识到自己说错了。"},{"primary":"height","secondary":"A six-foot bear could indeed appear twice that height when angered.","answer":"(名词) 从某物底部到顶部的距离。\n\n一只六英尺高的熊一旦发怒,看起来确实会显得有两倍那么高。"},{"primary":"loved","secondary":"It was obvious that Avelyn had loved his mother dearly, and yet, there was a sincerity in his.","answer":"(动词) (通常为及物动词,有时也可作不及物动词或表状态) 对(某人或某物)怀有深厚的情感。\n\n很明显,阿维林非常爱他的母亲,然而,他的言语中却透着一种真诚。"},{"primary":"tracks","secondary":"Juraviel stopped in his tracks and stared at the young man.","answer":"(名词) 某物经过后留下的痕迹。\n\n尤拉维尔猛地停下脚步,盯着那个年轻人。"},{"primary":"student","secondary":"Rumors hinted that students of St.-Mere-Abelle had been dismissed for less.","answer":"(名词)研究或学习某一特定学科的人。\n\n有传言称,圣梅尔-阿贝尔学校的学生曾因更轻微的过失就被开除。"},{"primary":"dismiss","secondary":"Rumors hinted that students of St.-Mere-Abelle had been dismissed for less.","answer":"(动词)解雇;终止雇佣或服务关系。\n\n有传言称,圣梅尔-阿贝尔学校的学生曾因更轻微的过失就被开除。"},{"primary":"determined","secondary":"His direction chosen, he started off, determined to find the singer.","answer":"(动词)设定……的边界或限制。\n\n方向一定,他便动身出发,决心要找到那位歌手。"},{"primary":"slide","secondary":"A grinding sound, the great gates sliding open, brought the young man from his contemplations.","answer":"幻灯片\n\n一阵吱呀声响起,巨大的城门缓缓滑开,将那年轻人从沉思中惊醒。"},{"primary":"ranks","secondary":"And the goblin ranks, for all the carnage, remained deep, and seemed undiminished.","answer":"排名\n\n尽管战况惨烈,哥布林的队伍依然人头攒动,丝毫未见减弱。"},{"primary":"range","secondary":"The conditioning ranged from sleep deprivation to long periods of hunger.","answer":"范围\n\n这种训练手段包括从剥夺睡眠到长时间挨饿等各种方式。"},{"primary":"wear","secondary":"After a few moments, Elbryan's nerves began to wear thin.","answer":"穿着\n\n过了一会儿,埃尔布莱恩开始感到焦躁不安。"},{"primary":"middle","secondary":"Jojonah pointed to a case near to the middle of the room, and motioned for Avelyn to approach it.","answer":"中间\n\n乔乔纳指了指房间中央附近的一个箱子,示意艾维琳走过去。"},{"primary":"climb","secondary":"Somebody was climbing up the gutter.","answer":"攀登\n\n有人正在沿着排水沟往上爬。"},{"primary":"steps","secondary":"After a dozen more skipping steps, the creature paused and turned.","answer":"步骤\n\n又轻快地跳了十几步后,那生物停了下来,转身望去。"},{"primary":"ball","secondary":"Over the rail the pitch ball went, taking the three powries with it.","answer":"舞蹈\n\n投出的球越过栏杆,带走了那三只小精灵。"},{"primary":"malachite","secondary":"Malachite, amber, serpentine, ruby, in that order.","answer":"孔雀石\n\n孔雀石、琥珀、蛇纹石、红宝石,依此顺序。"},{"primary":"opening","secondary":"Elbryan saw an opening and let fly a combination left jab, step, and right cross.","answer":"开场\n\n埃尔布莱恩抓住机会,迅速打出左刺拳、跨步、右直拳的连击。"},{"primary":"knock","secondary":"Then back left, then left again, knocking wide the creature's club arm.","answer":"敲击\n\n接着向左后方闪避,再向左闪避,将那生物的棍状手臂打偏。"},{"primary":"pursuit","secondary":"Tallareyish turned in pursuit and came forward, one step, left foot.","answer":"追逐\n\n塔拉雷伊什转身追赶,向前迈了一步,左脚。"},{"primary":"hate","secondary":"Tuntun, almost expecting the attack from this man who so hated her, was not caught by surprise.","answer":"来了\n\n屯屯早料到这个如此憎恨她的男人会发动袭击,因此并未感到措手不及。"},{"primary":"music","secondary":"Hooves of music rend the gloom\n\nBearing Nightbird, know your doom!","answer":"音乐\n\n音乐的蹄声撕裂了阴霾\n\n驮着夜鸟,你该知道自己的命运了!"},{"primary":"listen","secondary":"As he listened, Avelyn felt the mystery melting around him.","answer":"听\n\n听着听着,阿维琳感到身周的谜团正在消散。"},{"primary":"general","secondary":"The monk was soon again back on the road, riding steadily and making a general course to the north.","answer":"概述\n\n那名僧人很快又踏上了旅途,骑马稳稳地向前,大致朝着北方前进。"},{"primary":"emotion","secondary":"Panic hit him, wrestling hard with a jumble of other emotions that Elbryan did not understand.","answer":"情感\n\n恐慌席卷了他,与一团他无法理解的复杂情绪激烈交缠。"},{"primary":"terrible","secondary":"He put miles and miles behind him, between him and that terrible place called St.-Mere-Abelle.","answer":"可怕的\n\n他身后已留下漫长的路途,将自己与那个名为圣梅尔-阿贝尔的可怕地方隔开。"},{"primary":"bother","secondary":"What was it about Avelyn that really bothered Siherton?","answer":"麻烦\n\n艾维琳身上到底有什么地方让西赫顿如此介意?"},{"primary":"mighty","secondary":"The mighty centaur laughed heartily.","answer":"强大的\n\n那威武的半人马开怀大笑。"},{"primary":"kingdom","secondary":"The real challenge lay in the south, in the most prosperous and populous kingdom, in Honce-the-Bear.","answer":"王国\n\n真正的挑战在于南方,在那片最富庶、人口最多的王国——熊之霍恩斯。"},{"primary":"fiercely","secondary":"Elbryan tugged more fiercely with his other hand instead, increasing the pace of the roll.","answer":"激烈地\n\n埃尔布莱恩反而用另一只手更用力地一拉,使滚动的速度加快了。"},{"primary":"orange","secondary":"She saw the ember fall from a log, orange glowing like the eye of some hideous night creature.","answer":"橙色\n\n她看见一簇余烬从木头上掉落,橙红的光芒宛如某种丑陋夜行生物的眼睛。"},{"primary":"greater","secondary":"Putting his personal safety aside, Avelyn had to consider the greater good.","answer":"更大\n\n阿维琳不得不抛开个人安危,将大局放在首位。"},{"primary":"foolish","secondary":"He screwed up his face, the ridiculous nickname sounding foolish in his ears.","answer":"愚蠢的\n\n他皱起眉头,这个荒唐的绰号听起来让他觉得很可笑。"},{"primary":"bellow","secondary":"\"To Shane McMichael!\" the two mug holders bellowed together.","answer":"下文\n\n“为肖恩·麦克迈克尔干杯!”两个端着酒杯的人齐声高呼。"},{"primary":"directly","secondary":"Shocked back to his senses, Avelyn turned his attention to the high roof directly below him.","answer":"直接\n\n阿维林猛然惊醒,回过神来,随即把目光投向正下方那高耸的屋顶。"},{"primary":"beam","secondary":"The girl pushed hard, but the beam would not give.","answer":"光束\n\n女孩使劲推,但横梁纹丝不动。"},{"primary":"robe","secondary":"Avelyn's brown robes were tattered and dripping; he had the stench of burned hair about him.","answer":"罗贝\n\n艾维林的棕色长袍破破烂烂,湿漉漉的;身上散发着焦发刺鼻的气味。"},{"primary":"remaining","secondary":"He pushed aside a timber gingerly, when he heard the remaining roof groan in protest and went down to his knees, peering in.","answer":"剩余\n\n他小心翼翼地挪开一根木梁,只听剩下的屋顶发出抗议般的呻吟,随即塌陷下来,他跪在地上,探头向内张望。"},{"primary":"torch","secondary":"Elbryan took the torch with him as he pushed aside the vines and entered the inner chamber.","answer":"火炬\n\n埃尔布莱恩手持火把,拨开藤蔓,走进了内室。"},{"primary":"piece","secondary":"Belster presented him with a piece of paper, a bill.","answer":"篇\n\n贝尔斯特递给他一张纸,是一张账单。"},{"primary":"steadily","secondary":"But finally she was breathing somewhat steadily again.","answer":"稳步\n\n但最后,她的呼吸总算又稍微平稳了一些。"},{"primary":"fighting","secondary":"So he suffered the brutal hours of the day, the fighting in which Quintall almost always bested him.","answer":"战斗\n\n于是,他忍受着白天那段煎熬的时光,在那些较量中,昆塔尔几乎总是胜过他。"},{"primary":"thinking","secondary":"A combination of strength and agility, a balanced, thinking warrior.","answer":"思考\n\n兼具力量与敏捷,是一位沉着冷静、善于思考的战士。"},{"primary":"possibly","secondary":"Elbryan found that he could not possibly maintain such a stance.","answer":"可能\n\n埃尔布莱恩发现,他根本无法保持这种姿态。"},{"primary":"glare","secondary":"Gofflaw growled at her, but under Jill's unyielding glare, he replaced his sword in its sheath.","answer":"眩光\n\n戈夫劳冲她低吼了一声,但在吉尔那毫不退让的瞪视下,他还是将剑收进了剑鞘。"},{"primary":"case","secondary":"Jojonah pointed to a case near to the middle of the room, and motioned for Avelyn to approach it.","answer":"案例\n\n乔乔纳指了指房间中央附近的一个箱子,示意艾维琳走过去。"},{"primary":"relax","secondary":"He waited, and waited some more, until Tuntun relaxed, and then he sprang like a hunting cat.","answer":"放松\n\n他静静等待,又等了一会儿,直到嘟嘟放松下来,随即像一只狩猎的猫一样猛地扑了过去。"},{"primary":"carefully","secondary":"He paused and very carefully turned a circuit, listening intently, trying to focus on the sound.","answer":"仔细地\n\n他停了下来,非常小心地转了一圈,全神贯注地聆听,试图锁定那个声音。"},{"primary":"monstrous","secondary":"Without a word of congratulations, Bradwarden lifted his monstrous bow and drew back.","answer":"骇人听闻的\n\n布拉德沃登没有说一句祝贺的话,便举起那张巨大的弓,拉开了弓弦。"},{"primary":"trouble","secondary":"The elves, of course; had little trouble keeping ahead of him, silent and out of sight.","answer":"麻烦\n\n精灵们自然轻而易举地保持着领先,悄无声息,不露踪迹。"},{"primary":"tragedy","secondary":"The danger has passed.\"\n\nElbryan winced at the reference to the tragedy of Dundalis.","answer":"悲剧\n\n“危险已经过去了。”\n\n一提到邓达利斯的悲剧,埃尔布莱恩不禁皱了皱眉。"},{"primary":"warning","secondary":"One of his senses subtly called out a warning to him.","answer":"警告\n\n他的一种直觉隐约向他发出了警告。"},{"primary":"fairly","secondary":"It was fairly circular, perhaps eight feet in diameter.","answer":"相当\n\n它形状近似圆形,直径大概有八英尺。"},{"primary":"sunstone","secondary":"The monk quickly took out his yellow sunstone, falling immediately into its defensive magic.","answer":"日长石\n\n僧人迅速掏出他的黄色日石,随即被其防御魔法所笼罩。"},{"primary":"boulder","secondary":"There came a cry and a second shape darted out from behind the boulder, scrambling away.","answer":"巨石\n\n只听一声尖叫,又一个身影从巨石后窜出,仓皇逃窜。"},{"primary":"rockman","secondary":"The rockman scrutinized the terrain ahead and considered the distance.","answer":"洛克人\n\n岩石人仔细观察了前方的地形,并估算了一下距离。"},{"primary":"angry","secondary":"The boy looked away, angry at himself for allowing such feelings.","answer":"生气\n\n男孩移开了视线,为自己竟会产生这种情绪而感到愤怒。"},{"primary":"weakness","secondary":"Did the dactyl bring the weakness, the immorality, to humanity?","answer":"弱点\n\n是达克提尔给人类带来了软弱和不道德吗?"},{"primary":"race","secondary":"It told him these creatures were not of the evil goblin race; these were friends to be trusted.","answer":"比赛\n\n它告诉他,这些生物并非邪恶的哥布林一族;它们是值得信赖的朋友。"},{"primary":"refuse","secondary":"The elf offered a hand, but Elbryan stubbornly refused, struggling shakily to his feet.","answer":"拒绝\n\n精灵伸出手想扶他,但埃尔布里安固执地拒绝了,摇摇晃晃地挣扎着站了起来。"},{"primary":"survive","secondary":"Those folk who had survived the bombardment soon envied their dead companions.","answer":"生存\n\n那些在轰炸中幸存下来的人,很快便开始羡慕那些死去的同伴了。"},{"primary":"afraid","secondary":"Again the young monk could only shrug helplessly, wanting to know but afraid to know.","answer":"害怕\n\n年轻的和尚只能再次无奈地耸耸肩,既想知道,又怕知道。"},{"primary":"event","secondary":"She would dress in the finest gowns and attend the highest social events in Palmaris, even in Ursal!","answer":"活动\n\n她会身着最华美的礼服,出席帕尔马里斯乃至乌尔萨尔最高规格的社交活动!"},{"primary":"flight","secondary":"At the last moment, the arrow turned in mid-flight, thudding hard into a tree.","answer":"航班\n\n就在千钧一发之际,箭在空中突然转向,重重地射进了一棵树上。"},{"primary":"living","secondary":"Nor were there any living goblins or giants, Pony, realized, with small relief.","answer":"生活\n\n“也没有活着的哥布林或巨人,”波尼意识到这一点,心里稍微松了口气。"},{"primary":"smooth","secondary":"There were several various stones within, all smooth and polished.","answer":"流畅\n\n里面有几块各式各样的石头,都光滑圆润。"},{"primary":"wounds","secondary":"Puncture wounds, as from arrows, only much smaller.","answer":"伤口\n\n穿刺伤,就像箭伤一样,只是要小得多。"},{"primary":"spring","secondary":"He noted the elf's spring, heard the wings fluttering.","answer":"跳\n\n他注意到精灵的轻盈步伐,听见了翅膀的扑动声。"},{"primary":"excitement","secondary":"Indeed he was tired from the previous day's labors, but so full of excitement that.","answer":"兴奋\n\n他确实因前一天的劳累而感到疲惫,但内心却充满了兴奋。"},{"primary":"openly","secondary":"Not that many humans had ever tasted the elixir, for the elves did not deal openly in the juice.","answer":"公开地\n\n尝过这种灵药的人并不多,因为精灵们并不公开贩卖这种果汁。"},{"primary":"descend","secondary":"Sometime later, as dusk descended, Pony's senses warned her that she was not alone.","answer":"向下\n\n过了一会儿,黄昏降临,波妮的直觉告诉她,她并不孤单。"},{"primary":"confirm","secondary":"Their reaction confirmed to Jill that she had made the right choice.","answer":"确认\n\n他们的反应让吉尔确信,自己做出了正确的选择。"},{"primary":"momentum","secondary":"The elf went into a headlong roll, right between the young man's widespread legs, came up to his feet behind the yelling and turning Elbryan, and reversed his momentum, stabbing both his poles back.","answer":"势头\n\n精灵猛地向前翻滚,正好从那年轻人张开的双腿之间穿过,随即在嘶吼着扭身的埃尔布里安身后站起身来,借势反向发力,将两根长矛同时刺了回去。"},{"primary":"parry","secondary":"Strike, parry, strike - the same routine.","answer":"格挡\n\n出招、格挡、出招——一成不变的套路。"},{"primary":"claim","secondary":"This time, though, there was something more to the claim, something personal.","answer":"主张\n\n不过,这次的指控背后还有更深层的原因,涉及个人恩怨。"},{"primary":"cloak","secondary":"With his posture and his cloak the creatures couldn't be sure of his race.","answer":"斗篷\n\n由于他的姿态和斗篷,那些生物无法确定他的种族。"},{"primary":"whole","secondary":"The crew were blaming the monks for their discomfort, for this whole journey.","answer":"整个\n\n船员们把这次旅途中的种种不适都归咎于那些僧人。"},{"primary":"main","secondary":"Avelyn let Jill lead him through the village, down the one main road, heading north.","answer":"手\n\n艾维琳让吉尔带他穿过村庄,沿着唯一的一条主路向北走去。"},{"primary":"square","secondary":"And of the square sail that was drifting her way through the gray mist.","answer":"正方形\n\n还有那艘正乘着灰蒙蒙的雾气向她漂来的方帆船。"},{"primary":"hint","secondary":"No answer, no hint, just the murmur, an endless string of mysterious whispers.","answer":"提示\n\n没有答案,没有线索,只有那低语,一串永无止境的神秘耳语。"},{"primary":"loss","secondary":"For the boy who had just witnessed such carnage and loss, the semiconscious state was preferable.","answer":"损失\n\n对于那个刚刚目睹了如此惨状和巨大损失的男孩来说,半昏迷的状态反倒更令人欣慰。"},{"primary":"minor","secondary":"There were minor points untouched, to be sure.","answer":"次要的\n\n当然,确实还有一些细节没有涉及。"},{"primary":"curiosity","secondary":"The kiss shifted, from curiosity to urgency, then back to gentleness.","answer":"(名词) (不可数) 求知欲;通过提问、调查或探索来了解事物的倾向。\n\n那个吻的氛围发生了变化,从好奇转为迫切,又回到了温柔。"},{"primary":"silent","secondary":"The elves, of course; had little trouble keeping ahead of him, silent and out of sight.","answer":"(名词) 寂静之物;寂静的时刻。\n\n精灵们自然轻而易举地保持着领先,悄无声息,不露踪迹。"},{"primary":"elbow","secondary":"Dazed, bleeding, Elbryan pulled himself up to his elbows, looking over the edge of the cairn.","answer":"(名词) 上臂与前臂之间的关节。\n\n埃尔布莱恩神志恍惚,浑身是血,他撑着肘部撑起身子,探头望向石堆边缘。"},{"primary":"cap","secondary":"Elbryan hardly knew what a \"bloody cap\" was, and so the meaning of his own curse was lost on him.","answer":"(名词) 一种贴合头型的帽子,既可以是无檐的,也可以是带帽檐的。\n\n埃尔布莱恩几乎不知道“血帽”是什么,因此他自己咒骂的话也完全没听懂。"},{"primary":"comfort","secondary":"Quiet and sweet were the notes, but that did little to comfort Elbryan.","answer":"(名词) 知足,安适。\n\n那些音符虽轻柔甜美,却未能给埃尔布莱恩带来多少安慰。"},{"primary":"prepare","secondary":"He had to prepare the men and women of Honce-the-Bear, and all of Corona.","answer":"(名词) 准备\n\n他必须让熊镇的男女老少,以及整个科罗纳的居民做好准备。"},{"primary":"declare","secondary":"Precious,\" the merchant declared.","answer":"(动词) 阐明、解释、阐释。\n\n“真珍贵,”商人说道。"},{"primary":"instinct","secondary":"Subconscious instinct alone guided her.","answer":"(名词)一种自然或与生俱来的冲动或行为。\n\n她完全是凭着潜意识的本能行事。"},{"primary":"ring","secondary":"They had fallen as if they had formed a defensive ring, yet there were no human bodies near them.","answer":"(名词) (物理学) 呈圆形形状的固体物体。\n\n他们倒下的样子仿佛曾组成一个防御圈,然而周围却没有人的尸体。"},{"primary":"forearm","secondary":"Another arrow came by and slashed across Elbryan's forearm as he struggled.","answer":"(名词) 手臂中位于手腕和肘部之间的部分。\n\n就在埃尔布莱恩挣扎之际,又一支箭射来,划过他的前臂。"},{"primary":"sting","secondary":"He felt the sting of the light spears, six of them, in his back, his side, deep in one thigh.","answer":"(名词) 被蜇后皮肤上留下的肿块。\n\n他感到六支光之长矛刺入他的背部、侧身,还有一支深深刺入大腿。"},{"primary":"dart","secondary":"He moved to the nearest tree, stalked about it, then darted to the next.","answer":"(名词)一种尖头的投掷武器,设计用于徒手投掷,例如短矛或标枪\n\n他走到最近的一棵树旁,绕着树转了几圈,然后迅速窜向下一棵树。"},{"primary":"beg","secondary":"They showed no mercy; Pony saw one woman beg for her life, offer herself to the goblins circling about her.","answer":"(名词) 乞求的行为;恳切的请求。\n\n他们毫不留情;波尼看到一名女子在求饶,甚至向围在她身边的哥布林献身。"},{"primary":"charged","secondary":"The fomorian charged ahead with a tremendous, hideous howl, its cudgel going high.","answer":"(动词)指派某项任务或职责给\n\n那只福莫里亚人发出震耳欲聋的恐怖嚎叫,挥舞着木棒冲了上来。"},{"primary":"trust","secondary":"She knew, too, that she had come to trust this man.","answer":"(名词) 对某人或某种品质的信任或依赖。\n\n她也知道,自己已经开始信任这个男人了。"},{"primary":"squarely","secondary":"He straightened his shoulders and looked squarely at the imposing Master Siherton.","answer":"(副词)呈正方形;成直角\n\n他挺直了肩膀,直视着气势非凡的西赫顿大师。"},{"primary":"gem","secondary":"The dwarf caught the gem securely, but surrendered his hold on the ladder.","answer":"(名词)一种珍贵的宝石,通常具有较高的经济价值,或因其美丽或光泽而备受珍视。\n\n矮人稳稳地接住了宝石,却松开了扶着梯子的手。"},{"primary":"witness","secondary":"For the boy who had just witnessed such carnage and loss, the semiconscious state was preferable.","answer":"(名词) 对事实或事件的证实;证词。\n\n对于那个刚刚目睹了如此惨状和悲痛的男孩来说,半昏迷的状态反倒更令人欣慰。"},{"primary":"mount","secondary":"The look the stocky man gave him in reply did little to allay the monk's mounting suspicions.","answer":"(名词) 小山或山。\n\n那个身材魁梧的男人回敬他的眼神,丝毫未能消除僧人心中日益加深的疑虑。"},{"primary":"stocky","secondary":"The look the stocky man gave him in reply did little to allay the monk's mounting suspicions.","answer":"(形容词)(指人或动物)结实;体格健壮;身形魁梧。\n\n那个身材魁梧的男人回敬他的眼神,丝毫未能消除僧人心中日益加深的疑虑。"},{"primary":"test","secondary":"There would be a measure in this of his manhood, Avelyn realized, a test he could not fail.","answer":"(名词) 挑战、考验。\n\n艾维琳意识到,这将是他男子气概的试金石,一场他绝不能失败的考验。"},{"primary":"level","secondary":"By the beginning of the third year, the level of jealousy among the four began to rise noticeably.","answer":"(名词) 一种用于检测表面是否水平,或用于划定水平或垂直基准线的工具。\n\n到了第三年年初,这四人之间的嫉妒情绪开始明显加剧。"},{"primary":"basket","secondary":"That done, he hoisted the last basket and started back the half mile to the trough.","answer":"(名词)一种轻便的容器,通常呈圆形,顶部敞开,底部逐渐收窄。\n\n做完这些,他扛起最后一个篮子,开始往回走,返回半英里外的水槽。"},{"primary":"rain","secondary":"A moment later, a light rain began to fall.","answer":"(名词) 从云中落下的凝结水。\n\n片刻之后,细雨开始飘落。"},{"primary":"rail","secondary":"Quintall was already at the rail, pointing far out and down.","answer":"(名词) 连接两个支撑点之间的水平横杆,用于支撑或作为屏障;栏杆。\n\n昆塔尔已经站在栏杆边,手指向远处下方。"},{"primary":"thunder","secondary":"Then the great stallion leaped away, thundering back into the shadows, into the brush.","answer":"雷声\n\n接着,那匹雄壮的骏马猛地跃开,如雷般奔回阴影之中,消失在灌木丛里。"},{"primary":"east","secondary":"Then she gave a quick glance to the east, which was still quiet.","answer":"东\n\n接着,她朝东方瞥了一眼,那里依然一片寂静。"},{"primary":"zombie","secondary":"But when he came up from the roll, the zombie was there, suddenly, magically.","answer":"僵尸\n\n但他从翻滚中起身时,那只僵尸却突然、仿佛凭空般地出现在那里。"},{"primary":"knowledge","secondary":"The large man's knowledge of goblins simply didn't reconcile with this sight before him.","answer":"知识\n\n这位魁梧男子对哥布林的了解,与眼前这一幕完全无法吻合。"},{"primary":"ignore","secondary":"To his credit, Elbryan had pretty much learned to ignore them.","answer":"忽略\n\n值得称道的是,埃尔布莱恩基本上已经学会了无视他们。"},{"primary":"awake","secondary":"This time, though, she was awake.","answer":"正文\n\n不过,这次她醒着。"},{"primary":"obsidian","secondary":"The spirit had come back to Corona encased in obsidian!","answer":"黑曜石\n\n那股精神裹挟着黑曜石,重返了科罗纳!"},{"primary":"swift","secondary":"Avelyn was ready for the charge, his hands moving in swift defense.","answer":"Swift\n\n阿维林已做好迎战的准备,双手迅速做出防御动作。"},{"primary":"flames","secondary":"There came a bright flash and then the monk lay still, low flames licking his lifeless body.","answer":"火焰\n\n一道刺眼的光芒闪过,僧人随即一动不动地倒下,微弱的火焰正舔舐着他那已无生命迹象的躯体。"},{"primary":"soul","secondary":"But that fear couldn't hold against the river of his own soul, pouring forth in great release.","answer":"灵魂\n\n但那份恐惧终究无法阻挡他灵魂之河的奔涌,那河流正以一种巨大的释放之势奔涌而出。"},{"primary":"belt","secondary":"He put his sword in his belt, found a spade; and began to dig.","answer":"城市\n\n他把剑插在腰带上,找来一把铁锹,开始挖起来。"},{"primary":"story","secondary":"She considered Avelyn's story then, his abandonment of the order.","answer":"故事\n\n她随后想起了阿维琳的故事,以及他退出教团的事。"},{"primary":"mark","secondary":"His arrow hit the mark right down the middle, and the dark form fell away.","answer":"田地\n\n他的箭正中靶心,那道黑影应声倒地。"},{"primary":"occasion","secondary":"On those first two occasions, the hopeful lad had fallen victim to ever more cunning elvish traps.","answer":"机会\n\n在那前两次遭遇中,这位满怀希望的少年都落入了精灵们愈发狡猾的陷阱之中。"},{"primary":"anyone","secondary":"How could anyone, or anything, that could pipe so beautifully pose a danger?","answer":"任何人\n\n能吹奏出如此美妙乐声的人或物,怎么可能构成威胁呢?"},{"primary":"deeply","secondary":"Elbryan sighed deeply and turned to Pony.","answer":"深深地\n\n埃尔布莱恩深深地叹了口气,转过身来面对波尼。"},{"primary":"special","secondary":"Had their encounter really been special to Dansally?","answer":"特别\n\n那次相遇对丹萨莉来说真的那么特别吗?"},{"primary":"bird","secondary":"All the world seemed still, not a bird calling, not a whisper of wind.","answer":"鸟\n\n整个世界仿佛静止了,没有鸟儿啼鸣,也没有一丝风声。"},{"primary":"mystery","secondary":"He was at ease again, the uncomfortable feelings tossed out with the mystery of the night.","answer":"谜团\n\n他又恢复了从容,那些不安的情绪随着夜色的神秘一并消散了。"},{"primary":"row","secondary":"Turning to the dark row of stately pines, the ranger instinctively understood the source.","answer":"行\n\n护林员望向那排幽暗而挺拔的松树,本能地明白了声音的来源。"},{"primary":"forms","secondary":"They started off again, side by side, their bulky forms filling the narrow passageway.","answer":"表单\n\n他们再次并肩前行,魁梧的身躯几乎塞满了狭窄的通道。"},{"primary":"deer","secondary":"And to a deer, perhaps the most skittish creature of all ...","answer":"鹿\n\n至于鹿,这或许是所有生物中最胆小的……"},{"primary":"themselves","secondary":"The three older men moved to the edge of the tower and talked among themselves.","answer":"他们自己\n\n那三位年长的男子走到塔楼边缘,彼此交谈起来。"},{"primary":"loudly","secondary":"He wanted to proclaim his independence loudly and openly, but before he got the first stuttered word out of his mouth, Juraviel hopped into a short flight once more.","answer":"大声地\n\n他本想大声而公开地宣告自己的独立,但还没等他结结巴巴地吐出第一个字,朱拉维尔又腾空而起,飞走了。"},{"primary":"faster","secondary":"He moved faster still when he heard the voices of the hunters.","answer":"更快\n\n听到猎人的声音后,他加快了脚步。"},{"primary":"hurt","secondary":"Connor lifted his head up from her, and he seemed to her truly hurt and saddened.","answer":"快\n\n康纳从她身上抬起了头,在她看来,他似乎真的感到受伤和悲伤。"},{"primary":"rocks","secondary":"They twisted and gouged, floating about and through the bare windblown rocks of the Barbacan.","answer":"摇滚\n\n它们扭曲盘旋,在巴尔巴坎那光秃秃、被风吹蚀的岩石间游荡穿行。"},{"primary":"overwhelmed","secondary":"Thus, Avelyn simply sat staring outward, too overwhelmed even to eat, and waited for the Windrunner.","answer":"不知所措\n\n于是,艾维琳只是坐在那里望着窗外,情绪过于激动以至于连饭都吃不下,静静等待着风行者的到来。"},{"primary":"hesitation","secondary":"When he thought about his hesitation, it only strengthened his resolve.","answer":"犹豫\n\n当他想到自己的犹豫时,这反而更加坚定了他的决心。"},{"primary":"screams","secondary":"This time, the screams were real.","answer":"尖叫声\n\n这次,尖叫声是真实的。"},{"primary":"telling","secondary":"Dansally's shrug was telling to the perceptive monk.","answer":"计数\n\n丹萨利的耸肩之举,让这位敏锐的僧人看在眼里。"},{"primary":"smash","secondary":"She felt a rush of wind and heard a crash behind her, a giant club smashing against armor.","answer":"粉碎\n\n她感到一阵狂风袭来,耳后传来一声巨响,只见一根巨棒狠狠砸在盔甲上。"},{"primary":"stagger","secondary":"The goblin staggered weirdly, dropped its weapon, and fell to its knees.","answer":"踉跄\n\n那只哥布林怪异地踉跄了一下,掉落了武器,随即跪倒在地。"},{"primary":"heavily","secondary":"A cry of agony within the house froze her in place, and she leaned heavily on the frame for support.","answer":"严重地\n\n屋内传来一声痛苦的呻吟,她顿时僵在原地,重重地靠在门框上支撑身体。"},{"primary":"grip","secondary":"The giant released its grip and Elbryan fell to the ground.","answer":"抓地力\n\n巨人松开了手,埃尔布莱恩跌落在地。"},{"primary":"twisted","secondary":"The stone's magic could be twisted, though - could be inverted.","answer":"扭曲的\n\n不过,这块石头的魔力是可以被扭曲的——也可以被逆转。"},{"primary":"senses","secondary":"Shocked back to his senses, Avelyn turned his attention to the high roof directly below him.","answer":"感官\n\n阿维林猛然惊醒,回过神来,随即把目光投向正下方的高耸屋顶。"},{"primary":"perspective","secondary":"From Juraviel's perspective, the first meeting had gone quite well.","answer":"视角\n\n在尤拉维尔看来,第一次会面进行得相当顺利。"},{"primary":"stubborn","secondary":"She left the stubborn group with one final reminder.","answer":"固执\n\n她离开这群固执的人时,最后叮嘱了一句。"},{"primary":"particular","secondary":"But it was Avelyn's turn to crank, and the taskmasters were particular about such things.","answer":"特定的\n\n但轮到艾维琳转动摇柄了,而监工们对这种事向来很讲究。"},{"primary":"dryly","secondary":"\"Exactly my point,\" Juraviel said dryly, and started on his way.","answer":"干巴巴地\n\n“我就是这个意思,”尤拉维尔干巴巴地说了一句,随即转身离去。"},{"primary":"quarter","secondary":"Connor left her at the door of the private quarters behind Fellowship Way.","answer":"季度\n\n康纳把她留在“同袍之路”后方私人住宅的门口。"},{"primary":"cheek","secondary":"A tear rolled down Avelyn's cheek, then another.","answer":"脸颊\n\n一滴泪从艾维琳的脸颊滑落,接着又滑落了一滴。"},{"primary":"series","secondary":"Pireth Tulme was but one in a series of keeps dotting Honce-the-Bear's coastline.","answer":"系列\n\n皮雷斯·图尔姆不过是散布在熊之霍恩斯海岸线上的一座堡垒而已。"},{"primary":"slump","secondary":"His shoulders slumped, the young man needing the stone wall for support.","answer":"偶然\n\n他垂头丧气,不得不靠着石墙支撑身体。"},{"primary":"seek","secondary":"She couldn't look at the man but kept her eyes locked on the stars, as if seeking refuge high above.","answer":"查找\n\n她不敢看那个男人,目光始终凝视着星空,仿佛在高处寻求庇护。"},{"primary":"leap","secondary":"Avelyn winced, seeing men leaping from the deck, their doom at hand.","answer":"飞跃\n\n阿维琳看到男人们从甲板上跳下,死期将至,不禁皱起了眉头。"},{"primary":"fate","secondary":"What better fate and final resting place for an Abellican monk?","answer":"请\n\n对于一位阿贝利坎僧人来说,还有比这更完美的命运和长眠之地吗?"},{"primary":"trapper","secondary":"The three trappers were at a loss; Brother Avelyn could think of no sanctuary closer than St.","answer":"楼梯\n\n这三名捕兽人束手无策;阿维林兄弟想不出比圣……更近的避难所了。"},{"primary":"kind","secondary":"And Maiyer Dek, among the largest of his giant kind, was not accustomed to being dwarfed.","answer":"孩子\n\n而迈耶·德克作为同族中体型最大的巨人之一,并不习惯被别人比下去。"},{"primary":"support","secondary":"He braced himself, used the solid tree as support.","answer":"支持\n\n他稳住身子,借那棵粗壮的树作为支撑。"},{"primary":"courage","secondary":"He wanted Juraviel along on this journey, needed the elf's wisdom and courage to bolster his own.","answer":"勇气\n\n他希望朱拉维尔能一同踏上这段旅程,需要这位精灵的智慧与勇气来增强自己的力量。"},{"primary":"suffer","secondary":"But she suffered that pain, and let Connor kiss her, every once in a while.","answer":"遭受\n\n但她忍受了那种痛苦,偶尔也会让康纳亲吻她。"},{"primary":"avoid","secondary":"Elbryan stepped left as well and spun, avoiding an awkward cut of its sword.","answer":"避免\n\n埃尔布莱恩也向左闪身并转身,避开了对方那记笨拙的剑斩。"},{"primary":"arrive","secondary":"They arrived in dirty Tinson late that afternoon.","answer":"即将到来\n\n当天下午晚些时候,他们抵达了脏乱的廷森镇。"},{"primary":"awaken","secondary":"But the demon spirit had awakened, had come back from its long dormancy into the statuelike form it had left behind after its last visit to the world called Corona.","answer":"觉醒\n\n但那恶灵已然苏醒,从长久的沉睡中苏醒过来,恢复成了上次造访名为“科罗纳”的世界后留下的雕像般的形态。"},{"primary":"blackness","secondary":"So shall you all To blackness evermore.","answer":"黑人身份\n\n你们也都要永远沉沦于黑暗之中。"},{"primary":"magma","secondary":"Avelyn's faith was put to the test as the magma flow approached, as the heat intensified.","answer":"熔岩\n\n随着岩浆流逼近,热浪愈发炽烈,艾维琳的信念经受了考验。"},{"primary":"burst","secondary":"Father Abbot Markwart burst out into the most heartfelt laughter Avelyn had ever heard.","answer":"爆发\n\n马克瓦特院长发出了阿维琳有生以来听过的最发自内心的笑声。"},{"primary":"stretch","secondary":"Avelyn looked back to see her stretched languidly on the bed, blue eyes sparkling.","answer":"拉伸\n\n艾维琳回头一看,只见她懒洋洋地躺在床上,蓝色的眼睛闪闪发光。"},{"primary":"slender","secondary":"Its limbs were slender and long and its armor a silver shining coat of fine interlocking links.","answer":"苗条\n\n它的四肢纤细修长,身披一袭银光闪闪的铠甲,由细密的链环紧密交织而成。"},{"primary":"jaw","secondary":"Its head, too, was somewhat human, except more angular, with a narrow jaw and pointed chin.","answer":"致电\n\n它的头部也颇具人形,只是轮廓更为棱角分明,下颌狭窄,下巴尖尖的。"},{"primary":"drift","secondary":"What song is this, drift through the trees\n\nTo lift men broken from their knees?","answer":"运营\n\n这是什么歌,在树林间飘荡\n\n让跌倒的人重新站起?"},{"primary":"dress","secondary":"The monk had shed his telltale brown robe in favor of the more normal dress of a villager.","answer":"连衣裙\n\n那位僧人脱下了那件显眼的褐色袈裟,换上了村民更为寻常的装束。"},{"primary":"cabin","secondary":"She only sighed, though, and resignedly closed the cabin door.","answer":"驾驶舱\n\n不过,她只是叹了口气,然后无奈地关上了舱门。"},{"primary":"harder","secondary":"He struggled harder, but the goblin would not let him drive his sword home.","answer":"更难\n\n他拼命挣扎,但那只哥布林就是不让他将剑刺入。"},{"primary":"passage","secondary":"He awoke later, much later, though he was unaware of the passage of time.","answer":"段落\n\n他后来醒了,过了很久才醒,尽管他并未察觉时间的流逝。"},{"primary":"horses","secondary":"The stampede came to a skidding halt, the wild horses accepting riders, villagers.","answer":"马\n\n狂奔的马群猛地停了下来,这些野马任由骑手和村民骑上。"},{"primary":"fears","secondary":"But Avelyn caught his fears in time and started the journey once more.","answer":"担忧\n\n但艾维琳及时察觉到了他的恐惧,于是再次踏上了旅程。"},{"primary":"warmth","secondary":"Elbryan felt his nose crack, felt the warmth of his blood running.","answer":"温暖\n\n埃尔布莱恩感到鼻梁断裂,感到温热的鲜血流淌下来。"},{"primary":"individual","secondary":"If that failed, the next task was to save as many individuals as possible.","answer":"个人\n\n如果那招行不通,接下来的任务就是尽可能多地拯救人员。"},{"primary":"scene","secondary":"The starkness of the scene from this vantage point, in this mounting light, amazed the companions.","answer":"场景\n\n从这个角度看,在渐强的光线中,眼前的景象如此荒凉,令同行者们惊叹不已。"},{"primary":"party","secondary":"The previous night, at the party, Pellimar had been loose with his tongue.","answer":"聚会\n\n前一晚在派对上,佩利马尔说话没把门。"},{"primary":"duck","secondary":"The powrie came across with a backhand slash, but Avelyn managed to duck beneath it.","answer":"鸭子\n\n那道能量以反手劈砍之势袭来,但艾维琳设法俯身躲过了。"},{"primary":"round","secondary":"The sight of it, round and firm and creamy white, seemed to calm him for a moment.","answer":"圆形\n\n那圆润、紧实、乳白色的景象,似乎让他平静了一会儿。"},{"primary":"news","secondary":"The reaction of Pettibwa and Graevis to the news of the marriage was not hard to predict.","answer":"(名词) 值得关注的新信息。\n\n佩蒂布瓦和格雷维斯对这则婚讯的反应并不难预料。"},{"primary":"prompt","secondary":"Again with his prompting, Pony turned and melted back into his strong embrace.","answer":"(名词) 提示或信号。\n\n在他的引导下,波妮转身,又依偎进了他强有力的怀抱。"},{"primary":"posture","secondary":"He stood with an air of superiority, posture perfect, hand on gilded rapier.","answer":"(名词) 一个人保持身体姿势的方式。\n\n他伫立在那里,神情傲然,姿态挺拔,手按在镀金的短剑上。"},{"primary":"crash","secondary":"She felt a rush of wind and heard a crash behind her, a giant club smashing against armor.","answer":"(名词) 一种突然、强烈、响亮的声音,例如钹发出的声音。\n\n她感到一阵狂风袭来,耳后传来一声巨响,只见一根巨棒狠狠砸在盔甲上。"},{"primary":"parent","secondary":"Avelyn was the youngest of ten, and his parents had been well into their forties when he was born.","answer":"(名词)一个人直接的生物学上的父母之一;母亲或父亲。\n\n艾维林是十个孩子中最小的一个,他出生时父母都已年过四十。"},{"primary":"pine","secondary":"His thoughts careened suddenly back to Pony and the kiss at the twin pines atop the ridge.","answer":"(名词) 松属(Pinus)的任何针叶树。\n\n他的思绪突然又回到了波尼身上,以及在山脊顶那两棵松树下的那个吻。"},{"primary":"wretch","secondary":"Elbryan thought that a curious thing; why hadn't the wretched humanoids pursued the fleeing humans?","answer":"(名词) 指一个不快乐、不幸或痛苦的人。\n\n埃尔布莱恩觉得这很奇怪;那些可恶的人形生物为什么没有追赶逃跑的人类呢?"},{"primary":"agony","secondary":"The sensation of war, of human agony.","answer":"(名词) 剧痛。\n\n战争的感受,人类的痛苦。"},{"primary":"responsibility","secondary":"What were his responsibilities?","answer":"(名词) 负有责任、须承担责任或需对此负责的状态。\n\n他的职责是什么?"},{"primary":"shout","secondary":"Elbryan fell back behind the twin pines, catching the shout in his throat, gasping for breath.","answer":"(名词) 一声或数声响亮的呼喊;一种激烈而突然的喧哗,尤其是人群表达喜悦、胜利、欢欣、愤怒或昂扬勇气的喧哗。\n\n埃尔布莱恩退到两棵松树后面,强忍住喉间的喊声,大口喘着气。"},{"primary":"barrier","secondary":"Jill worked to get behind the boat, to use it as a barrier against the powrie archers on the deck.","answer":"(名词) 阻挡通行的结构。\n\n吉尔努力游到船尾,打算利用船身作为屏障,抵挡甲板上那些鲍里弓箭手。"},{"primary":"bolster","secondary":"That thought bolstered the young man.","answer":"(名词) 一种大号靠垫或枕头。\n\n这个念头鼓舞了这位年轻人。"},{"primary":"smell","secondary":"Again it was the smell of his burning village that cleared his head.","answer":"(名词) 通过吸入含有某种物质气态分子的空气(对于水生动物而言则是水)而产生的感觉,这种感觉可能是愉快的,也可能是不愉快的。\n\n又是他家村庄燃烧的气味,让他头脑清醒过来。"},{"primary":"foe","secondary":"Elbryan didn't know what to make of this armored foe, and especially of its glowing spike.","answer":"(名词) 敌人。\n\n埃尔布莱恩不知该如何应对这个身披铠甲的敌人,尤其是它那发光的尖刺。"},{"primary":"crawl","secondary":"Juraviel was waiting for the young man when he crawled out of the hole.","answer":"(名词) 指用手和膝盖等缓慢移动,或频繁停顿的动作。\n\n当那个年轻人从洞里爬出来时,朱拉维尔正在等着他。"},{"primary":"stalk","secondary":"Without a word, the tall master stalked from the room.","answer":"(名词) 植物的茎或主轴,用于支撑结籽部位。\n\n那位高大的师傅一言不发,大步走出房间。"},{"primary":"exactly","secondary":"The girl cocked her head, suddenly realizing exactly where she was.","answer":"(副词)(方式)毫不含糊地;精确地。\n\n女孩歪了歪头,突然意识到自己究竟身在何处。"},{"primary":"heel","secondary":"Master Jojonah settled back on his heels but met the penetrating stare firmly.","answer":"(名词)脚与小腿连接处的后部。\n\n乔乔纳大师向后退了一步,却依然坚定地迎接着那灼人的目光。"},{"primary":"lives","secondary":"How much better their lives would be to know that she was well wed!","answer":"生活\n\n如果知道她嫁得很好,他们的生活该有多好啊!"},{"primary":"somewhere","secondary":"A soft melody vibrated in his ear, somewhere just below his consciousness.","answer":"(名词) 未指明或未知的(无法确定位置的)地点。\n\n一首柔和的旋律在他耳边回荡,就在他意识的边缘。"},{"primary":"presence","secondary":"That, combined with the presence of this magic-wielding assassin, surely concerned the monk.","answer":"(名词) 存在、在视线范围内、在咫尺之遥或触手可及的状态或情况。\n\n再加上这位精通魔法的刺客的出现,这无疑让那位僧人感到担忧。"},{"primary":"reveal","secondary":"At the end of the day, Juraviel revealed a new tool for him, the very cap he wore upon his head.","answer":"(名词)门窗框的外侧;门框。\n\n归根结底,朱拉维尔展示了他的一件新装备——他头上的那顶帽子。"},{"primary":"repeatedly","secondary":"He did see Bradwarden, slamming repeatedly, stubbornly, at the doors, not budging them in the least.","answer":"(副词)多次进行或反复进行。\n\n他确实看见布拉德沃登正一再地、顽强地猛敲门,但门纹丝不动。"},{"primary":"rub","secondary":"Elbryan sat up and rubbed his face, noting the cut and dried blood on one of his hands.","answer":"(名词) 摩擦的行为。\n\n埃尔布莱恩坐起身来,揉了揉脸,发现自己一只手上有一道伤口,还沾着干涸的血迹。"},{"primary":"term","secondary":"Now, putting it so obviously in sexual terms only confused poor Avelyn even more.","answer":"(名词) 限制某事物范围的事物;极限、尽头、界限、边界。\n\n现在,用如此直白的性暗示来表达,反而让可怜的艾维琳更加困惑了。"},{"primary":"hug","secondary":"Avelyn went to her and hugged her.","answer":"心\n\n艾维琳走到她跟前,拥抱了她。"},{"primary":"serpentine","secondary":"As he spoke, the elf fingered a green stone, serpentine, feeling its subtle vibrations.","answer":"蛇形\n\n说话间,精灵手指轻抚着一块绿色的蛇纹石,感受着它细微的震动。"},{"primary":"trap","secondary":"She knew, as did all the gathering, that there was no possible way she could have stumbled into such a coarse trap had not a bit of magic been worked.","answer":"楼梯\n\n她和在场的所有人一样都清楚,若非施了点魔法,她绝无可能误入如此粗鄙的陷阱。"},{"primary":"aboard","secondary":"They would have to get aboard the barrelboat, whatever the outcome of Quintall's attempt.","answer":"在……上\n\n无论昆塔尔的尝试结果如何,他们都必须登上那艘桶形船。"},{"primary":"eager","secondary":"Avelyn took a deep breath, consciously keeping his eyes from the eager gazes of the onlookers.","answer":"热切的\n\n艾维琳深吸一口气,有意识地避开了围观者那迫切的目光。"},{"primary":"hop","secondary":"Down came Tuntun, her wing-fluttering hop exhausted, her sword pointed below her, leading.","answer":"hop\n\n噗通一声,咕噜跳了下来,那扑腾着翅膀的跳跃已然耗尽,她将剑尖朝下,引路前行。"},{"primary":"encampment","secondary":"Elbryan recalled the image of the vast encampment.","answer":"营地\n\n埃尔布莱恩回想起那片广阔营地的景象。"},{"primary":"subtle","secondary":"As he spoke, the elf fingered a green stone, serpentine, feeling its subtle vibrations.","answer":"微妙的\n\n说话间,精灵手指轻抚着一块绿色的蛇纹石,感受着它细微的震动。"},{"primary":"enjoy","secondary":"Elbryan liked the image; every day that passed, he found that he enjoyed looking at Pony more and more.","answer":"尽情享受\n\n埃尔布莱恩很喜欢这幅画面;随着日子一天天过去,他发现自己越来越喜欢看波尼了。"},{"primary":"travel","secondary":"And he replaced much of his dreaming with time travel, moved his mind back.","answer":"旅行\n\n他用时间旅行取代了大部分的梦境,让思绪回溯过去。"},{"primary":"peace","secondary":"But I have found peace, Uncle Mather.","answer":"和平\n\n但我已经找到了内心的平静,马瑟叔叔。"},{"primary":"silence","secondary":"They sat in silence as the day grew about them.","answer":"沉默\n\n他们静静地坐着,白昼渐渐笼罩了四周。"},{"primary":"entire","secondary":"The giant's hand covered the tall man's entire forearm.","answer":"全部\n\n那只巨人的手几乎盖住了那个高个子男人的整个前臂。"},{"primary":"mission","secondary":"He hated risking them all but realized the success of the mission hinged on their actions right now.","answer":"任务\n\n他虽不愿让所有人冒这个险,但意识到任务的成败取决于他们此刻的行动。"},{"primary":"brute","secondary":"By sheer will and brute strength, the dactyl flexed its wings.","answer":"原始\n\n凭借坚定的意志和惊人的力量,达克提尔展开了翅膀。"},{"primary":"joy","secondary":"There was little joy that night at the Way; where Jill said her good-byes.","answer":"地点\n\n那天晚上,“路”酒吧里几乎没有欢乐的气氛;吉尔就在那里告别了大家。"},{"primary":"bone","secondary":"Elbryan saw the bright red gash, the white of split bone, the grayish brain.","answer":"他们看到了\n\n埃尔布莱恩看见了那道鲜红的伤口、露出的白骨,还有灰白的大脑。"},{"primary":"cloud","secondary":"And so we live on, here and there, under blankets of cloud, under cover of darkness.","answer":"云\n\n于是,我们继续生活着,时而在云层之下,时而在黑暗之中。"},{"primary":"touch","secondary":"Using it to walk out of body barely touches at the edge of its true magic.","answer":"触摸\n\n利用它进行出体体验,仅仅是触及其真正魔力的皮毛。"},{"primary":"river","secondary":"But that fear couldn't hold against the river of his own soul, pouring forth in great release.","answer":"河流\n\n但那份恐惧终究无法阻挡他灵魂之河的奔涌,那河水正如洪水般奔涌而出,带来巨大的解脱。"},{"primary":"peer","secondary":"He looked to the north again, peering hard just above the horizon.","answer":"同侪\n\n他再次望向北方,凝神注视着地平线稍上方。"},{"primary":"skip","secondary":"After a dozen more skipping steps, the creature paused and turned.","answer":"船\n\n又轻快地跳了十几步后,那生物停了下来,转身望去。"},{"primary":"beauty","secondary":"How many others could look upon the Halo and understand the beauty of the thing?","answer":"美\n\n还有多少人能凝视《光环》,并领略其美?"},{"primary":"uncomfortable","secondary":"He was at ease again, the uncomfortable feelings tossed out with the mystery of the night.","answer":"不舒服\n\n他又恢复了从容,那些不安的情绪随着夜色的神秘一并消散了。"},{"primary":"especially","secondary":"The situation came to a frightening head one especially hot humid morning.","answer":"特别是\n\n在一个特别闷热的早晨,局势发展到了令人毛骨悚然的程度。"},{"primary":"counter","secondary":"\"You heard Body Grabber,\" Elbryan countered.","answer":"计数器\n\n“你听见‘身体抓取者’说了什么,”埃尔布莱恩反驳道。"},{"primary":"prod","secondary":"And Connor would not relent, prodding and pushing.","answer":"prod\n\n而康纳却不肯罢休,不断怂恿和催促。"},{"primary":"dodge","secondary":"She rushed right for it, feigning a dodge to the side as it lifted its huge sword.","answer":"躲避\n\n她径直冲了过去,当那人举起巨剑时,她假装向一旁闪避。"},{"primary":"exchange","secondary":"Elbryan and Pony exchanged curious looks.","answer":"交易所\n\n埃尔布莱恩和波尼面面相觑,神情好奇。"},{"primary":"vast","secondary":"Suddenly he felt a part of that vast velvet canopy.","answer":"相对\n\n突然间,他感觉自己仿佛成了那片辽阔天幕的一部分。"},{"primary":"son","secondary":"Avelyn had known, that she would never see her son in this world again.","answer":"声音\n\n艾维琳早就知道,她在这世上再也见不到自己的儿子了。"},{"primary":"fit","secondary":"Elbryan didn't answer, but that familiar sparkle fit up his eyes.","answer":"适合\n\n埃尔布莱恩没有回答,但那双眼睛里闪烁着那熟悉的灵光。"},{"primary":"personal","secondary":"The grueling schedule, though, allowed Avelyn the opportunity to put off his more personal problems.","answer":"员工\n\n不过,这繁重的工作安排倒让阿维林有机会暂时搁置那些更私人的问题。"},{"primary":"raid","secondary":"This was an action of a rogue goblin chieftain, perhaps, or one of the many powrie raiding parties, acting on their own initiative, bringing misery to the wretched humans.","answer":"突袭\n\n这或许是某个叛逆的哥布林首领所为,也可能是众多“饥饿军团”劫掠小队中的一支,他们擅自行动,给那些可怜的人类带来了苦难。"},{"primary":"spit","secondary":"The day was cool and gray, the sky spitting light snow every so often.","answer":"吐口水\n\n那天天气阴沉凉爽,天空不时飘落些许小雪。"},{"primary":"helplessly","secondary":"Again the young monk could only shrug helplessly, wanting to know but afraid to know.","answer":"无能为力\n\n年轻的僧人只能再次无奈地耸耸肩,既想知道又怕知道。"},{"primary":"relief","secondary":"No foam; the ranger breathed a sigh of relief.","answer":"救济\n\n没有泡沫;护林员松了一口气。"},{"primary":"lean","secondary":"A cry of agony within the house froze her in place, and she leaned heavily on the frame for support.","answer":"关注\n\n屋内传来一声痛苦的呻吟,她顿时僵在原地,重重地靠在门框上支撑身体。"},{"primary":"abruptly","secondary":"The pair rolled hard into the trunk of another tree, and the goblin abruptly stopped its thrashing.","answer":"突然\n\n两人重重地撞上了另一棵树的树干,那只哥布林顿时停止了挣扎。"},{"primary":"continuing","secondary":"Then he was floating, Siherton continuing to plummet.","answer":"继续\n\n接着,他漂浮在空中,而西赫顿镇仍在不断下坠。"},{"primary":"thoroughly","secondary":"That night, Avelyn retired to his room, thoroughly exhausted, both emotionally and physically.","answer":"彻底地\n\n那天晚上,阿维林回到自己的房间,身心俱疲。"},{"primary":"ceremony","secondary":"Only the call to vespers, the ceremony heralding eventide, had interrupted Avelyn's frantic pace.","answer":"仪式\n\n唯有晚祷的钟声——那宣告黄昏来临的仪式——才打断了艾维琳匆忙的脚步。"},{"primary":"anyway","secondary":"Why did the world need rangers, anyway?","answer":"总之\n\n话说回来,世界到底为什么需要游侠呢?"},{"primary":"worst","secondary":"Avelyn was not the worst of his class, but he was certainly not near the best: Quintall.","answer":"最糟糕的\n\n阿维林虽然不是班上最差的,但肯定也远不及班上最优秀的那个——昆塔尔。"},{"primary":"swim","secondary":"Avelyn and Pellimar swam with all speed.","answer":"游泳\n\n艾维琳和佩利马尔拼命游着。"},{"primary":"ledge","secondary":"She rolled to the lip of the ledge, pulled her mask further down, and vomited.","answer":"悬崖\n\n她滚到悬崖边缘,把面罩往下拉了拉,然后呕吐起来。"},{"primary":"sweeping","secondary":"With a single sweeping left hook, Avelyn laid the big man low.","answer":"清扫\n\n阿维琳一记凌厉的左勾拳,便将那个大块头击倒在地。"},{"primary":"worse","secondary":"This was worse than a cold trail, Brother Justice realized, for this was no trail at all.","answer":"更糟\n\n正义兄弟意识到,这比冷案还要糟糕,因为这根本算不上什么线索。"},{"primary":"fiend","secondary":"So that left Avelyn against the fiend, just them, facing off from five paces.","answer":"恶魔\n\n于是,只剩下艾维琳与那恶魔对峙,就他们两人,相距五步之遥。"},{"primary":"retreat","secondary":"The other two scrambled in sudden retreat, slipping as they tried to get back up the slope.","answer":"退却\n\n另外两人慌忙仓皇撤退,试图爬回山坡时却滑倒了。"},{"primary":"echo","secondary":"Avelyn ran from the chapel, skittering down the empty halls, his footsteps echoing noisily.","answer":"echo\n\n阿维林从小教堂里跑出来,沿着空荡荡的走廊飞快地跑着,脚步声在走廊里回响,响亮而刺耳。"},{"primary":"skid","secondary":"The bear skidded to a stop and turned to follow.","answer":"滑雪\n\n那头熊猛地停下,转身跟了上去。"},{"primary":"early","secondary":"Elbryan had sparred with him only once, very early in.","answer":"早些\n\n埃尔布莱恩只和他打过一次对练,那还是在很早的时候。"},{"primary":"clean","secondary":"Then he methodically went about skinning and cleaning it.","answer":"清理\n\n接着,他有条不紊地开始剥皮和清理。"},{"primary":"handle","secondary":"Cat suffered his insults, but couldn't dismiss the realization that Pettibwa would have handled it differently, better.","answer":"购物\n\n凯特忍下了他的侮辱,却无法摆脱这样的念头:佩蒂布瓦若在场,定会以不同的方式、更好的方式来处理此事。"},{"primary":"weary","secondary":"He found Quintall standing with Adjonas, the captain, looking weary, leaning against the mainmast.","answer":"疲惫\n\n他发现昆塔尔正和船长阿乔纳斯一起站在那里,两人神情疲惫,倚靠在主桅上。"},{"primary":"somewhat","secondary":"Its head, too, was somewhat human, except more angular, with a narrow jaw and pointed chin.","answer":"有点\n\n它的头部也颇具人形,只是轮廓更为棱角分明,下颌狭窄,下巴尖尖的。"},{"primary":"liquid","secondary":"Its feel was impossibly smooth, almost liquid.","answer":"液体\n\n它的触感顺滑得难以置信,几乎像液体一样。"},{"primary":"tooth","secondary":"Cat-the-Stray clamped her teeth over one of his knuckles and bit him hard.","answer":"牙齿\n\n流浪猫咬住他的一根手指关节,狠狠地咬了下去。"},{"primary":"darker","secondary":"The black-winged demon looked down at a darker red tear marring its otherwise smooth hide.","answer":"更暗\n\n那只黑翼恶魔低头看着一滴更深的红色泪珠,它正玷污着那原本光滑的皮毛。"},{"primary":"wicked","secondary":"Smealy turned a wicked grin on the captain.","answer":"邪恶的\n\n斯米利冲着船长露出一抹狡黠的笑容。"},{"primary":"larger","secondary":"Then he looked back at the larger battle for Dundalis.","answer":"更大的\n\n随后,他将目光转向了围绕邓达利斯展开的更大规模的战斗。"},{"primary":"chill","secondary":"It floated through-the chill air, barely perceptible.","answer":"放松\n\n它飘过那刺骨的寒风,几乎难以察觉。"},{"primary":"yellow","secondary":"The monk quickly took out his yellow sunstone, falling immediately into its defensive magic.","answer":"黄色\n\n僧人迅速掏出他的黄日石,随即被其防御魔法所笼罩。"},{"primary":"delicate","secondary":"Elbryan wondered, having no explanation of who or what those delicate winged creatures might be.","answer":"精致的\n\n埃尔布莱恩不禁纳闷,因为他无法解释那些娇小的有翼生物究竟是谁或是什么。"},{"primary":"concerning","secondary":"Piled in the emotional jumble were Elbryan's mixed feelings concerning the elves.","answer":"关于\n\n在这团情感纠葛中,还夹杂着埃尔布莱恩对精灵们复杂的情感。"},{"primary":"proud","secondary":"Above it all stood Olwan, proud and strong and unshakable.","answer":"自豪\n\n在这一切之上,奥尔万巍然屹立,骄傲、坚强且坚定不移。"},{"primary":"clearing","secondary":"The three got from house to house, then across the short clearing to the woods.","answer":"清算\n\n三人穿过一间间房屋,随后穿过那片小空地,走进了树林。"},{"primary":"fierce","secondary":"On the main road of Dundalis, just on the other side of this house, a fierce battle raged.","answer":"凶猛\n\n在邓达利斯的主干道上,就在这栋房子对面,一场激烈的战斗正在进行。"},{"primary":"rocky","secondary":"Pony had to wonder as she skittered down the rocky slope, a pair of giants in fast pursuit.","answer":"洛基\n\n小马一边沿着岩石斜坡飞快地滑下,一边不禁纳闷,身后有两个巨人紧追不舍。"},{"primary":"dirt","secondary":"The young man knew all that, as he sat in the dirt, staring curiously at the somehow dead giant.","answer":"泥土\n\n那个年轻人心里都清楚,他坐在泥地上,好奇地盯着那具不知为何已然死去的大个子。"},{"primary":"entrance","secondary":"He stood alone on the balcony above the main entrance of St.-Mere-Abelle, the most prominent monastery in all the kingdom of Honce-the-Bear, in the northern temperate zone of Corona.","answer":"入口\n\n他独自伫立在圣梅尔-阿贝尔修道院正门上方的阳台上。这座修道院是科罗纳北部温带地区整个熊之霍恩斯王国最负盛名的修道院。"},{"primary":"monastery","secondary":"Many merchants in Ursal likely possessed stones; the monastery was not averse to selling them.","answer":"修道院\n\n乌尔萨尔的许多商人很可能都拥有这些石头;修道院对此并不排斥。"},{"primary":"class","secondary":"The new class of twenty-five stood one behind the other.","answer":"类\n\n这二十五名新生排成一列,一个接一个地站着。"},{"primary":"chant","secondary":"He closed his eyes and began chanting softly, falling into the magic of the powerful hematite.","answer":"歌声\n\n他闭上眼睛,开始轻声吟诵,沉浸在这块强大赤铁矿的魔力之中。"},{"primary":"stoicism","secondary":"The question caught Jojonah off guard, and as he considered it, he came to realize that Avelyn's stoicism was, perhaps, not so deeply rooted.","answer":"(名词)罗马帝国时期兴盛的一派哲学学说,该学派强调以理性作为理解万物自然状态(即“逻各斯”)的手段,并以此作为摆脱情感困扰的途径。\n\n这个问题让乔乔纳猝不及防,他仔细想了想,这才意识到,艾维琳的坚韧或许并没有那么根深蒂固。"},{"primary":"insidious","secondary":"Then the dactyl began a more insidious attack, a mental barrage of images of torture and agony, and Maiyer Dek, the proud and strong leader, the strongest mortal creature in all the Barbacan, whimpered pitifully and squirmed about on the floor, begging for mercy.","answer":"(形容词)以隐蔽的、往往是渐进的方式造成伤害。\n\n接着,达克提尔发动了更阴险的攻击——一连串关于酷刑与痛苦的画面如潮水般涌入脑海。迈耶·德克,这位骄傲而强大的领袖,整个巴尔巴坎最强大的凡人,此刻却在地板上哀嚎着、扭动着,可怜巴巴地求饶。"}],"cloze":[],"character":[],"plot":[]};
|
|
const COLORS = {"vocab":"#3498db","cloze":"#27ae60","character":"#9b59b6","plot":"#e67e22"};
|
|
let tab = "vocab", idx = 0, flipped = false;
|
|
|
|
function esc(s) {
|
|
return String(s).replace(/&/g,'&').replace(/</g,'<').replace(/>/g,'>');
|
|
}
|
|
function rend(s) { return esc(s).replace(/\n/g,'<br>'); }
|
|
|
|
function render() {
|
|
const cards = DATA[tab] || [];
|
|
if (!cards.length) return;
|
|
const c = cards[idx];
|
|
document.getElementById('fc-primary').innerHTML = rend(c.primary);
|
|
document.getElementById('fc-secondary').innerHTML = rend(c.secondary);
|
|
document.getElementById('fc-answer').innerHTML = rend(c.answer);
|
|
document.getElementById('prog').textContent = (idx + 1) + ' / ' + cards.length;
|
|
document.getElementById('fc').classList.toggle('flipped', flipped);
|
|
const color = COLORS[tab] || '#3498db';
|
|
document.documentElement.style.setProperty('--accent', color);
|
|
document.getElementById('btn-prev').disabled = idx === 0;
|
|
document.getElementById('btn-next').disabled = idx === cards.length - 1;
|
|
document.querySelectorAll('.tab').forEach(t => {
|
|
t.classList.toggle('active', t.dataset.tab === tab);
|
|
});
|
|
}
|
|
|
|
function flip() { flipped = !flipped; render(); }
|
|
function prev() { if (idx > 0) { idx--; flipped = false; render(); } }
|
|
function next() { if (idx < (DATA[tab]||[]).length - 1) { idx++; flipped = false; render(); } }
|
|
function switchTab(t) {
|
|
if (!DATA[t] || !DATA[t].length) return;
|
|
tab = t; idx = 0; flipped = false; render();
|
|
}
|
|
|
|
document.getElementById('fc').addEventListener('click', flip);
|
|
document.getElementById('btn-prev').addEventListener('click', prev);
|
|
document.getElementById('btn-flip').addEventListener('click', flip);
|
|
document.getElementById('btn-next').addEventListener('click', next);
|
|
document.querySelectorAll('.tab').forEach(btn => {
|
|
btn.addEventListener('click', () => switchTab(btn.dataset.tab));
|
|
});
|
|
document.addEventListener('keydown', function(e) {
|
|
if (e.key === 'ArrowLeft') prev();
|
|
else if (e.key === 'ArrowRight') next();
|
|
else if (e.key === ' ' || e.key === 'Enter') { e.preventDefault(); flip(); }
|
|
});
|
|
|
|
render();
|
|
</script>
|
|
</body>
|
|
</html> |