Chapter 5 Blood Type——5
"Well…" He paused, and then the rest of the words followed in a rush.
"嗯..." 他顿顿的说道,然后准备一口气说完剩下的话
"I decided as long as I was going to hell, I might as well do it thoroughly."
“即使我决定要去地狱,我可能也会毫不犹豫”
I waited for him to say something that made sense. The seconds ticked by.
再等着他说点解释的话。几秒钟过去了。
"You know I don't have any idea what you mean," I eventually pointed out.
“你知道我不明白你在说什么,”最后我指出来。
"I know." He smiled again, and then he changed the subject. "I think your friends are angry with me for stealing you."
“我知道。” 他又笑了,并且他改变了观点。“我想你的朋友对我偷了你很生气。”
"They'll survive." I could feel their stares boring into my back.
“他们会理解的。”我感到他们无聊的盯着我的背后。
"I may not give you back, though," he said with a wicked glint in his eyes.
“尽管,我可能不打算把你还回去,”他说着眼里闪烁着邪恶的目光
I gulped.
我咽了一口气。
He laughed. "You look worried."
他笑道。“你看起来有点担心。”
"No," I said, but, ridiculously, my voice broke. "Surprised, actually… what brought all this on?"
“不,”我说,但是,很荒谬,我破音了。“事实上是惊讶,是什么改变了你的态度?”
"I told you — I got tired of trying to stay away from you. So I'm giving up." He was still smiling, but his ocher eyes were serious.
“我告诉————我尽可能尝试去远离你,但是太累了。所以我放弃了。”
他仍然笑着,但是他黄色的眼睛显得很认真。
"Giving up?" I repeated in confusion.
“放弃?”我疑惑的重复道。
Chapter 5 Blood Type——5的更多相关文章
- Chapter 5 Blood Type——18
"The Red Cross is having a blood drive in Port Angeles next weekend, so I thought you should al ...
- Chapter 5 Blood Type——27
And then Mike staggered through the door, now supporting a sallow-looking Lee Stephens, another boy ...
- Chapter 5 Blood Type——24
"She's just a little faint," he reassured the startled nurse. "They're blood typing i ...
- Chapter 5 Blood Type——23
I didn't answer. I closed my eyes again and fought the nausea with all my strength, clamping my lips ...
- Chapter 5 Blood Type——22
Suddenly the sidewalk disappeared from beneath me. My eyes flew open in shock. 突然我身下的人行道消失了.我飞快的睁开眼睛 ...
- Chapter 5 Blood Type——17
"I'll be coming around with a dropper of water to prepare your cards, so please don't start unt ...
- Chapter 5 Blood Type——32
"Where are you all going, exactly?" He was still looking ahead, expressionless. “真的,你要去哪里? ...
- Chapter 5 Blood Type——31
I stood carefully, and I was still fine. He held the door for me, his smile polite but his eyes mock ...
- Chapter 5 Blood Type——30
That wasn't a challenge; I was always pale, and my recent swoon had left a light sheen of sweat on m ...
- Chapter 5 Blood Type——29
"We're meeting at my dad's store, at ten." “十点,我们在我爸的店见面.” His eyes flickered to Edward ag ...
随机推荐
- [linux]CentOS安装pre-built Nginx
官方文档:https://nginx.org/en/linux_packages.html Nginx安装分为软件包安装和pre-built安装.这里使用的pre-built安装,不用自己编译. 设置 ...
- pip install
pip install <包名> 或 pip install -r requirements.txt 通过使用 == >= <= > < 来指定版本,不写则安装最新 ...
- python操作git
GitPython 是一个用于操作 Git 版本库的 python 包,它提供了一系列的对象模型(库 - Repo.树 - Tree.提交 - Commit等),用于操作版本库中的相应对象. 模块安装 ...
- css实现中文换行,英文换行,超出省略
英文换行时,是以单词换行,在对应的标签添加对应的属性即可 1 word-break:break-all;只对英文起作用,以字母作为换行依据 2 word-wrap:break-word; 只对英文起作 ...
- Docker容器跨主机通信
默认情况下Docker容器需要跨主机通信两个主机节点都需要在同一个网段下,这时只要两个Docker容器的宿主机能相互通信并且该容器使用net网络模式,改实现方式为网桥模式通信: 除此之外我们还可以通过 ...
- Anaconda虚拟环境
创建虚拟环境:conda create -n env_name packages 例:创建名为env1的虚拟环境,并在其中安装numpy,conda create -n env1 numpy. 指定特 ...
- 关于js的页面高度和滚动条高度还有元素高度
window.innerHeight 这是浏览器里面内容的高度,直接就是值,不需要其它操作; window.pageYOffset 这是滚动条到浏览器顶端的距离; $(元素).offset(). ...
- spring boot 集成 Redis
前提:你已经安装了Redis 1.创建一个spring boot 工程 2.pom 引入依赖:spring-boot-starter-data-redis <dependency> < ...
- vue本地项目设置通过手机访问
最近再用vue写一个移动端的应用,想通过手机访问看看页面效果,于是有了下文. 1.shif+右键打开命令行工具,输入ipconfig,回车,得到电脑的ip 2.找到工作目录下的config文件夹中的i ...
- Java 延迟队列使用
延时队列,第一他是个队列,所以具有对列功能第二就是延时,这就是延时对列,功能也就是将任务放在该延时对列中,只有到了延时时刻才能从该延时对列中获取任务否则获取不到…… 应用场景比较多,比如延时1分钟发短 ...