实体生物学家协会 中心页
: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 }

藏匿在黑暗中的发光笑脸、手持气球的派对杀手、披着人皮的食人狂魔、代表死兆白色渡鸦…… 他们在令人感到危险的同时也充满了怪异的乐趣,这些古怪的生物是属于后室的宝藏。

在懦夫们挣扎于如何躲避危险时,我们决定为这片不可多得的乐土注入新的生机。

我们是实体生物学家,是研究生物学的实体,也是研究实体的生物学家。

我们的组织架构

最高理事会成员

  • 协会会长: 可瓦拉女士
  • 公共关系: 神游触须菌
  • 研究骨干: 亚特兰大·R·赞普

合作伙伴

研究团队

  • 实体多样化团队
    他们为提升实体的物种多样性而努力
  • 实体差异化团队
    他们试图创造出更多的实体亚种
  • 实体生态研究团队
    他们研究和改造由实体组成的生态系统
  • 实体驯化与护理团队
    他们做着无聊的工作关心实体的健康

我们专业的团队下还有专注各个领域的研究小组,比如实体生态研究团队下属的直立植物小组,他们分工合作以保证工作顺利进行!

为他们欢呼!

我们的基地和实验室

Level C-393 - “反向进化论”

  • E.B.A. 第三实验室位于此层级;
  • 有两名研究人员在这里常驻;
  • 实体多样化团队-直立植物研究小组主要基地。

Level C-875 - 夏日群岛

  • E.B.A. 第二实验室曾位于此层级;
  • 协会的许多研究小组都在此产出了不少的研究成果;
  • 由于 Art.08 带来的事故,该层级已陷入危险;
  • 第二实验室已废弃。

我们的作品

我们把这些非自然的(Artificial)美妙生物称作艺术品(Art),它们怪异、新奇,会是你从未体验过的。它们有的危险但美丽,有的异常但合理,有的… 可能有些无聊,但这是难免的。

  • Art.01 - [尚未公开]
  • Art.02 - [尚未公开]
  • Art.03 - 金星?
  • Art.04 - [尚未公开]
  • Art.05 - 睡袋熊
  • Art.06 - 胶块灵
  • Art.07 - 皮人1
  • Art.08 - 皮肤制造者
  • Art.09 - 深海游灵
  • Art.10 - 绽羽烟花
  • Art.11 - 小线人
  • Art.12 - 米德虾蛄
  • Art.13 - [尚未公开]
  • Art.14 - [尚未公开]
  • Art.15 - [尚未公开]

我们只在内部文件中称它们为 Art,在其他组织攥写的文档中,还是会将他们称作 Entity,并使用 M.E.G. 数据库的实体编号而非内部编号。

我们的资料库

关于档案管理工作

档案管理员

主编:EltracEltrac(对协会2有疑问可以私聊他!)

得力干将:

写作指导

感谢尚程序式先生为想要加入档案管理部的新人编写指南!

E.B.A. 是什么样的组织?

是后室装修公司、后室旅游集团以及后室厨师联盟的病友。

E.B.A. 是一个由研究生物学的实体组成的团体,也就是说,他们的研究对象是后室原生的生态,所以他们眼中的生物并不一定是由细胞组成的有机造物,任何有意识或者有行动能力,足以被称作“活的”,对他们来说就是生物。

从一些文章看来他们对前厅的生物也有所了解,这是因为 E.B.A. 也有人类成员,他们的骨干就是一个类似「疯狂科学家」的人类角色。人类在这个团体里充当的更多是信息的传递者,他们给协会提供前厅生物学的相关资料,建立数据库并且在公共数据库上攥写文档。

实体和人类共同存在必定导致这个团体内部存在理念的分歧:一部分成员(主要是实体)追求生物多样性,他们保护、改造实体,有时候还会突发奇想,“为什么后室没有 XXX 呢?”,然后造出一个新的实体来;另一部分成员(主要是人类)可能会开发一些被协会认为“无聊”但更有价值的项目。除了这两派各自的研究成果外,他们之间的冲突也是一个不错的切入点。

和同样是实体和人类组成的帕拉斯研究所不同,E.B.A. 并不在乎人类与实体的共存。

E.B.A. 相关文章的创作思路

E.B.A. 可以被理解为「实体版后室装修公司」,但也不完全相同就是了。在创作时,你不应把 E.B.A. 当作另一个 E.P.B. 或者另一个帕拉斯研究所,因为 E.B.A. 做的大部分事情都毫无价值和意义,它们只是为了追求它们自己理解的「生物多样性」,或者是追求一种狂热的「环保」,当然,有的时候它们的动机纯粹是为了好玩。

在创作时,你应该把 E.B.A. 的成员当作彻头彻尾的疯子(虽然这么说些言重了),不应将它们代入正常人的思路。比如,正常人如果要保护一个种族,他们会建立保护区,或者帮助他们躲避天敌,但 E.B.A. 的做法可能是:改造它们的身体,让它们把天敌都吃掉。除了改造,创造一个全新的实体种族也在 E.B.A. 的能力范围内,这时它们的思路可能是:为什么这个层级里没有 XXX 呢?要是有 XXX 的话会更好吧?那就造出来看看吧!

