Object C-116 - “西班牙炸弹”
:root {
    --lh-red: #c0392b;
    --lh-blue: #2980b9;
    --lh-green: #27ae60;
    --lh-dark-green: #16a085;
    --lh-purple: #8e44ad;
    --lh-orange: #e67e22;
    --lh-yellow: #f1c40f;
 
    --lh-paper-bg: 255, 251, 240;
    --lh-string-color: 192, 57, 43;
    --lh-book-color: var(--gray-monochrome);
    --lh-tape-color: 90,90,90,0.3;
    --lh-white-bg: 249,249,249;
    --lh-dark-bg: 50, 50, 50;
    --lh-highlighter: var(--bright-accent);
    --lh-border-color: var(--gray-monochrome);
    --lh-wiki-note-color: var(--bright-accent)
}
 
/**
 *  旧代码合集
 *  为了向下兼容而保留
 */
 
.grid-container{display:flex;flex-direction:row;flex-wrap:wrap;width:100%}.grid-container,.grid-container [class*=grid]{box-sizing:border-box}[class*=grid]{padding:5px}.grid{width:100%}.grid-large{width:75%}.grid-big{width:50%}.grid-medium{width:33.33%}.grid-small{width:25%}@media screen and (min-width:768px){.wd-grid-large{width:75%}.wd-grid,.wd-grid-big{width:50%}.wd-grid-medium{width:33.33%}.wd-grid-small{width:25%}}.text-hover-hide{opacity:0;transition:opacity .3s}.text-hover-hide:hover{opacity:1}.text-block-hide{background:rgb(var(--black-monochrome));color:rgb(var(--black-monochrome));transition:background .3s}.text-block-hide:hover{background:0 0}.text-blur-hide,.text-blur-hover-hide{filter:blur(.3rem);-webkit-filter:blur(.3rem) transition: blur .3s}.text-blur-hover-hide:hover{filter:blur(0);-webkit-filter:blur(0)}.lyric-box{text-align:center;font-size:1.05rem;display:flex;flex-direction:column;flex-wrap:wrap;justify-content:center}.lyric-box p{margin:1.5em auto}.lyric-box.with-bigger-line p{margin:3em auto}
 
/**
 *  便签纸
 *  notepaper
 */
 
.notepaper {
    background: linear-gradient(rgb(var(--lh-paper-bg)) 95%, #ddd 0);
    line-height: 2em;
    background-size: 100% 2em;
    background-attachment: local;
    border: 2em solid rgb(var(--lh-paper-bg));
    box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.2);
    padding: 0;
    margin: 1em auto;
    box-sizing: border-box;
    position: relative
}
.notepaper p {
    margin: 0;
    font-size: 1.05rem;
    letter-spacing: 0.1rem;
    line-height: inherit
}
.notepaper.narrow,
.notepaper.wide {
        width: 90%
}
@media screen and (min-width:768px){
    .notepaper.narrow {
        width: 50%
    }
    .notepaper.wide {
        width: 75%
    }
}
 
.notepaper.tight {
    border-width: 1rem;
    border-left-width: 1.2rem;
    border-right-width: 1.2rem;
    line-height: 1.8em;
    background-size: 100% 1.8em;
    font-size: 13px
}
 
.notepaper.with-string::before {
    content: '';
    width: 0.5em;
    height: 6rem;
    background: rgb(var(--lh-string-color));
    top: -2rem; right: -1rem;
    display: block;
    position: absolute;
    box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2);
    clip-path: polygon(-100% -100%,100% 0%,100% 100%,50% 98%,0% 100%);
}
.notepaper.with-tape::before {
    content: '';
    border: 1px solid #ddd;
    background: rgba(var(--lh-tape-color));
    width: 1.5em;
    height: 4em;
    transform: rotate(45deg);
    display: block;
    position: absolute;
    top: -3em;
    left: -1.8em
}
 
.notepaper.tight.with-string::before {
    top: -1rem; 
    right: -0.25rem;
}
.notepaper.tight.with-tape::before {
    top: -2.5em;
    left: -1.3em
}
 
