Chapter 5 Blood Type——13
"Kryptonite doesn't bother me, either," he chuckled.
“氪星石也不会影响我,” 他笑着说道。
"You're not supposed to laugh, remember?"
“你不应该笑的,记得吗?”
He struggled to compose his face.
他尽力去控制他的脸。
"I'll figure it out eventually," I warned him.
“我最后会猜到的,” 我警告他。
"I wish you wouldn't try." He was serious again.
“我希望你不要尝试了。” 他又一次严厉的说道。
"Because… ?"
“因为。。。?”
"What if I'm not a superhero? What if I'm the bad guy?" He smiled playfully, but his eyes were impenetrable.
“如果我不是一个英雄,或者我是一个坏人呢?” 他开玩笑的笑道,但是他的眼睛还是令人费解的。
"Oh," I said, as several things he'd hinted fell suddenly into place. "I see."
“哦,” 我说,好像暗示很多事情都能理解了,“我明白了”
"Do you?" His face was abruptly severe, as if he were afraid that he'd accidentally said too much.
“你明白了?” 他的脸突然严肃了,就好像他害怕他自己说的太多了。
"You're dangerous?" I guessed, my pulse quickening as I intuitively realized the truth of my own words. He was dangerous. He'd been trying to tell me that all along.
“你很危险吗?” 我猜测着说,我直觉的意识到我说出了真相,我的心跳边快了。他很危险。他始终想要告诉我这件事。
He just looked at me, eyes full of some emotion I couldn't comprehend.
他就只是看着我,眼睛透露着我不能理解的感情。
"But not bad," I whispered, shaking my head. "No, I don't believe that you're bad."
“但是,你不坏,” 我低语道,摇着头。“至少,我并不相信你是个坏人。”
Chapter 5 Blood Type——13的更多相关文章
- 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 ...
随机推荐
- 大数加法~HDU 1002 A + B Problem II
题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=1002 题意: 数学题,A+B; 思路,这个数非常大,普通加法一定会超时,所以用大数加法.大数加法的基 ...
- C++第四课:类的使用(二)[个人见解]
前面说到C++类的名字自定义要有含义,成员函数名也同样如此. 一个好的程序员除了让自己能看懂代码外,那是能力,也能让别人看懂,那是本事. 我们来看第一个特性:继承! 什么是继承? 小编不说概念性的定义 ...
- vty密码登录,到AAA验证登录,以及远程配置网络
华为的的最简易的远程登录方式,就是密码登录了. 配置命令如下图: 最重要的是权限: 访问级(0级).监控级(1级).系统级(2级)和管理级(3级) 在以上基础上,做了一个远程配置方式,通过一台,修改其 ...
- vue 图片预览插件
https://github.com/daidaitu1314/vue2-preview //cnpm cnpm install vue2-preview -save //引入 import VueP ...
- dedecms 后台可以上传mp4,但无法选择
原文链接 找到 /include/dialog/select_media.php 找到rmvb,在其后面加 “|mp4” 即可. 1
- swoole+websocket+redis实现一对一聊天
如同web端的QQ和微信一样,这是一个web端的聊天程序. 环境:ubuntu + php + swoole扩展 + redis + mysql Redis 实现每个连接websocket的服务都唯一 ...
- pyqt5之简单窗口的创建
在学完tkinter后,发现tkinter在布局方面特别的不方便(Tkinter资料:http://effbot.org/tkinterbook/tkinter-index.htm),因此学习pyqt ...
- Winform将一个窗体显示在另一个窗体中
private void ShowForm(Form Indexform) { Form1 form1 = new Form1(); form1 .TopLevel = false; form1 .P ...
- Array.from();Object.keys();Array.map()
Array.from():方法从一个类似数组或可迭代对象创建一个新的数组形式: const bar = ["a", "b", "c"]; A ...
- java小练习
打印99乘法表 因为有9行9列,所有要用两个for循环 int m; for (int i = 1; i < 10; i++) { for (int j = 1; j <= i; j++) ...