Object As-17
评分: +11+x
: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 }
统合物品分类系统
物品编号:AS-17
位置:大部分层级
安全性:无害
用途:
饮品
状态:
可获取

Object AS-17是后室中的一种食用性液体,该物品又被称为“柠雀汁”,由后室厨师联盟最早发现并命名。柠雀汁广泛分布于后室之中,是一种深受流浪者喜爱的饮品,也是后室中最为重要的调味用品之一。该物品的发现对后室中的烹饪工艺产生了革命性影响,深刻地改变了后室居民的饮食习惯。

我实在想不到能给你些什么了,不如就用这个来替代吧。

描述:

lemonchen1

被装于保温杯中的柠雀汁

柠雀汁是一种无明显气味的半透明柠檬黄色液体。该液体的密度为 1.2g/cm³,比热为4.0 kJ/(kg·℃),凝固点为-5℃,沸点为100℃。

柠雀汁具有优良的导热性与导电性,但对柠雀汁通电并不会使柠雀汁发生任何的性质上的改变,也无法产生任何电离产物。同时,蒸发柠雀汁也并不会得到任何析出物,这表明柠雀汁可能是类似杏仁水的独立物质而非某种物质的水溶液。

柠雀汁的大部分物理性质都与杏仁水相近,但柠雀汁并不会渗入墙体、丝织物与木材之中,也不会与塑料、玻璃、金属等用于制作容器的常见材料发生反应,因此柠雀汁的储存门槛极低,流浪者仅需对储存场所稍加挑选并进行密封存储便可使柠雀汁长期保鲜。





那些食材总是把你弄得一团糟,可你只是自顾自的在灶台前擦药,一言不发。

高温,极寒,黑暗,只有你的固执永远保鲜。

营养价值

柠雀汁中含有大量的维生素,矿物质与膳食纤维,是后室居民补充这三类营养物质的重要途径。经测算,720ml的柠雀汁1便可满足一名成年流浪者对上述三种营养物质一天的需求。

值得一提的是,大量饮用柠雀汁并不会导致饮用者摄入过量的营养物质。当饮用者身体中的某种营养物质超过身体所需量的10%时,饮用者的身体将会停止从柠雀汁中代谢此种营养物质,并在吸收柠雀汁中的水分后直接将多余的营养物质排出体外,因此流浪者无需担心在饱餐一顿后所饮用的柠雀汁对身体内分泌系统的不良影响2

那一次,你拿着调好的肉汁去喂猫,结果那只小黑猫因为里面过量的维C而倒地不起。我记得你为这个难过了整整一个月,直到你生日那天,我拿出了那只被我救活的小黑猫。

那其实是一个逃避送礼的手段——我从来都不知道你喜欢什么。也许,多在意一些细枝末节真的能让结局好看一些?我恨自己并不全知全能。

特殊性质

柠雀汁最为重要的性质是一种被称为“味觉锁定”的感官干扰。当流浪者的口腔接触到柠雀汁时,柠雀汁将会与流浪者的味蕾发生反应,干扰味觉受体的工作,使其只能发出特定的神经信号。同时,饮用柠雀汁将会令口腔周围的痛觉神经组织陷入暂时性休眠,使流浪者的口腔与部分面部肌肉暂时无法感受到疼痛或类似疼痛的感觉。这些反应3将会对流浪者的味觉系统造成干扰,使流浪者的味觉暂时出现感官异常。

在味觉系统受到柠雀汁干扰时,不论流浪者食用何种物质都只会尝到类似柠檬水的淡淡酸甜味,这一味道清爽而简短,与柠雀汁本身的味道4类似。同时,由于柠雀汁对嗅觉系统也存在一定干扰,流浪者将不会遇到因被自己食用的物质在口腔中留下的任何气味。因此,在饮用柠雀汁后,流浪者食用任何食物的饮食体验都将类似于“食用柠雀汁的各类变形形态”。这种受干扰状态也由此被非正式的命名为“柠汁独占”或“柠雀独占”。