.notepaper.page {
    min-height: 36em;
    counter-increment: page;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}
@media screen and (min-width:768px){
    .notepaper.page {
        width: 70%
    }
}
.notepaper.page:after {
    content: counter(page);
    display: block;
    text-align: center
}
.notepaper-group {
    counter-reset: page;
}
 
.book-pattern {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row
}
.book-pattern .notepaper.page:not(.notepaper > .notepaper) {
    width: 100%
}
@media screen and (min-width: 768px) {
    .book-pattern .notepaper.page:not(.notepaper > .notepaper) {
        width: 50%
    }
}
 
.book-wrapper {
    background: rgb(var(--lh-book-color));
    padding: 0.5rem;
    box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.2);
    border-radius: 5px;
    margin: 1rem auto
}
@media screen and (min-width: 768px) {
    .book-wrapper .notepaper {
        margin: 0
    }
}
 
/**
 *  文字修饰
 */
 
.text-highlighted {
    position: relative
}
.text-highlighted::before {
    content: "";
    position: absolute;
    height: 0.9em;
    bottom: 2px;
    left: -2px;
    width: 105%;
    z-index: -1;
    background-color: rgb(var(--lh-highlighter));
    opacity: .6;
    transform: skew(-15deg);
    transition: opacity .2s ease;
    border-radius: 3px 8px 10px 6px;
    transition: 0.1s ease background-color;
}
 
.text-underlined {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
    text-decoration-color: rgb(var(--lh-highlighter))
}
.text-wavy {
    text-decoration: underline wavy;
    text-underline-offset: 4px;
    text-decoration-color: rgb(var(--lh-highlighter))
}
 
.text-circled,
.text-squared {
    display: inline-block;
    border: 2px solid rgb(var(--lh-highlighter));
    border-radius: 100%;
    box-sizing: border-box
}
.text-squared { border-radius: 0 }
 
.text-shadow { text-shadow: 0.075em 0.075em 0 rgb(var(--lh-highlighter)) }
 
.text-highlighted.td-red::before { background: var(--lh-red) }
.text-circled.td-red, .text-squared.td-red { border-color: var(--lh-red) }
.text-underlined.td-red, .text-wavy.td-red { text-decoration-color: var(--lh-red) }
 
.text-highlighted.td-blue::before { background: var(--lh-blue) }
.text-circled.td-blue, .text-squared.td-blue { border-color: var(--lh-blue) }
.text-underlined.td-blue, .text-wavy.td-blue { text-decoration-color: var(--lh-blue) }
 
.text-highlighted.td-green::before { background: var(--lh-green) }
.text-circled.td-green, .text-squared.td-green { border-color: var(--lh-green) }
.text-underlined.td-green, .text-wavy.td-green { text-decoration-color: var(--lh-green) }
 
.text-highlighted.td-darkgreen::before { background: var(--lh-dark-green) }
.text-circled.td-darkgreen, .text-squared.td-darkgreen { border-color: var(--lh-dark-green) }
.text-underlined.td-darkgreen, .text-wavy.td-darkgreen { text-decoration-color: var(--lh-dark-green) }
 
.text-highlighted.td-purple::before { background: var(--lh-purple) }
.text-circled.td-purple, .text-squared.td-purple { border-color: var(--lh-purple) }
.text-underlined.td-purple, .text-wavy.td-purple { text-decoration-color: var(--lh-purple) }
 
.text-highlighted.td-yellow::before { background: var(--lh-yellow) }
.text-circled.td-yellow, .text-squared.td-yellow { border-color: var(--lh-yellow) }
.text-underlined.td-yellow, .text-wavy.td-yellow { text-decoration-color: var(--lh-yellow) }
 
.text-highlighted.td-orange::before { background: var(--lh-orange) }
.text-circled.td-orange, .text-squared.td-orange { border-color: var(--lh-orange) }
.text-underlined.td-orange, .text-wavy.td-orange { text-decoration-color: var(--lh-orange) }
 
