PLS-O-264 - “万能胶”
: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 }
评分: +33+x



沦身其中,我方发觉自己的脖颈早在无形中被锁链牢牢困扼,一切行为都不过是牵引下的必然。所谓瘾性,所谓窒息,在这时都成为瞄准生命的利刃,阻碍我触及命运的轨迹。

但,纵是微如燕雀,也总有渴望自由振翅的幻想。

——〈「燕雀」遗书,2025/02/21 〉

PLS-O-264 - “万能胶”




统合物品分类系统
物品编号:PLS-O-264
位置:特殊条件生成
安全性:中性
用途:
粘合
状态:
内部使用

> 概述 <


%E8%83%B62

PLS-O-264,即万能胶,为一类可将事物之表观、性质甚至概念进行粘合的特殊物品。其外观常呈现为半透明的胶状物质,少量淡蓝粒子亦常于物质底部与四周聚集。

万能胶生成时,通常由各式的玻璃容器盛装;尽管如此,在某罐万能胶在被开启并使用前,承装其的玻璃容器会表现出极高的强度,难以因寻常的外力作用而破裂1。可以通过这一特性辨识自然生成的该物品。

然而,由于该物品在自然状态下生成概率较低,故若有需要,更推荐流浪者通过前往P.R.I.及与P.R.I.交好的大型组织处进行购买与使用。

对于万能胶,简单的使用方法为:摇晃瓶身,直至瓶中淡蓝粒子缓缓螺旋上升并扬起少量气泡,即可通过移液器具将其取出使用。需注意,此状态的万能胶只可作为强力胶水使用,不表现粘合抽象事物的特性。

在日常的正常粘合中,万能胶因其持久性与强度远超普通胶水而闻名;同时,万能胶亦因其可将抽象意义上的性质或概念进行粘合而在各类实验室中占有举足轻重的地位。

如需详细,请查阅下方文档。

...




> 特性 <


承上述,万能胶的主要特性可概括为“粘合表观、特性及概念”,而据使用方法的不同,万能胶所展现的具体特性也不同,整体上,可分为三类:普通粘合、特性粘合、概念粘合。

普通粘合

即概述中所提的使用方法——“外力驱动”产生的粘合形式,可将任意物体的表观紧密粘合。此类粘合的效果相当稳定,强度亦极高,一旦粘合成功,则几乎不存在粘合失效2的可能。对其的研究同样表明,使之失效所需的外力,已远超出人类可实现的界限。因此,用此方法使用万能胶时需万分注意,如其粘至体表,应及时处理,以防坚不可摧的粘合对自身安全产生威胁。

若需万能胶表现其进一步的特性,则需另一使用方法——“体液驱动”。向万能胶中添加任意量的高智生物体液3,万能胶即会被完全激发;此时,容器中的万能胶流动性会显著增强,且其中的淡蓝粒子亦会沿一定轨迹进行循环运动。

而后,使用者需饮下少许完全激发态的万能胶。此操作将令使用者感知4到的抽象概念具象化,并以类似于万能胶本身的蓝白粒子交错的形式存在于使用者视野5中。如需辨别,以任意感官接触概念粒子,即可感知到相应粒子代表的抽象概念。

用激发态万能胶接触上述粒子,二者将会相融,且与之相连的万能胶会完全静止于使用处,直至万能胶接触到另外的粒子,并促使两类粒子发生粘合。由此,选取两个粘合对象后,使用者便可实现如下两类粘合:

特性粘合

特指以后室的物品、实体、现象之特性为中心的粘合形式。其中,现象类别的特性粘合因现象本身的偶发性难以发挥实际效果,故此类粘合的主要特性为:

  • 粘合物品与物品:有概率使两件物品的异常性质发生综合;
  • 粘合物品与实体:有概率使原本无法被某类实体使用的物品在该实体身上强制生效,或使物品具有实体相关的能力;
  • 粘合实体与实体:有概率使两个实体产生杂交后代6
  • 将概念粘合至物品/实体:将使物品/实体获取相关概念。

