/* ================================================================== */ /* 1. 基础设置与外部资源导入 */ /* ================================================================== */ /* 声明字符编码为 UTF-8 */ @charset "UTF-8"; /* 引入第三方 CSS 文件 */ @import url("https://backrooms-to-dv.wikidot.com/local--files/theme:fixed-test/CSS.css"); /* 基础样式文件 */ @import url("https://fastly.jsdelivr.net/gh/Etinjat/CSS@Backrooms/003v_THEME-liminal_new-BHL.css"); /* Backrooms 主题扩展样式 */ /* 引入 Google 字体(多语言支持) */ @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700;900&display=swap'); /* 主字体:Inter */ @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@100;300;400;500;700;900&display=swap'); /* 简体中文无衬线体 */ @import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@100;300;400;500;700;900&display=swap'); /* 简体中文衬线体 */ @import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&display=swap'); /* 繁体中文无衬线体 */ @import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@100;300;400;500;700;900&display=swap'); /* 繁体中文衬线体 */ /* ================================================================== */ /* 2. 全局 CSS 变量定义(主题核心配置) */ /* ================================================================== */ :root { /* ----- 主题标识 ----- */ --theme-base: "black-highlighter"; /* 基础主题名称 */ --theme-id: "mt"; /* 主题唯一标识符 */ --theme-name: "MT"; /* 主题显示名称 */ /* ----- 头部品牌元素 ----- */ --logo-image: url("https://mt-backrooms.wikidot.com/local--files/start/new-mt-logo"); /* 网站 Logo 图片地址 */ --header-title: "The Backrooms MT"; /* 主标题文字 */ --header-subtitle: "你 并 不 是 没 有 从 未 来 过 这 里"; /* 副标题文字(空格营造神秘感) */ /* ----- 字体栈定义(现代无衬线为主,中文字体后备)----- */ --body-font: Inter, Noto Sans SC, Arimo, Verdana, Geneva, sans-serif; /* 正文字体 */ --header-font: Inter, Noto Sans SC, Franklin Gothic Medium, Franklin Gothic, ITC Franklin Gothic, Arial, sans-serif; /* 标题字体 */ --title-font: var(--header-font); /* 页面大标题字体(同标题字体) */ --mono-font: Recursive, 幼圆, Noto Serif SC, Consolas, monaco, monospace; /* 等宽字体(代码、终端风格) */ /* ----- 基础颜色变量(RGB 格式,便于配合 rgba() 使用)----- */ --white-monochrome: 20, 20, 20; /* 背景 */ --pale-gray-monochrome: 55, 55, 55; /* 编辑页面底部按钮、分页上方、div块深色部分 */ --light-gray-monochrome: 222, 222, 222; /* 分割线上部 */ --gray-monochrome: 210, 210, 230; /* div块浅色部分、分页 */ --black-monochrome: 255, 255, 255; /* 文本 */ --bright-accent: 115, 119, 120; /* 选中分页、按钮悬停、已读链接 */ --medium-accent: 183, 186, 190; /* 分页底部、搜索框、脚注块最左侧部分 */ --dark-accent: 115, 119, 120; /* 脚注块中间部分、标签及其文本、页面底部第二色块+按钮前端 */ --pale-accent: 115, 119, 130; /* 实际未使用) */ --dark-gray-monochrome: 207, 207, 203; /* 页面最底部、顶栏悬停及展开 */ --light-pale-gray-monochrome: 255, 255, 255; /* 深色div块浅色文本 */ --very-light-gray-monochrome: 0, 0, 0; /* 浅色div块深色文本 */ /* ----- 渐变效果(头部区域)----- */ --gradient-header: linear-gradient(to top, rgba(var(--pale-gray-monochrome)) 0%, rgba(var(--pale-gray-monochrome), 0.20) 100% ); /* 从深灰色到半透明深灰色的渐变,营造层次感 */ /* ----- 组件颜色变量(应用主题色)----- */ --swatch-headerh1-color: var(--black-monochrome); /* 主标题颜色:白色 */ --swatch-headerh2-color: var(--black-monochrome); /* 副标题颜色:白色 */ --swatch-topmenu-border-color: var(--pale-gray-monochrome); /* 顶部菜单边框色:深灰色 */ --swatch-topmenu-bg-color: var(--pale-gray-monochrome); /* 顶部菜单背景色:深灰色 */ /* ----- 链接颜色(科技蓝/青色调)----- */ --link-color: 0, 190, 255; /* 普通链接颜色:亮蓝色 */ --hover-link-color: 0, 255, 190; /* 悬停链接颜色:青绿色 */ /* ----- 背景特效配置 ----- */ --background-gradient-distance: 0rem; /* 无渐变距离(取消渐变偏移) */ --diagonal-stripes: linear-gradient(transparent 0); /* 斜条纹效果(当前未使用,保留占位) */ } /* -------------------------------------------- 3. 全局背景与布局 说明: 页面整体背景样式、容器布局设置 -------------------------------------------- */ /* 主体背景 - 移除点阵,使用纯色背景 */ #skrollr-body { background-image: none; /* 移除径向渐变点阵 */ background-color: rgb(var(--pale-gray-monochrome)); /* 使用浅灰色纯色背景 */ width: 100%; height: 7.5rem; } /* 主容器背景 - 移除半透明点阵,使用纯色背景 */ #container { background-image: none; /* 移除径向渐变点阵 */ background-color: rgba(var(--pale-gray-monochrome), 0.4); /* 使用半透明浅灰色背景 */ background-attachment: fixed; } /* 头部和顶栏背景滚动方式 */ #header, #top-bar { background-attachment: scroll; } /* ================================================================== */ /* 4. 头部区域样式(Logo、标题) */ /* ================================================================== */ /* 头部和顶部栏背景滚动方式:随页面滚动(不固定) */ #header, #top-bar { background-attachment: scroll; } /* 移除头部的默认背景图片,以便使用自定义伪元素 */ #header { background-image: none; } /* 头部伪元素:显示半透明 Logo 水印 */ #header::before { content: ""; position: absolute; height: 100%; width: 100%; left: 0; top: 0; background-image: var(--logo-image); /* 使用自定义 Logo 变量 */ background-size: auto 16rem; /* 背景高度 16rem,宽度自动 */ background-position: center; background-repeat: no-repeat; opacity: 0.4; /* 40% 透明度,作为背景装饰 */ } /* 主标题 h1 及其链接:绝对定位,居中显示 */ #header h1, #header h1 a { position: absolute; top: 1rem; /* 距离顶部 1rem */ margin: 0; width: 100%; display: flex; justify-content: center; z-index: 0; /* 位于 Logo 水印之上 */ } /* 副标题 h2 及其内部元素:绝对定位,居中显示 */ #header h2, #header h2 span, #header h2 span::before { position: absolute; top: 2rem; /* 距离顶部 2rem,位于主标题下方 */ margin: 0; width: 100%; display: flex; justify-content: center; } /* 标题文字阴影:增强立体感和可读性 */ #header h1 a::before, #header h2 span::before { text-shadow: .063rem 0.1rem 0.1rem #0c0c0c; /* 轻微黑色阴影 */ } /* ================================================================== */ /* 5. 页面底部按钮样式(扁平风格) */ /* ================================================================== */ /* 底部选项按钮:无圆角、无边框 */ div#page-options-bottom-2 > a, div#page-options-bottom > a { border-radius: 0em; -moz-border-radius: 0em; /* Firefox 兼容 */ border: none; } /* 底部按钮悬停/激活状态:同样无边框,保持样式一致 */ div#page-options-bottom-2 > a:active, div#page-options-bottom-2 > a:hover, div#page-options-bottom > a:active, div#page-options-bottom > a:hover { border: none; } /* ================================================================== */ /* 6. 侧边栏样式 */ /* ================================================================== */ /* 侧边栏内所有图片:100% 灰度滤镜,统一为黑白风格 */ #side-bar .side-block div a img { filter: grayscale(100%); } /* 侧边栏图片反转效果(覆盖上一个规则,实现约 90% 反转) */ #side-bar .side-block div a img { filter: invert(calc(230/255)); /* 图片颜色反转,程度约 90% */ } /* 侧边栏链接悬停效果:10% 透明度青绿色背景 */ #side-bar a:not(.newpage):hover { background-color: rgba(0, 255, 190, 0.1) !important; } /* ================================================================== */ /* 7. 链接样式(存在页面 / 新建页面) */ /* ================================================================== */ /* 存在页面的链接悬停效果 */ a:not(.newpage):hover { background-color: rgba(0, 255, 190, 0.1) !important; /* 10% 透明度的青绿色背景 */ transition: background-color 0.2s ease; /* 平滑过渡 */ } /* 新建页面链接颜色:红色(高亮提醒) */ a.newpage { color: rgb(255, 0, 0) !important; /* 红色文字,使用 !important 确保覆盖 */ } /* 新建页面链接悬停状态 */ a.newpage:hover { color: rgb(255, 0, 0) !important; /* 保持红色文字 */ background-color: rgba(255, 0, 0, 0.1); /* 淡红色背景,提高可识别性 */ } /* ================================================================== */ /* 8. 顶部导航菜单样式 */ /* ================================================================== */ /* 顶部导航菜单链接默认状态 */ #top-bar div.top-bar > ul > li > a, #top-bar div.mobile-top-bar > ul > li > a { color: rgb(255, 255, 255) !important; /* 白色文字,与深色背景形成对比 */ transition: color 0.2s ease; /* 颜色过渡效果 */ } /* 顶部导航菜单链接悬停状态 */ #top-bar div.top-bar > ul > li > a:hover, #top-bar div.mobile-top-bar > ul > li > a:hover { color: rgb(var(--pale-gray-monochrome)) !important; /* 悬停时变为浅灰色(55,55,55) */ background-color: rgba(0, 255, 190, 0.1) !important; /* 10% 透明度的青绿色背景 */ } /* 顶部菜单链接悬停效果(通用) */ #top-bar a:hover, #top-bar div.mobile-top-bar a:hover { background-color: rgba(0, 255, 190, 0.1) !important; } /* 父级悬停时子链接样式(保持一致性) */ #top-bar div.top-bar > ul > li:hover > a, #top-bar div.mobile-top-bar > ul > li:hover > a { color: rgb(var(--pale-gray-monochrome)) !important; /* 浅灰色文字 */ } /* ================================================================== */ /* 9. 登录状态与账户按钮 */ /* ================================================================== */ /* 登录状态文字样式 */ #login-status { color: rgb(var(--black-monochrome)); /* 白色文字(--black-monochrome 实际为白色) */ } #login-status a { color: rgb(var(--black-monochrome)); /* 白色链接 */ } #login-status ul a { color: rgb(var(--pale-gray-monochrome)); /* 浅灰色链接(55,55,55) */ } /* 账户按钮样式 */ #account-topbutton { color: rgb(var(--black-monochrome)); /* 白色文字 */ } /* ================================================================== */ /* 10. 搜索框交互 */ /* ================================================================== */ /* 搜索框悬停/聚焦状态:半透明背景 */ #search-top-box-input:hover, #search-top-box-input:focus { background: rgba(var(--medium-accent), .25); /* 浅灰蓝色半透明背景 */ } /* ================================================================== */ /* 11. 表格样式 */ /* ================================================================== */ /* 维基内容表格表头样式 */ table.wiki-content-table th { background-color: rgb(210, 210, 230) !important; /* 亮色背景 */ color: rgb(var(--black-monochrome)); /* 白色文字(--black-monochrome 实际为白色) */ border-color: rgb(var(--black-monochrome)); /* 白色边框 */ } /* ================================================================== */ /* 12. 图片块与引用块 */ /* ================================================================== */ /* SCP 图片块样式:添加阴影效果 */ .scp-image-block { box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); } /* 通用引用块样式:20% 透明度的青绿色背景 */ blockquote, div.blockquote { background-color: rgba(0, 255, 190, 0.2); /* 20% 透明度的青绿色背景 */ color: inherit; /* 继承文字颜色 */ padding: 1rem; margin: 1rem 0; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); border-color: rgb(0, 255, 190) !important; /* 青绿色边框 */ } /* 风格化引用块:左侧边框为蓝色 */ .styled-quote { background-color: rgb(var(--gray-monochrome)); /* 亮蓝色背景 */ border-left: 0.5rem solid rgb(var(--pale-gray-monochrome)); /* 深灰色左边框 */ color: rgb(var(--very-light-gray-monochrome)); /* 白色文字 */ padding: 0.1rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); } /* 暗色风格引用块:蓝色背景,左侧深色边框 */ .dark-styled-quote { background-color: rgb(var(--pale-gray-monochrome)); /* 深灰色背景(55,55,55) */ border-left: 0.5rem solid rgb(var(--gray-monochrome)); /* 左侧亮蓝色边框 */ padding: 0.1rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); } /* ================================================================== */ /* 13. 内容块样式(Light / Dark / Border 系列) */ /* ================================================================== */ /* 亮色内容块:蓝色背景,黑色文字 */ .lightblock { background-color: rgb(var(--gray-monochrome)); /* 亮蓝色背景 */ color: rgb(var(--very-light-gray-monochrome)); /* 黑色文字 */ padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); } /* 暗色内容块:深灰色背景,白色文字 */ .darkblock { background-color: rgb(var(--pale-gray-monochrome)); /* 深灰色背景 */ padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); color: rgb(var(--light-pale-gray-monochrome)); /* 白色文字 */ } /* 更深色内容块:浅灰色背景,白色文字 */ .darkerblock { background-color: rgb(var(--pale-gray-monochrome)); /* 深灰色背景(55,55,55) */ padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); color: rgb(var(--light-pale-gray-monochrome)); /* 白色文字 */ } /* 深色边框块:深灰色背景 + 亮蓝色粗边框 */ .dark-borderblock { background-color: rgb(var(--pale-gray-monochrome)); /* 深灰色背景 */ color: rgb(255, 255, 255); /* 白色文字 */ padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); border: solid 0.3rem rgb(var(--gray-monochrome)); /* 亮蓝色粗边框 */ } /* 亮色边框块:亮蓝色背景 + 深灰色粗边框 */ .light-borderblock { background-color: rgb(var(--gray-monochrome)); /* 亮蓝色背景 */ color: rgb(var(--very-light-gray-monochrome)); /* 黑色文字 */ padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); border: solid 0.3rem rgb(var(--pale-gray-monochrome)); /* 深灰色粗边框 */ } /* 基础边框块:深灰色背景 + 亮蓝色粗边框 */ .borderblock { background-color: rgb(var(--pale-gray-monochrome)); /* 深灰色背景 */ color: rgb(var(--light-pale-gray-monochrome)); /* 白色文字 */ padding: 0.01rem 1rem; margin: 0.5rem 0 0.5rem 0.25rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); border: solid 0.3rem rgb(var(--gray-monochrome)); /* 亮蓝色粗边框 */ } /* ================================================================== */ /* 14. 标题块样式(章节标题) */ /* ================================================================== */ /* 标题块样式:用于章节标题区域 */ .titleblock { background-color: rgb(var(--pale-gray-monochrome)); /* 深灰色背景 */ color: rgb(var(--light-pale-gray-monochrome)); /* 白色文字 */ padding: 0.5rem 1rem 0.10rem; /* 上内边距较大,下内边距较小 */ margin: 1.5rem 0rem 0.5rem 0rem; /* 较大的上外边距,与正文分离 */ box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.5); /* 较深的阴影 */ border: solid rgb(var(--gray-monochrome)) 2px; /* 亮蓝色细边框 */ } /* 标题框样式:配合 titleblock 使用,形成重叠标签效果 */ .titlebox { color: rgb(var(--very-light-gray-monochrome)); /* 黑色文字 */ position: relative; top: -1.6rem; /* 向上偏移,与 titleblock 重叠 */ background-color: rgb(var(--gray-monochrome)); /* 亮蓝色背景 */ padding: 0.25rem 1rem; line-height: 0.1rem; /* 极小行高,使文字紧凑 */ } /* ================================================================== */ /* 15. 分页组件样式(TabView) */ /* ================================================================== */ /* 分页顶部选中状态:蓝色背景 */ .yui-navset .yui-nav .selected { background-color: rgb(var(--gray-monochrome)) !important; /* 选中分页亮蓝色背景 */ border-color: rgb(var(--gray-monochrome)) !important; /* 蓝色边框 */ } /* 选中分页的文字颜色:白色 */ .yui-navset .yui-nav .selected a, .yui-navset .yui-nav .selected a:focus, .yui-navset .yui-nav .selected a:hover { color: rgb(255, 255, 255) !important; /* 白色文字 */ background-color: transparent !important; /* 透明背景 */ } /* 分页内容区域:淡蓝色背景 */ .yui-navset .yui-content { background-color: rgba(0var(--gray-monochrome), 0.1) !important; /* 10% 透明度的亮蓝色背景 */ border-color: rgb(var(--gray-monochrome)) !important; /* 蓝色边框 */ } /* 未选中分页悬停效果:淡蓝色背景 */ .yui-navset .yui-nav a:hover { background-color: rgba(var(--gray-monochrome), 0.2) !important; /* 20% 透明度的亮蓝色背景 */ } /* ================================================================== */ /* 16. 安全/危险等级容器样式(SD 组件) */ /* ================================================================== */ .sd-container { --sd-border: var(--white-monochrome); /* 边框颜色:深灰色(20,20,20) */ --sd-text: 222,222,222; /* 文字颜色:浅灰色 */ --sd-symbol: var(--sd-text); /* 符号颜色同文字 */ --sd-bullets: var(--sd-text); /* 项目符号颜色同文字 */ --sd-symbol: var(--sd-border) !important; /* 覆盖符号颜色为边框色(深灰色) */ --sd-symbol-secondary: 255, 255, 255; /* 次要符号颜色:纯白 */ } /* ================================================================== */ /* 17. 页脚样式 */ /* ================================================================== */ #footer { color: rgb(var(--pale-gray-monochrome)); /* 浅灰色文字(55,55,55) */ } /* ================================================================== */ /* 18. 脚注区域修复(解决链接重叠问题) */ /* ================================================================== */ /* 脚注引用链接(正文中的上标数字) */ sup a.footnote-id { margin: 0 0.15rem; /* 为每个脚注链接左右添加微小间距,防止紧贴 */ display: inline-block; /* 确保margin生效,同时不影响行内布局 */ white-space: nowrap; /* 防止数字换行 */ } /* 脚注列表区域(页面底部的脚注块) */ .footnotes { margin-top: 2rem; /* 与正文保持足够距离 */ padding-top: 1rem; border-top: 1px solid rgba(var(--gray-monochrome), 0.5); /* 添加浅色分割线,增强视觉区分 */ clear: both; /* 清除可能的浮动影响 */ } /* 脚注列表中的每一项 */ .footnotes .footnote { margin: 0.5rem 0; /* 为每个脚注项添加上下间距 */ line-height: 1.4; /* 适当行高,避免文字重叠 */ } /* 脚注内的链接(返回正文的箭头) */ .footnotes a.reversefootnote { margin-left: 0.5rem; /* 为返回链接添加左边距,避免与脚注文字紧贴 */ }
位置:尚未明确
安全性:安全
物品编号:MT-13
位置:尚未明确
文件属性:Crest
描述:
Object MT-13,更常见的称呼为“制冷水”,外观呈瓶装水,瓶身材质为普通的透明塑料,其中液体呈红褐色,没有特殊的气味,口感与前厅中的果茶或豆汤有些许相似。该物品的液体部分似乎会自行制冷,温度总是趋近4℃左右1,即使被加热后温度也会自动降低,具体原因尚未探明。除此之外,该物品暂时没有其他被发现的特殊性质。
Object MT-13于未知层级被拍摄到的一张清晰图片。此后该物品已被移交至锚点公会。
该物品首次发现于2025年6月28日,由锚点公会高层会员Charlie于Level 1拍摄并上传锚点工会高层报告。目前尚不能明确制冷水的刷新规律及规模,但就目前的发现记录来看,该物品似乎只会刷新在生存难度不大于1的安全层级角落处,且极少出现。
目前,锚点公会已开始赏金回收后室各地发现的制冷水,并作为其销售品之一售卖。锚点工会技术研究分会正在进一步解明该物品的性质,以帮助流浪者更好、更安全、更有效的使用该物品。
用途:
鉴于该物品拥有良好的制冷控温效果,该物品被推荐作为便携的制冷器具,也可以在炎热环境下适量饮用达到有效的解暑降温的效果2。但需要注意的是,该物品的温度无法长时间维持在0摄氏度以下,同时大量饮用可能导致失温3,因此不建议将其作为主要饮品过量摄入。
相关记录:
来源:锚点工会内部高层报告
创建时间:4/2/2025
创建人:Molotow62
分类:工作报告 / Bolt
状态:已授权
我似乎发现了一个新玩意?
事实上是这样的,我在Level 1这边发现了一瓶浅红颜色的水(虽然这么描述不太恰当,但我词穷了),我把它和数据库里已有的东西比对之后没有找到有关这种东西的记录,所有我怀疑这是一个新物品或者什么。
它摸起来很凉,我觉得对于我这种怕热的人来说这是个好东西。它的图片我待会发过去。
另外添一句,我已经用手拿着它超过了10分钟了,但它似乎更凉了(?)。
回复:基地收到了你的报告,我们确实没找到这种物品的相关信息,如果可以的话,请你返回基地,我们需要了解一下这个东西。
——MF64
后记:此后我们召回了Molotow62,感谢Molotow62的贡献,我们发现了一个新物品。我们将这个新物品命名为“制冷水”4,并编号为Object MT-13。
——MF64
来源:锚点工会内部高层报告
创建时间:5/23/2025
创建人:H3. Wheat
分类:工作报告 / Bolt
状态:已授权
关于制冷水的研究报告
据我们现在的研究结果,制冷水呈弱酸性,无毒,其中没有微生物等或杂质,因此水质很干净,饮用后72小时内除有体温可能小幅降低外无副作用。基本可以确定其对人体无害。
另外,已确定该物品制冷的部分是水,不是瓶子,尽管这听起来很反物理。对啊,这么一瓶正常的水,为啥会制冷呢?我们得知了这种水的制冷表现,但原因还是一团谜。我们的数据显示,制冷水会保持着0至5℃左右的温度,其制冷效果可以一直有效维持,直到被加热到约120℃以上才会失去制冷效果5。也就是说,如果人体摄入了这种水,那么它依然会继续制冷并从人体带走额外的能量,所以大量饮用可能会很危险。很奇怪的是,人喝了这种水好像不会因为肠胃里的持续低温而难受,但是这不代表完全没有风险。我们目前标定的安全饮用量为200mL,这是个非常保守的保守值,实际上安全量应该比这个高,但为了保证安全,我就先这么写。
我们会继续开展有关该物品的研究。
回复:感谢H3. Wheat和他的团队。我们会如实公布你们的研究结果。
——Molotow62
后记:这篇报告内容成为了该物品得到销售许可的重要基础之一,尽管这时售价高得离谱。但该此研究及其相关的论文确实证实了该物品的主要特性、稳定性及潜在的安全隐患。
——MF64
来源:锚点工会内部高层报告
创建时间:6/16/2025
创建人:H3. Wheat
分类:工作报告 / Bolt
状态:已授权
关于制冷水的研究报告
按我们更新的研究结果来看,我们对制冷水的性质解明又近了一步。我们更新了一些信息,如该物品代谢后会产生无害的弱碱性物质,因此属于碱性食品;在静置超过40天后可能会出现微量的红褐色沉淀,该沉淀可放心食用,但口感不佳,且浓度太高时并不具有同样优秀的制冷效果;该物品的常温范围更新为-2至10℃,安全饮用量更新为500mL(说实话,我们不会再改了,这已经很多了)。
更详细的报告我们将作为另一份B级文件发过去6。我们这边有个建议,把这玩意当咱公会的独占销售品,或者咱先开始大批售卖,应该能赚不少帮到很多人,至少咱现在对这种东西的了解已经够深了,而且库存也不算稀缺,应该可以卖。
回复:感谢H3. Wheat和他的团队。对外公布信息已更新。关于售卖的问题,我们将保留你的想法,下一次公开会议会讨论这件事。
——MF64
后记:销售问题已于2天后的会议上讨论,讨论结果如下:
- 支持加大售卖规模的人占多数;
- 大部分公会店铺同意将其列入货架;
- 决定赏金回收更多的制冷水;
- 立新项目,以研究该物品的人为制造方法。
会议次日,锚点公会的第一批以现价销售的制冷水于基地销往外界。
——Plum
感谢阅读!干杯!
作者:Mimura Foxium
屏幕之外,文中图片由作者在前厅拍摄。
文中的部分超链接指向后室维基其他站点。
« Object MT-12 | Object MT-13 | Object MT-14 »