/* 隐藏文字 */
 
.text-blank { color: rgba(0,0,0,0) }
.text-block { 
    background: rgb(var(--black-monochrome));
    color: rgb(var(--black-monochrome)); 
}
.text-blur { 
    filter: blur(0.3em);
    -webkit-filter: blur(0.3em)
}
 
.text-hoverback,
.text-selectback {
    transition-duration: 0.3s;
    transition-property: background, transform, color
}
 
.text-blank.text-hoverback:hover,
.text-blank.text-selectback::selection,
.text-blank.text-selectback *::selection { color: rgb(var(--black-monochrome)) }
 
.text-block.text-hoverback:hover { background: transparent!important }
.text-block.text-selectback::selection,
.text-block.text-selectback *::selection { color: rgb(var(--white-monochrome, 255, 255, 255)) }
 
.text-blur.text-hoverback:hover { filter: blur(0)!important; -webkit-filter: blur(0)!important }
 
/**
 * 附加项
 */
.with-border, .with-box-style { border: 1px solid rgb(var(--bright-accent)) }
.with-border-dark { border: 1px solid rgb(var(--black-monochrome)) }
.with-border-light { border: 1px solid rgb(var(--white-monochrome)) }
.with-border-thick { border-width: 2px }
 
.with-shadow-sm { box-shadow: 0 0 0.1em rgba(0,0,0,0.2) }
.with-shadow { box-shadow: 0 0.1em 0.2em rgba(0,0,0,0.2) }
.with-shadow-lg { box-shadow: 0 0.15em 0.3em rgba(0,0,0,0.2) }
.with-shadow-xl { box-shadow: 0 0.2em 0.5em rgba(0,0,0,0.2) }
.with-shadow-xxl { box-shadow: 0 0.25em 0.8em rgba(0,0,0,0.2) }
 
.with-padding, .with-box-style { padding: 0.25em 1em }
.with-p-sm { padding: 0.125em 0.5em }
.with-p-lg { padding: 0.5em 2em }
 
.with-margin, .with-box-style { margin: 1em auto }
.with-m-sm { margin: 0.5em auto }
.with-m-lg { margin: 2em auto }
 