粘合失败的结果与普通粘合一致。

概念粘合

特指将更广义的概念进行粘合的类型。概念粘合的风险很高,实验结果亦十分不稳定,据数据,唯一可确定的结果是:在一定时空范围内,两种概念将会产生联系或发生交合,并持续一段时间。故此,尽管概念粘合类别理论上限极高,但包括研究所在内,并没有任何组织能在这唯一确定的结论上更进一步。

%E8%83%B64

沙漠层级与河流层级的粘合示意。据报告,此景象耗费了我所3个月产量的万能胶,但仅持续了30秒。

需要注意的是,与普通粘合下和平常胶水一致的消耗量不同,进行如上两类粘合时,万能胶的消耗量显著上升,且随着粘合对象的不同而不同;目前,尚未探明用量的上升程度取决于何,但可确定,影响其的两个重要因素,即是“时间跨度”及“概念的相关性”。时间跨度越长,概念间相关性越差,消耗量便越多。

亦因此,尽管有报告表明,万能胶能够粘合的对象,甚至可为层级、思想等远不止上述的概念,但综合报告来看,更宏大的粘合对万能胶的消耗同样宏大得恐怖,考虑到万能胶的产量,此类使用途径显然并非值得研究的方向。


时效

万能胶的粘合存在时效。其中,普通粘合解离的速率缓慢且恒定,故其时效可以被测量与计算,而经计算可得,普通粘合的时效约为129600年。至于特性粘合与概念粘合,其时效则相当不确定,但类似于影响用量的因素,与此二类粘合的时效存在关联的因素同样为粘合对象的时间跨度概念的相关性

其他

此处记述万能胶除主要特性外的其他特性。介于万能胶的特性至今仍未发掘完全,故此板块下方保持持续更新。

...




> 用途 <


既然坐拥“万能胶”这一名讳,O-264的用处自然繁多而广泛。目前,其用处包括但不限于:

研发

是万能胶最大的用处,并无之一。上述归类的三类粘合对于研发都有着重要的意义:普通粘合被用于精密器械的研发,远胜前厅的高强度粘接完全可以安全地替代大部分其他的零件安装方法,对于部分对高温或受迫敏感的材料更是如此。特性粘合与概念粘合则被更多地用于生物科技的推进,且在其中相当重要——我所目前有超过30件对外售卖的产品都与之相关。


辨识

可以利用万能胶来辨识对象是否具有自我智能。取对象少许体液,加入万能胶并观察其激发与否,即可知晓对象是否具有自我智能。此用法在辨识一些会利用环境伪装自己的高智实体时尤其有效。


对敌

可利用万能胶的速干性质应对危险实体。具体用法是:激发万能胶后迅速震荡装有万能胶的容器,直至其中蓝色粒子的运行显著快于平时激发的状态,此时尽力将万能胶平撒而出,接触外部环境的万能胶便会在0.1s~1s间完成凝固,并束缚危险实体。

需要注意,利用上述用法制成的激发态万能胶,在其平复前不可用于正常的粘合,因其并不会提升粘合的成功率或品质,反而会增大其引发事故的风险。


急救

可利用万能胶紧急救治濒死伤员。在缺乏医疗物资、伤员性命攸关时,可用万能胶粘合物理上的伤口等,从而争取时间;更为奢侈的急救法,是运用概念粘合将伤员的生命与他人挂钩,譬如,将伤员与常人的“生机”概念粘合。已经实验证实,后一类用法对他人的身体没有显著影响,争取的时间多少极大程度上取决于万能胶的用量多少,是为数不多可稳定利用的概念粘合之一。


如需知晓更多万能胶的详细作用,请于P.R.I.数据库查阅相关资料集万能大典:O-264用途辑录

...




> 获取 <


相较于后室中的其他物品,万能胶的出现频率堪称诡异:在某些面积无限的层级中,能寻得的万能胶竟屈指可数;而在某些狭小的层级中,又可能在不经意间发现万能胶正于某处堆叠如山。

