Entity C-450 - “胶块灵”
: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
}
.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;
    margin-left: auto;
    margin-right: auto
}
 
div[class*="grider"].offwith-grid-gap { grid-gap: 0 }
 
/**
 * 网格布局
 */
 
/* 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: #fff;
  background: rgb(var(--lh-border-color))!important;
  text-decoration: none
}
 
.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 }
统合实体分类系统
实体编号: #C-450
栖息地: N/A
IETS:
0C+
分级:
Valuable
性质:
HVM
VRL-A
VRL-B
NCR
MCH
CBR
SYN
DMN
SSV
CVL
RAD
NRO
TXC
PYR
RLA
UNQ
AGR
BNV
PSY
{$custom-name}

描述

I2gaTM.jpg

Entity C-450正在休眠中。

Entity C-450 是由 E.B.A. 实体多样性团队及 E.P.B. 共同研制的块状实体,其研发基础为 Level 223“凝胶”,尽管档案中已强调“凝胶”没有任何营养价值,但在多次实验后,实验人员终于使用“凝胶”配置出了现 Entity C-450 的体细胞。Entity C-450 的研发过程属于机密,不予透露

开发 Entity C-450 的目的为创造实体资源,E.B.A. 在 Entity C-450 的方案上达成了目标,Entity C-450 分泌的凝胶比 Level 223 的凝胶更加轻薄、无害,且可以用于开发建材。 Entity C-450 的代谢物可以通过转化产生植物养料,可作为肥料使用。Entity C-450 本身也可以作为宠物进行饲养。

Entity C-450 现在正式开放售卖,您可以通过咨询 E.B.A. 基地工作人员购买 Entity C-450,销售工作会由销售部门处理,他们会在基地根据您挑选的 Entity C-450 体重、大小来拟订价格。1

对销售的相关解释

E.B.A. 开放售卖的 Entity C-450 的资源产出能力相较于本文文档中的 Entity C-450 较差,E.B.A.在 Entity C-450 的项目上有签署合作合同,目前资源产出能力较强的 Entity C-450 大多已租给红星建筑队和B.H.S.,还有一部分资源产出能力较强的 Entity C-450 目前按签约合同已赠给合作组织2用于生产建材、产出肥料,剩余的一些部分由E.B.A.自行管理。您在购买 Entity C-450 时应优先考虑此类因素,若您实在想购买资源产出能力较强的 Entity C-450 ,您需要咨询权利更高的销售人员。Entity C-450 的供应权归属E.B.A.,这意味着我们需根据实际情况来对接您的购买需求。

Entity C-450 售卖的盈利将会回报给参与项目合作的组织或用于开发新的E.B.A.项目。

——E.B.A. 销售部门

生物学特征

Entity C-450 身形成块状,幼体体积一般为 0.5m³,体重为 50kg;成熟个体体积一般为 0.75m³,体重为 75kg,身体不透明3,个体肤色成单色,除双眼外并无类人生物学特征,即便 Entity C-450 与人类都拥有双眼,但 Entity C-450 的双眼呈竖立的椭圆形,且并无瞳孔、眼皮。 Entity C-450 有着5岁儿童的智力,实验人员已证实 Entity C-450 拥有听力及触觉——即便他们没有听觉感官。在第一个 Entity C-450 诞生时,它接受了安全评估,在24小时过后,Entity C-450 被确认为无害实体

Entity C-450 没有具体的运动器官,但有灵活的自我控制能力,在其底部有与其他五面不同的表面,其底部可以分泌一种滑液,滑液的成分水居多,其余成分有一些少量“凝胶”及合成时期植入的“粘滑液激素”4,Entity C-450 通常会分泌滑液并使其充斥整个底部,并利用神经发力,利用滑液进行滑行移动,通常在滑行过程中,Entity C-450 可通过底部的“凝胶”摩擦地面使自己停止滑行,利用身体向左右倾斜改变运动方向。这些有利条件使得 Entity C-450 可以移动自如

Entity C-450 的性格是偏温顺的,正常情况下,它们的移动速度并不会太快,但如果 Entity C-450 处于恐慌或危险之中,它们的移动速度将会加快,这被认为是一种应激行为。Entity C-450 的智力等级虽然处于C+,但是它们仍表现出了高等生物的抗拒行为,例如拒绝某人的触碰/抚摸,Entity C-450 通常会用眯眼的动作来表达自己的抗拒,若遇到非自愿的被控制情况,Entity C-450 会保持眯眼的状态,在意识到自己处于完全被动的情况时,Entity C-450 才会挣脱并逃跑。

Entity C-450 分有雄性雌性,Entity C-450 的性别无法用肉眼分辨,但通过触摸个体右眼或左眼的下方区域可判断一个 Entity C-450 个体的性别,如果个体右眼下方附近能触碰到一种底部为圆形的物体,则触碰到的是雌性的生殖器官——植入芽;如果个体左眼下方附近能触碰到一种与其他位置与众不同的正方体,则触碰到的是雄性的生殖器官——基因块。植入芽和基因块的作用会在下文提及。

行为

饮食
Entity C-450 需要有机物5及水的补充,在 Entity C-450 的身体左侧下方有一个类似车辆油箱的部分,在需要摄入食物时,Entity C-450 会让这部分打开,里面则是一个方形消化腔,消化腔的内部则是有消化作用的细胞,但 Entity C-450 并没有消化液及分泌消化液的器官,所以为了保证食物消化的速度,Entity C-450 会支配出大量能量给消化腔细胞,但通常情况下,Entity C-450 只会在摄食时才给消化腔支配大量能量。Entity C-450 摄入水一般不需要使用消化腔,其个体皮肤通常可以直接渗入水,因此Entity C-450在找到水时并不会打开消化腔口,它们会想办法使水淋在皮肤上或是直接沉在水中。

新陈代谢
Entity C-450 和其他生命体一样,同样会周期性更换细胞,一般情况下,Entity C-450 每 122 天进行一次全身细胞更替,其衰老或死亡的细胞将会伴随着凝胶并以一种不规则的形状从身体上脱落。脱落的物体质量通常为 1.5kg~2kg,E.B.A. 通过实验发现了 Entity C-450 代谢物的另一价值,含 Entity C-450 代谢物的土壤会经过一系列转化出现大量的植物养料,这一发现使得 E.B.A. 成就了全部门第一个有益实体。

求偶与繁殖行为

cubeentity.png

Entity C-450生殖模式演示图。

与鸟类似,Entity C-450 同样一套由求偶到产下后代的流程。Entity C-450 的夫妻生活为一夫一妻制,通常两个个体在求偶配对后会相伴终生6这种情况推测与基因有关,这使得一对 Entity C-450 夫妻显得十分和睦。

Entity C-450 的两性个体都可以是求偶方,Entity C-450 通常会给求偶的异性带来一些物品作为“礼物”,目前观察到的物品包括但不限于:一块芝士披萨,小罐的杏仁水,颜色残缺的魔方,这些物品通常是补给品、玩具,少数的还有一些生活用品。被求偶的个体会根据自己意愿决定是否与求偶方结成夫妻,被求偶方若接受求偶方,则会接收“礼物”并与求偶方结伴而行,反之,被求偶方不会接收礼物。

在两个个体结为夫妻之后,不会马上繁殖,在 3~5 天之后才会进行繁殖。Entity C-450 的繁殖方式与两栖动物有一定的相似性,但又与其他生物大不相同,Entity C-450 雄性的“基因块”起到卵的作用,而雌性的“植入芽”起的是精子作用,Entity C-450 的这一特点与大部分生物完全不同

繁殖开始时,Entity C-450 的雄性个体会将体内的基因块排出,此时雌性个体会靠近基因块并排出植入芽,这一过程中,雌性个体会尽力让植入芽掉落在基因块上,以便两者结合,若植入芽没有接触基因块,雌性个体将会用身体尝试将其挤入植入芽。在结合成功以后,繁殖的这对 Entity C-450 夫妻会将结合体挤到温暖湿润的环境中,因为 Entity C-450 还没有正式投入层级生活中,所以 Entity C-450 的幼体都是由 E.B.A. 的护理团队进行培养的。

Entity C-450 幼体通常需要 3~4 个月的时间才能完成初步的发育并形成器官,这个过程中会决定 Entity C-450 的性别,Entity C-450 的细胞内含有两对冲突的性染色体,在结合体产生 10 天后,会留下个数较多的性染色体,并淘汰个数较少的染色体,即:细胞性染色体内的XX染色体居多,产出的 Entity C-450 为雌性;细胞性染色体内的 XY 染色体居多,产出的 Entity C-450 为雄性。在选择性别的过程结束之后,Entity C-450 才会正式开始发育,这使得 Entity C-450 不会发生器官冲突的问题。

行为准则

应当

  • 根据 Entity C-450 的意愿进行抚摸。
  • 按时投喂 Entity C-450 能够消化的食物。
  • 对 Entity C-450 保持友善。
  • 远离正在休息的 Entity C-450。

不应

  • 打扰正在繁殖或休息的 Entity C-450。
  • 强制抚摸或玩弄 Entity C-450。
  • 对 Entity C-450 实施暴力行为。
  • 对 Entity C-450 进行恐吓。

附件

下面是一封来源于B.H.S.园艺师诺尔·泽罗的信件,他在B.H.S.使用了 Entity C-450 代谢物作为肥料:

致:E.B.A.



您好!我是来自B.H.S.的代表园艺师诺尔·泽罗,我在B.H.S.收到了E.B.A.发来的这些小东西,它们特别可爱,我非常喜欢这些 Entity C-450 ,收到以后我们把它们养在了B.H.S.的花园里,现在我们已经收了许多的肥料,这使得我们完成了许多完美的园艺项目,对此我深表感谢,我对这次合作非常满意,希望我们的合作以后收获会更多!


此致,
——诺尔·泽罗


评分: +30+x

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