.with-narrow-width { 
    width: 90%!important; 
    margin-left: auto; 
    margin-right: auto 
}
@media screen and (min-width: 768px) {
    .with-narrow-width { width: 75%!important }
}
[class*="with-bg-"], [class*="with-bg-"] h1 { color: #fff!important }
.with-bg-red { background: var(--lh-red)!important }
.with-bg-blue { background: var(--lh-blue)!important }
.with-bg-green { background: var(--lh-green)!important }
.with-bg-darkgreen { background: var(--lh-dark-green)!important }
.with-bg-yellow { background: var(--lh-yellow)!important }
.with-bg-orange { background: var(--lh-orange)!important }
.with-bg-purple { background: var(--lh-purple)!important }
 
/**
 * 删除类
 */
 
.offwith-shadow { box-shadow: none!important }
.offwith-border { border: none!important }
.offwith-padding, .offwith-pam { padding: 0!important }
.offwith-margin, .offwith-pam { margin: 0!important }
 
.offwith-width-limit {
    width: auto!important;
    margin-left: auto!important;
    margin-right: auto!important
}
 
div[class*="grider"].offwith-grid-gap { grid-gap: 0!important }
 
/**
 * 网格布局
 */
 
/* Gridder 容器 */
 
div[class*="gridder"] {
    display: grid;
    box-sizing: border-box;
    grid-gap: 1rem;
    padding: 0
}
div[class*="gridder"] * { box-sizing: border-box }
 
.gridder, .gridder-col-2 {
    grid-template-columns: 1fr 1fr;
}
.gridder-col-3 {
    grid-template-columns: repeat(3, 1fr);
}
.gridder-col-4 {
    grid-template-columns: repeat(4, 1fr);
}
 
@media screen and (min-width: 768px) {
    .pc-gridder, .pc-gridder-col-2 {
       grid-template-columns: 1fr 1fr;
   }
   .pc-gridder-col-3 {
       grid-template-columns: repeat(3, 1fr);
   }
   .pc-gridder-col-4 {
       grid-template-columns: repeat(4, 1fr);
   }
}
 
.spanner, .spanner-2 {
    grid-column-start: span 2;
}
.spanner-3 {
    grid-column-start: span 3;
}
 
/**
 * 告示组件
 */
.signblock,
.signblock-dark,
.signblock-warn {
    margin: 1rem auto;
    box-shadow: 0 0.1rem 0.3rem rgba(0,0,0,0.4);
    background: rgb(var(--lh-white-bg));
    font-size: 1.05rem;
    padding: 2rem
}
@media screen and (min-width: 768px) {
    .signblock,
    .signblock-dark,
    .signblock-warn {
        width: 75%
    }
}
.signblock-dark, 
.signblock-dark h1 {
    background: rgb(var(--lh-dark-bg));
    color: #fff
}
.signblock-warn, 
.signblock-warn h1 {
    background: var(--lh-red);
    color: #fff
}
 
.signblock h1,
.signblock-dark h1,
.signblock-warn h1 {
    text-align: center;
    font-size: 2rem;
    margin: 0;
    font-weight: 700
}
.signblock-img {
    display: flex;
    flex-direction: row;
    justify-content: center
}
.signblock-img img {
    width: 8em
}
.signblock-footer {
    font-size: 0.9em;
    text-align: center;
    margin: 0.5rem 0;
    font-weight: bolder;
    display: block
}
 
/**
 * 报告
 */
 
.reportblock,
.reportblock-dark {
    border: 2px solid rgb(var(--lh-border-color));
    box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3);
    background: rgb(var(--white-monochrome));
    padding: 0.8rem 1.5rem;
    padding-bottom: 0.4rem;
    margin: 1.5rem auto;
    margin-bottom: 1rem;
    position: relative
}
 
.reportblock hr,
.reportblock-dark hr {
    background-color: rgb(var(--lh-border-color));
    margin-left: -1.5rem;
    margin-right: -1.5rem
}
 
.reportblock h1:first-child,
.reportblock-dark h1:first-child {
    position: absolute;
    top: -1rem;
    left: 1.5rem;
    font-size: 110%;
    font-weight: 600;
    background: rgb(var(--lh-border-color));
    color: #fff;
    padding: 0.2rem 0.5rem;
    margin: 0;
}
 
.reportblock-dark,
.reportblock-dark h1 {
    border-color: rgb(var(--lh-white-bg));
    background: rgb(var(--lh-dark-bg));
    color: #fff
}
 
.reportblock-dark hr {
    background-color: rgb(var(--lh-white-bg));
}
 
/* 更好的折叠框 */
 
.bettercollap {
  margin: 1em 0;
}
 
.bettercollap .collapsible-block {
  width: auto;
  overflow: hidden;
  border: 1px solid rgb(var(--lh-border-color))
}
 
.bettercollap .collapsible-block-content,
.bettercollap .collapsible-block-link {
  background: rgb(var(--white-monochrome));
  padding: 0.5em
}
 
.bettercollap .collapsible-block-content {
  padding-left: 1em;
  padding-right: 1em
}
 
.bettercollap .collapsible-block-link {
  color: rgb(var(--lh-border-color));
  background: rgb(var(--white-monochrome));
  transition: .3s;
  display: block;
}
.bettercollap .collapsible-block-link:hover,
.bettercollap .collapsible-block-unfolded .collapsible-block-link,
.styledcollap.bettercollap .collapsible-block-link {
  color: rgb(var(--white-monochrome));
  background: rgb(var(--lh-border-color))!important;
  text-decoration: none
}
 
.bettercollap .collapsible-block-link:hover a { color: rgb(var(--white-monochrome)) }
 