%E8%83%B65

屋外出现的万能胶。屋子所在的层级刚刚遭受REDE-27的危害。

经实验,此类现象出现的原因现已明晰。万能胶的出现遵循一条规律:在“重大事件”的发生地附近,有更大概率发现万能胶。此处之重大事件,并不一定由人引发,甚至可以不囊括任何生物,唯一的内在限制,是该重大事件须为自然发生,而非有意为之的引导演绎。现象的发生地、REDE实体侵袭后的残骸、组织间和平会晤的场所或是战场,都可能成为万能胶出现的位置。

正因如此,在层级间自行寻找万能胶相当困难——无论是深入具有强烈时间或空间异常的层级,抑或是追随战争与强大实体的脚步,都会将流浪者置于危险的境地中。但亦因如此,P.R.I.成为了万能胶最大的出产地,Level C-520中“天命”的日常维护和Level C-551中与玄鸟贵族的每月会谈,都在稳定而持续地诱发着万能胶的出现,据统计,P.R.I.源于此类行动的万能胶产量,已达到了约50升/月;并且随着研究所与两者交流的逐渐深入,万能胶的产量亦在持续缓慢提高。

故此,P.R.I.此处仍然沿用“概述”部分的观点:如流浪者对万能胶有所需求,最优选择即是到P.R.I.及其交好组织处购买。

...




> 实例 <


此板块下方记述P.R.I.利用O-264在生物科技方面的有效成果及新近实验。根据所利用的特性及粘合对象的不同,大体上可分为四类:修正物品、粘合物品、实体用物、杂合实体。为便于直观理解万能胶的效用,每栏五分之四的条目均为典例,但最后一栏将持续更新万能胶实验动态。

需注意:因并非所有成果皆可公开,故浏览时如出现需求高级权限的新条目,不必惊慌,略过即可。



修正物品


项目名称:“纯净杏仁水”

有效期:50年±5年


本项目由杏仁水修正而来。项目表现为无色略有甜味的液体,无杏仁气味,与纯净水相差无几,但仍然具有杏仁水的特性。该项目在某一特定群体中有一定的流行度,尽管该项目较之普通杏仁水的价格略贵。

制取方法:取杏仁水若干,而后用激发态万能胶将“纯净”的概念附加至杏仁水中,待其自然净化后收集即得。亦可在任意P.R.I.名下店铺购买获得。

批注:本项目已通过食品安全性评定,可以安全饮用。



粘合物品


项目名称:“通行钥”

有效期:6个月±10日


本项目由层级密钥门痘粘合形成,外观表现为几近纯黑且手感蓬松的钥匙。

项目使用时需与源自同一层级的层级密钥一同使用:将项目本身以使用普通钥匙的方法在建筑物的平整墙面上转动若干圈,而后,墙上便会出现一扇样式随机的门7,同时项目本身消失;此时,将相同的层级密钥插入门锁,即可将之开启,而后,踏入门中便可切入相应层级的随机位置。

批注:使用时面对的墙面须为所提“建筑物的平整墙面”,否则该项目有大概率无法生成正确的门。譬如,横向或斜向生成无法进入的门,甚至可能在生成时对使用者造成伤害。


实体用物


项目名称:“公主车兽”

有效期:超过物品本身有效期


本项目利用O-264使公主袍车兽强制生效。生效后,公主袍大部分化为车兽身上的绚丽喷漆,少部分幻化为实质材料改变车兽外形。同时,花域依旧生效,且生成的花朵会自动避让车兽即将驶过的路线,不会阻止车兽的移动。

批注:安保部的车兽同事给予了本项目极大的称赞与认可。



杂合实体


项目名称:“蒲瓜英”

有效期:本体2个月±15天,子代性状永久保留


本项目是受组织「农」委托,将普通的前厅西瓜与蒲公英进行粘合的培育出的杂合作物。