这些创造的结果往往是给其他人和团体带来了不小的麻烦。

另外,不必在创作中做到逻辑通顺,E.B.A. 的重点不在科研!

在语言方面,E.B.A. 的文章仍然是熟悉的临床腔,但可以适当地在严肃的语句中插入一些俏皮的话,或者是用一本正经的语言描述十分疯狂的事情。总之体现出反差感就对了!

关于 EBCS 组件

EBCS(Entity Biology Classification System)是 E.B.A. 专用的实体分类系统,具体的使用方法在组件文档里有说明。这里主要介绍 EBCS 的「项目类型」和「生物分类」。

项目类型仅有:野生、控制、收容、变异、改造、人造

生物分类较为繁琐,以下列表仅作为参考:

  • 类前厅生物:类前厅哺乳动物、类前厅浮游生物、类前厅节肢动物等等,任何前厅(现实世界)存在的生物类型,都可以用「类前厅 XXXX」的格式写在生物分类里;
  • 无机生命:粘液生物、凝胶生物、金属造物、纤维质生物、气态生物、其他无机生命;
  • 其他生命形式:低维生物、高维生物、无躯体生物、环境3
  • 进食方式分类:食肉、食素、杂食、寄生、异食(也称非食性)4、自发能量体5
  • 其他性质分类:毒性、精神干涉、感官影响、蜂巢意识等

也可自行编造,合理即可。

E.B.A. 有规定的写作格式吗?

我们建议你使用这个版式。

[[include :backrooms-wiki-cn:theme:eba]]

此外,在文档中应当将 E.B.A. 的非自然实体称呼为 Art.XX;如果你要自己写一个新的非自然实体,除了给它选定一个形如 Entity C-XXX 的公开编号以外6,还需要一个 Art.XX 的内部编号。这个编号可以随意选择,但要注意的是:编号的大小代表了时间的先后,一个人造实体出现的时间越早,编号就越小。

在通常情况下,我们不建议你选用 00~03 的编号。靠前的编号会作为更重要也更神秘的实体出场,甚至有可能会永远保密,如果你感兴趣,可以和 EltracEltrac 交流。

当然还有排版和行文上的格式要求,这里给出了一些模板。这些模板仅在 E.B.A. 视角采用,如果你写文的视角是 M.E.G. 或其他第三方组织记录的文档,就不需要遵循这些格式。

[[include :backrooms-wiki-cn:theme:eba]]
[[>]]
[[module Rate]]
[[/>]]
[[include :backrooms-wiki-cn:component:ebcs
|name=项目名
|number=Entity C-XXX(如果是隐秘实体则写”暂未分配”)
|art=Art 系编号,通常是两位数字
|iets=IETS 实体风险评级,如 3D-
|project=改造类型,详见上文
|biology=生物学分类,详见上文
|description=一段常规的描述,交代项目背景
|img=项目的图片(可留空)
]]

+ 项目概况

+ 改造过程 或 研究记录

[[div class="lightblock"]]
= [权限不足]
[[/div]]

+ 项目成果

对该实体的描述,语言风格偏向于“成果展示”所以不需要详细解释原理

+ 行为准则

++ 应当

++ 不应


其他常见问题

Q:E.B.A. 的技术从哪来?
A:和后室装修公司一样,E.B.A. 的技术来源是一个谜。事实上,在我的构想里,E.B.A. 可能没有什么科技,它们只要利用某些实体的特殊能力就能缝缝补补东拼西凑造出一个活的东西来。嗯?你问哪个实体能做到?我也不知道啊,现在还没写出来。不过,我更倾向于在这一方面留白就是了。

Q:E.B.A. 会和其他组织来往吗?
A:会,但不多。它们往往和后室娱乐和后室厨师联盟这样不正经的团体有所交流,以便于将它们的造物传播出去。但 B.N.T.G. 可能也会与它们有交集,E.B.A. 会向 B.N.T.G. 出售(甚至是赠送)它们自己人为“无聊”却意外地有用的造物。

Q:E.B.A. 的成员组成?
A:大部分是实体,也有部分是人类。实体的那一部分,其实大部分是没有被写出来的实体,EltracEltrac 有几个 POI 的想法但暂时还没有写出来。这个团体的领导人是一条鱼,而它们的外交官是一株会心灵感应的蘑菇,其他的自然不是什么正经东西。不过,大家熟悉的派对客等智慧实体可能也会出现在这个团体里。至于人类的那一部分,有些是眼馋 E.B.A. 实体的特殊能力,有的则是纯粹的脑子不正常。

Q:既然 E.B.A. 有正常的人类成员,那这个组织内部不会有矛盾吗?
A:不会,至少不太可能会表现出来,因为这样的成员占少数,处于劣势。不过说到这里,为什么这个团体是「协会」而不是什么研究所或者科技公司呢?协会是由个人、单个组织为达到某种目标,自愿组成的团体,通常建立在某种“协议”之上,内部管理比较松散,不会像一个公司那样尽然有序,各个团队之间影响也不大,就和后厨一样。所以,就算团体内有对立的两部分人,第一它们可以做到进水不犯河水,第二协议可以约束他们不做出出格的行为。不过,这都是为了圆设定而搞出来的无聊玩意,创作时就不要过多考虑了。

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