.bettercollap .collapsible-block-link::before {
  content: "\25BC";
  display: inline-block;
  margin-right: 0.5em;
  transform: rotate(-90deg) scale(0.9)
}
.bettercollap .collapsible-block-unfolded .collapsible-block-link::before {
   transform: rotate(0) scale(0.9)
}
 
.bettercollap .collapsible-block + .collapsible-block { border-top: none }
 
.styledcollap.bettercollap .collapsible-block {
  border-radius: 2px;
  box-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3)
}
 
.styledcollap.bettercollap .collapsible-block-content {
  background-color: rgb(var(--pale-gray-monochrome));
  border-width: 3px
}
 
.styledcollap.bettercollap .collapsible-block-link:hover {
  background: rgba(var(--lh-border-color),0.95)!important;
}
 
/**
 * 提示框
 */
 
.infoblock {
    color: #f1f1f1;
    font-weight: bold;
    background: #424242;
    padding: 5px 5px 5px 5px;
    border-radius: 4px;
    margin: -0.5rem 0 1rem 0;
    display: block;
    width: fit-content;
    padding-right: 25px;
}
 
.infoblock::before {
    content: "ⓘ "
}
 
/**
 * 单页迭代 
 */
 
.offset-page:not(:target), .offset-page:target ~ div#u-default-page { display: none }
.offset-page:target { display: block }

该产品为商业机密,您无权查阅。







正在登陆M.E.O.D.数据库

…………

……

身份验证成功,登陆成功。

物品编号: C-116

描述

Object C-116,或称其为“西班牙炸弹”,是一类由B.N.T.G.研发的神秘军火。曾大量提供给M.E.G.用于2019-2029年与各方势力的战争。战争结束后开始投放市场。

%E8%A5%BF%E7%8F%AD%E7%89%99%E7%82%B8%E5%BC%B9.jpg

西班牙炸弹模型展示

外观

西班牙炸弹分为炸弹与控制器两部分。

  • 炸弹部分如图,由多粒“炸药”与起连接炸药作用的“支架”两部分组成,一粒炸药直径在5-10厘米左右。
  • 控制器外观类似老式手提电话,按动其上的按钮远程操纵炸弹。根据目前资料来看,常规情况下控制器遥控范围可达3千米左右1

用途

西班牙炸弹多用于室内巷战、清理密集实体潮,快速清除障碍物。

  • 西班牙炸弹在被激活后将弹射支架连接的炸弹,使其附着于最先接触到的物体上,倘若炸弹在弹射过程中触碰到尚未被激活的西班牙炸弹则将其激活。激活后的西班牙炸弹将于5秒后自动引爆,其爆炸产生的余波将会引爆其他西班牙炸弹。激活后的炸弹将持续发出“滴滴声”警告附近的流浪者。
  • 操纵者可通过控制器提前引爆或可使炸弹未经弹射直接引爆。
  • 西班牙炸弹的填充物以高度浓缩的火盐或紫砂为主,本应一触即爆但却在B.N.T.G.的加工下呈现不符常理的稳定性。
  • 在炸药外壳与火药交界处填充未知量的寂静汁液后。炸弹激活后不再发出警告声,并实现无声引爆。

此外,B.N.T.G.研发了多个炸弹型号,显著提升了该物品的泛用性2。除去闪光弹以及烟雾弹亚种外,以下为其他几种常见型号。

汤米:该类西班牙炸弹在激活后将不再附着物体而是借助其改变自身弹射方向。经研究发现,该类西班牙炸弹最快弹射速度达到了每小时60千米。

快乐分裂:填充物为催泪剂与笑气混合物的西班牙炸弹,该炸弹本身几乎无法对流浪者造成实质性的伤害。流浪者吸入混合物后将无法抑制的放声大笑并不受控制的分泌泪液,同时其面部感到灼烧感,这感觉足以使人感到痛苦,流浪者很快会因不停大笑而力竭倒地,长期暴露在这类环境极有可能使流浪者休克,个别敏感者可能会出现生命危险。

  • 该炸弹释放的刺激性混合物对实体亦可起到显著的驱逐效果。目前是市场最为畅销的炸弹亚种。