项目的外观类似于前厅的蒲公英植株,但其成年后株高可达4-5m,且顶部绒毛携带的种子为西瓜。经检验,结出的西瓜内部无籽,将其本体整个种入土中即可萌发出新的项目植株。西瓜可以正常食用,味道更甜于普通前厅西瓜。根据「农」的估算,项目的田地亩产西瓜可达300-500kg,且由于其生长在极高的项目植株顶端,基本不存在虫害等情况。

批注:「农」表达了对P.R.I.的衷心感谢,并表示总有一天后室的流浪者们也可以西瓜自由。

再批注:「农」的西瓜自由计划提前被M.E.G.严令禁止。原因是,项目所结的西瓜可以飞上天空,且其本身质量过大,故「农」在某一宜居层级的试验田中的西瓜成熟后突破了拦截网;这一事故直接导致包括M.E.G.基地在内的居住区遭受了恐怖的、持续将近3小时的天降西瓜轰击。


...



事故报告-「燕雀」事件


在「燕雀」的实验直播开始后一分钟之内,P.R.I.就已经发现了该直播的存在,对其进行了信号封锁,只有帕拉斯的设备能够接收到相应信号;随后,管理部立即遣人前往信号的来源地——Level C-551的某处河流畔侧,试图阻止燕雀的行动——

但一切都已为时晚矣。

正如「燕雀」所说,直播的时间并不是周六,其进行实验的时间,也并不是晚八点。待安保部员工赶到现场,看到的便只有躺在岸边昏迷的「归鸾」、液体度量仪、直播设备,以及一台留声机。直播的一切内容,都是被留声机所录下,再定时播放出的。的确,根据直播内容,若非已经结束,传往外界的实时信号,亦应因万能胶的作用被「无视」。而燕雀使用的留声机,恰处在不被影响的范围内,故能够录下相关实验的全部内容。

时至今日,管理部必须承认,有关O-264的信息确实存在隐藏的情况;但正如刚刚发现的「燕雀」遗书中的内容,隐藏信息,确实是因为我们并不知道真相,也并不知道知晓真相的代价。隐藏信息,是管理部经由多次讨论,得出的目前境地的最佳处置方法。而在方法的最后,管理部将会亲自进行这次实验,并承担一切可能的后果。

帕拉斯研究所成立至今,一直秉持着「共生」的理念,管理部几位,亦能保证如此。但此次事件着实给了管理部一次警醒:因为行动的迟缓,因为方法的缺陷,探明O-264本质的后果落在了「归鸾」与「燕雀」身上。

在此,我们为「燕雀」的死亡默哀,并感到自责。

管理部可向诸位保证,自即日起,自即事后,P.R.I.中若再出现需要保密的计划,则相应计划除内容绝对保密外,其存在将不会完全隐藏,诸位P.R.I.员工可以通过定期更换的密钥,于秘密资料库查看当前所存计划。

事已至此,O-264的秘密也不再需要隐瞒,管理部现已将其公布给全部通过测验的P.R.I.员工,并下附相关档案链接。








「燕雀」事件的结果为,「燕雀」在时间的长河中悠然泯灭,事件现场仅仅余下了几缕其身上脱落的羽毛,随着河水悄然荡去;「归鸾」则于「燕雀」消散之地复生,而在其右手手腕上,萌发出了两支紧紧环绕着腕部的玄色羽毛。

除此以外,事件中还有一处最大的疑点:「燕雀」从何处获得如此多的O-264?「燕雀」并未离开过Level C-551,从未参与过O-264的采集,而O-264的秘密仓库更是处于严密防护之下,不可能从中获取O-264。同时,工贸部的O-264记录也并未出现异样。对此,管理部高度重视,并已派出成员进行调查。

本次调查不保密,任何员工都可申请参加。但纵使最终得到结果,「燕雀」或「归鸾」亦不会受到惩处。

毕竟,他们都曾为「共生」奉献生命。

愿帕拉斯小姐的光辉依然普照你我,直至一切的尽头。

管理部
2025/02/22

...



%E8%83%B6%E6%9C%AB2


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