流浪者的味觉系统将会在停止饮用柠雀汁的二十分钟后自行恢复正常。目前已发现多种提前消除“味觉锁定”的方法(如通过饮用薄荷露进入“薄荷过载”状态),但这些方法大多成本高昂或具有健康风险,故更推荐流浪者等待“味觉锁定”自行消失。

爬雪山的时候你冻坏了,我熬了一碗辣子汤给你,它让你暖和了一上午,也让你难受了一整天。

我不是我的同类们,目睹人受难并不会让我开心,于是我抱着你走完了整段下山路。但你不是那种会死心的人,你总是热衷于以伤害自己的方式博取一个证明,什么方面都是,所以我只好又铲掉了后院的辣椒。

如果有一种能消解证明的意义,哪怕只能消解一点点对证明的渴望的东西,或许人们身上就会少一点遗憾。你不这么认为吗?“亲爱的”

分布:

lemonchen3

在衣柜中被找到的柠雀汁

柠雀汁以瓶装的形式分布于各个层级,装有柠雀汁的瓶子多为塑料或玻璃材质,也有少量柠雀汁被发现在保温杯等金属类容器中。

柠雀汁被认为是最易获取的后室物品之一,装有柠雀汁的瓶子可以在各室内层级中广泛存在的货架储物柜售货机家具抽屉与墙壁破损处中找到,该物品在部分层级的草地,洞穴与灌木丛中也有分布。


柠雀汁的广泛分布是其被大规模应用的基础,也让其成为了类似火盐的重要交易物资。






天涯何处无芳草,
总把新桃换旧福。
此情可待成追忆,
愿逐月华流照君。

你教我的这些诗,应该可以这么用吧?

相比于问我的助手,我更想要你讲给我听。不论你讲什么我都听。

应用:

凭借解锁的味道与畅快的口感,柠雀汁成为了后室中最常见的饮品之一。痛饮柠雀汁是探险者们补充水分与缓解压力的重要途径。柠雀汁也是重要的维生素补剂,被广泛用于对抗坏血病等维生素缺乏类疾病的调理。

柠雀汁……具有一定的提神功效,值得在大部分情况下随身携带以补充水分与维生素。但需要注意的是,该物品并不含有杏仁水中的供能类营养物质(如蛋白质与脂肪),也无法摄取实体中缓解各类层级的精神危害,因此柠雀汁并不能代替杏仁水作为探索中的主要饮品。

……一种较为实用的策略是将柠雀汁作为主要的水分补充途径,减少非紧急情况下对杏仁水的饮用,从而节省杏仁水以备不时之需……这一策略已被证实可显著缓解流浪者在后室长途通行中的物资紧张问题。

——B.N.T.G《节约点数:物品高效使用法则》



除此之外,柠雀汁的“味觉锁定”效应已被应用至后室生活的多个方面:

食物预处理:

柠雀汁可辅助流浪者饮用/食用在气味或味道上难以忍受的食物。例如在冲泡药物时添加柠雀汁可使其更易被婴幼儿服用,在咖啡中加入柠雀汁可让流浪者在不摄入更多糖类的前提下获得更愉悦的饮用体验,等等。柠雀汁也被用于改善需要溶解刺激性物质进行制作的特种功能饮料的口感。

也许柠雀汁在一定程度上也拥有扭曲认知的能力……不管怎么说,多亏了这东西,我终于不会在喝那些粗制滥补剂时怀疑那是不是实体排泄物做的了。

—-一名来自M.E.G.地质勘探队的特工

口腔麻醉:

由于“味觉锁定”会令流浪者的口腔暂时无法感受到疼痛,因此柠雀汁被用于各类口腔手术的麻醉之中。据B.A.G.的不完全统计,后室中超过80%的牙科手术都是以柠雀汁作为麻醉用品进行的。

厨艺加工:

柠雀汁是后室中最为重要的烹饪用品之一,借助“味觉锁定”效应,烹饪者可以免去对菜品味道的考量而专注于食物对口腔的刺激感5进行烹饪。借助柠雀汁进行的烹饪被单独分类为后室烹饪工艺的一个重要分支——“柠雀厨艺6