Ummagumma:根据B.N.T.G.的介绍,该炸弹引爆后将释放汽化腰果水3,受此波及的流浪者将受到严重的烧伤以及腰果水的影响。鉴于其反人道的效果,B.N.T.G.宣称该物品不会提供给任何组织且不会上架任何市场,仅供B.N.T.G.自卫用。

发现记录

关于这类神秘炸药的资料我们知之甚少,据我们所知,联盟早期Stretchster便通过某些不为人知的手段获取了该物品的配方并交付旗下的B.N.T.G.初步生产与改进,不久便向市场投放。此时的西班牙炸弹尚未出现上文提到的多个型号,其稳定性也远不如如今投放使用的型号。

2014年,B.N.T.G.唐突关闭一切有关交易,该物品在后室几近消失匿迹,甚至B.N.T.G.内部文件与使用记录也寥寥无几。2019年至2029年战争结束前该物品作为援助M.E.G.的军用物资对其单方面出售,重新进入大众视野。该物品的重新出现标志着B.N.T.G.与U.E.C.的彻底决裂。

战争结束后,B.N.T.G.开放了与多数组织有关“Object C-116”的交易,经研究发现,其出售的型号无论威力还是稳定性都远远低于战争时期以及战后B.N.T.G.使用的型号。

该物品的交易明面上并不面向流浪者。但大量记录表明,B.N.T.G.频频将其出售给黑市或伪装为黑市人员进行出售,使其经黑市之手流入普通流浪者手中。







Diana:所以,你还是决定继续开发你那从他们手里骗过来的技术?

Stretchster:怎么能说骗?一笔“交易”而已。用他们需要的换他们不需要我们需要的,很公平不是吗?还有,我就不明白为什么你自始至终一直都在反对我开发西班牙炸弹的提案?这个东西威力大,造价不高,对我们来讲拿来开路,清理实体都再合适不过,流浪者需要这方便玩意!而且他们乐意掏钱!

Diana:这个物品的确方便,而且你不需要用实体以及建设来当挡箭牌,我想你应该也看的很清楚,这个物品在实际使用中基本上作为军火使用,我敢肯定因此而死的人肯定比实体要多。

Stretchster:怎么使用是他们的自由,我们是商人而不是他们的保姆或老妈,只负责研发与买,而不是管他们用这东西搞出什么名堂,拿来炸商人之家总部我们也无权干涉。

Diana:所以,你就允许是个人在B.N.T.G.设立的市场用50瓶杏仁水等值物就可以买到这么个危险品?你这个冷血短视的,见钱眼开的守财奴!为了钱你甚至可以把浇水用的农具做成炸弹!先不说你之后怎么处理的那些失落一族,又有多少人因为你这个炸弹丧命,多少家庭因为你这个炸弹破碎。

Stretchster:喔喔,冷静点老朋友,那件事纯属意外,时至今日我仍对此感到抱歉。但请仔细想想,时至今日,流浪者的资源、生存空间依然是十分有限,必然会为了争夺这些而动用武力。即使我们不让流浪者用西班牙炸弹,流浪者也会互相扔火盐的。

Stretchster:我不想故意提起这件伤心事,但我还是要说,你不要因为你个人被这东西伤害过就否定掉它的价值。在前厅每年触电而死的人有多少你数的过来吗?不还是照样普及电力?

Diana:诡辩,用途还是我提过的,现在这个炸弹不是用来清理实体,不是用来保护流浪者,不是用来建设开路,这都是你的借口,你的挡箭牌,这个东西现在的用途就是人人间互相轰炸,就像这个炸弹的特性一样,一场爆炸引发更多爆炸!而你只需要把这一粒粒炸弹卖给这些居心险恶之人以及复仇心切的流浪者,然后坐在你舒适的办公椅上数钱,像看猴子一样看着他们互相伤害,互相攻击,然后等着他们下一次购货!这玩意就应该像艾柯吕斯之泪一样严加保管!我在这里就明说吧,如果你和你的B.N.T.G.仍然堂而皇之的向流浪者出售“西班牙炸弹”,那U.E.C.便断绝一切与B.N.T.G.的交易交流,彻底与B.N.T.G.决裂!