柠雀汁的应用使后室中的新式菜品雨后春笋般涌现。对食物的刺激感与“后劲”的追求也极大丰富了后室居民的饮食体验。“柠雀厨艺”的出现还在一定程度上驱动了实体养殖业的多样化,也在推动食品工业类制品7加工技术成熟方面发挥了重要作用。

包括M.E.G.在内的大部分团体认为柠雀汁的潜力不止于此,因此对其用途的开发仍在长期进行中。

你会像雨水一样融入这个世界,我也会像你一样沉没在档案库的数据流中,我们到底都十分廉价。可回忆总是寄居在廉价里,就像我们一起做糊的实验菜品,就像我们玩的蹩脚桌游,就像我们在无人注意的角落里给对方的亲吻。

发现与命名:

柠雀汁最早由后室厨师联盟于2023年7月1日在Level AS-10中发现。根据该组织成员的解释,由于该物品出现于一个山雀窝内,因此发现者将该物品命名为“柠雀汁”。

与大部分广为分布的物品不同,柠雀汁是一种一夜之间出现在后室中的物品。在后室厨师联盟于Level AS-10中发现柠雀汁后,大量资源匮乏与多次招到地毯式物资搜刮的层级中都出现了发现柠雀汁的报告,各物资自补给层级8也开始将该物品作为常规补给品进行补给。而来自暗巷的情报显示,另一个宇宙中也出现了与柠雀汁性质类似且同样以瓶装形式广泛分布的液体。这表明突兀出现的柠雀汁已自然融入了后室物品体系之中,相关原因尚不明晰。

一些事情真的太难了,比如让人——或者说让你理解廉价也可以独特,你真是个大难题。所以,我只好在一些方面骗骗你,在我在行的方面玩些把戏,想办法让你能活过那个盛夏。

文化特征:

由于与流浪者的生活紧密相关,柠雀汁频繁出现于各类描绘后室日常生活的艺术作品之中,成为了后室生活的一大象征物。柠雀汁本身也承载了多种多样的文化意蕴,是后室文化学研究的重要出发点,柠雀汁也由此成为了孵化出后室民风研究类论文最多的物品之一。

柠雀汁最为常见的寓意是“留恋过去,踽踽前行”。这一寓意来源于柠雀汁的味觉"锁定效应"对吞服药物的帮助,常出现于各类奇幻冒险小说中。同时,柠雀汁能令流浪者丧失通过味觉分辨物品的能力的特被大量推理小说用于设置谜题,因此柠雀汁也被视为强逻辑思维与经过精巧设计的物件的象征。

随着柠雀汁的广为人知,人只需要用单独的“柠”或“雀”字便能将柠雀汁的丰富文化意蕴引用于笔下的受命名物件中。这在方便创造者构建复杂意象的同时也带来了一个有趣的现象:“柠”与“雀”既成为了后室中最为热门的姓名用字,而“柠雀”这一名字反而逐渐小众,甚至近乎于绝迹了。这也可视为“精简命名”原则以另一种方式造就的独特。

——《Z识戴学会四月刊:何以为名》

行为准则:

应当:

  • 随身携带少量柠雀汁。
  • 在缺少维生素补充方式时定期饮用柠雀汁。

不应:

  • 浪费与污染柠雀汁。
  • 在大量饮用柠雀汁之后食用含有多维生素或矿物质的食物。

“那些死去的人,停留在夜空,为你点起了灯。有时你唱起歌,有时你沉默,有时你望着天空”9

我不知道前厅有这么安宁的歌谣,只是兀自跟着你唱,兀自唱给你听,兀自唱来想念你。往事随记忆漂向远方。
所幸,远方是一个值得宽慰的,美丽的新世界。
愿你的朋友遍及星空,愿你的作品无人不知,愿你的温柔如愿以偿。

愿漫漫旅途“畅快解腻”。

柠雀,安好。

愿你在冬日的桌边永远能找到一杯给你的柠雀汁。

柠雀,你很可爱,我爱你。


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