Stretchster:你以为我很害怕吗?和B.N.T.G.决裂?笑话,老朋友,仔细想想,和B.N.T.G.决裂到底是谁更吃亏?B.N.T.G.?还是你的U.E.C.?对于B.N.T.G.来讲,U.E.C.那点可怜的贸易额无关痛痒。相反,时至今日B.N.T.G.仍一直在低价抛售U.E.C.大量物资材料,要是没有我B.N.T.G.你U.E.C.当初能站稳脚跟?你说我冷血,多年的旧情你现在是一点都不顾。而且,就算是放到现在,跟我,B.N.T.G.提决裂,就算你同意,你属下愿意吗?

Stretchster:还有,你真的认为瑞撒毒气保管的很好吗?,老朋友,睁开眼睛好好看看这些数据,还有这些事件报告,你手下人可真是越来越放肆啊!与其为未曾谋面的流浪者谋安全,还不如先管好自己的U.E.C.吧。你说我短视,倒有没有想过你包庇的那群“自命不凡”的科学家,要是让他们大展拳脚的话,会对未来和流浪者产生什么影响?

Stretchster:Diana,我说句实话,你是个善良的人,一个好妻子,一个有高尚品德的科学家,却不是一个好的领导者,你甚至都不如Andrew称职……与其担心流浪者的安全,与其抱有幻想,先想想如何管好自己分内的事吧,U.E.C.可正在朝恐怖主义的方向发展,照这势头发展下去,你以后自保都难!

Diana:别扯开话题。

Stretchster:作为老朋友的忠告罢了,最后一次,看在旧交的份上,只要你愿意,我可以让“西班牙炸弹”退出市场。但请好好反省一下,我一声令下就能让手下人心甘情愿的停产停卖这么个致富经,你呢?你可以让你的手下心甘情愿的停止研发瑞撒毒气吗?




之后的故事显而易见,不是吗?U.E.C.与我的设想几乎无异,Diana凶多吉少。


是的,当初停产“西班牙炸弹”的确有几分私心与愧疚。


赎罪?谈不上,仅仅是还老朋友个人情吧。乱世中作为大商人,沾上的罪孽早数不过来以至于熟视无睹了。而且,要是有良心,怎么做买卖?哎,若不是身居B.N.T.G.领导者之位,我可能早死于阿尔戈斯的长矛之下吧,哈哈。


没错,就是要对标U.E.C.的瑞撒毒气。


不不不,阁下对这些炸弹的改造真可谓神来之笔。只是瑞撒毒气的出现影响了当时的政策,而且,要是一开始就卖出好的,消费者可就对以后的产品不买账了。于是当时就决定先卖批便宜货试试水。


B.N.T.G.明面中立,实则与M.E.G.唇亡齿寒,斟酌再三最终决定重新投产并启用“新”型号。


世事无常,物是人非……早就是敌人了,只是现在才彻底撕破脸了而已。况且,这点虚伪的脸面不要也罢。他们有了个堂而皇之的理由,我们也能因此获得反U.E.C.组织的更多支持,不错的交易不是吗?


什么内战可耻,什么人类即使到了后室也不忘内战……这类话题留给政客与青年讨论吧。你这个笑看一切之人,我更好奇,这一切都在你的计算之中吗?


不不不,我真只是单纯的好奇。我只是一个对贸易和金钱感兴趣的商人。就拿西班牙炸弹来说,我考虑的是它是否赚钱以及怎么赚更多的钱。


只不过,经商之路总得留点底线,非必要情况下不引火上身。


哈哈,愿以后合作顺利。███ ██████先生。


B.N.T.G.领导人Stretchster与未知人物的谈话节选,因未知原因设备并未记录对方话语


评分: +35+x

除非特别注明,本页内容采用以下授权方式: Creative Commons Attribution-ShareAlike 3.0 License