/* 基础设置 */ @charset "UTF-8"; /* 声明字符编码为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'); /* 主字体 */ @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'); /* 繁体中文衬线体 */ /* 根变量定义 */ :root { --logo-image: url("https://imgurl.diadi.cn/imgs/2025/07/5ec45654084495de.png"); --header-title: "锚点公会"; --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格式) */ --white-monochrome: 250, 250, 255; --pale-gray-monochrome: 240, 255, 255; --light-gray-monochrome: 100, 100, 230; --gray-monochrome: 100, 100, 230; --black-monochrome: 0, 0, 5; --bright-accent: 90, 80, 230; --medium-accent: 90, 80, 230; --dark-accent: 90, 80, 230; --pale-accent: 120, 200, 255; --swatch-menubg-dark-color: var(--white-monochrome); --thing: 100, 110, 200; /* 渐变效果 */ --gradient-header: linear-gradient(to top, rgba(var(--pale-gray-monochrome)) 0%, rgba(var(--pale-gray-monochrome), 0.20) 100% ); /* 顶部渐变 */ /* 组件颜色变量 */ --swatch-headerh1-color: var(--white-monochrome); /* 主标题颜色 */ --swatch-headerh2-color: var(--white-monochrome); /* 副标题颜色 */ --swatch-topmenu-border-color: var(--pale-gray-monochrome); /* 顶部菜单边框色 */ --swatch-topmenu-bg-color: var(--pale-gray-monochrome); /* 顶部菜单背景色 */ /* 链接颜色 */ --link-color: 120, 80, 230; --hover-link-color: 120, 200, 230; --visited-link-color: 50, 0, 100; /* 背景渐变距离 */ --background-gradient-distance: 0rem; /* 无渐变距离 */ /* 斜条纹效果(当前未使用) */ --diagonal-stripes: linear-gradient(transparent 0); } /* 页面主体背景样式 */ #skrollr-body { background-image: url("https://imgurl.diadi.cn/imgs/2025/07/7c7cef1bf97ff72d.png"); background-repeat: repeat-x; background-size: inherit; width: 100%; height: 7.5rem; } /* 主容器样式删除 */ #container { background-image: radial-gradient(circle, rgb(var(--pale-gray-monochrome), 0.40) 0%, transparent 0); /* 透明点阵 */ background-size: 0.25em 0.25em; /* 点阵大小 */ background-repeat: repeat; /* 重复平铺 */ background-attachment: fixed; /* 固定背景 */ } /* 侧边栏图片样式 */ #side-bar .side-block div a img { filter: invert(1) brightness(0.8); /* 图片灰度化 */ } /* 页面底部按钮样式 */ 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; /* 保持无边框 */ } /* 顶部区域设置 */ #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 8rem; /* 自动宽度,高度16rem */ background-position: center; /* 居中显示 */ background-repeat: no-repeat; /* 不重复 */ opacity: 0.6; /* 60%透明度 */ } /* 主标题样式 */ #header h1, #header h1 a { position: absolute; /* 绝对定位 */ top: 1rem; /* 距顶部1rem */ margin: 0; /* 无外边距 */ width: 100%; /* 全宽 */ display: flex; /* 弹性布局 */ justify-content: center; /* 内容居中 */ z-index: 0; /* 底层 */ } /* 副标题样式 */ #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 rgba(0, 0, 0, 0.5); /* 黑色阴影 */ } #page-title { border-color: rgb(var(--light-gray-monochrome)); color: rgb(var(--dark-accent))!important; font-size: 2.5rem; } h1 { font-size: 2rem; color:rgb(var(--dark-accent)); line-height: 1 } h2 { font-size: 1.8rem; color:rgb(var(--dark-accent)); line-height: 1 } h3 { font-size: 1.6rem; color:rgb(var(--dark-accent)); line-height: 1 } h4 { font-size: 1.4rem; color:rgb(var(--dark-accent)); line-height: 1 } h5 { font-size: 1.2rem; color:rgb(var(--dark-accent)); line-height: 1 } h6 { font-size: 1rem; color:rgb(var(--dark-accent)); line-height: 1 } /* 页脚样式 */ #footer{ color: rgb(var(--pale-gray-monochrome)); /* 浅灰色文字 */ } /* 新建页面链接样式 */ a.newpage { background: transparent; /* 透明背景 */ text-decoration: none /* 无下划线 */ } a.newpage { color: rgb(var(--newpage-color)) /* 使用变量颜色 */ } /* 搜索框悬停状态 */ #search-top-box-input:hover, #search-top-box-input:focus { background: rgba(var(--medium-accent), 0.25); /* 半透明背景 */ } /* 顶部导航菜单链接样式 */ #top-bar div.top-bar > ul > li > a, #top-bar div.mobile-top-bar > ul > li > a { color: rgb(var(--black-monochrome)); /* 黑色文字 */ } /* 顶部导航菜单悬停状态 */ #top-bar div.mobile-top-bar>ul>li:hover a, #top-bar div.top-bar>ul>li:hover a { color: rgb(var(--gray-monochrome)); } /* 登录状态文字样式 */ #login-status { color: rgb(var(--pale-gray-monochrome)); /* 白色文字 */ } #login-status a { color: rgb(var(--pale-gray-monochrome)); /* 白色链接 */ } #login-status ul a { color: rgb(var(--pale-gray-monochrome)); /* 浅灰色链接 */ } /* 账户按钮样式 */ #account-topbutton { color: rgb(var(--pale-gray-monochrome)); /* 白色文字 */ } /* 维基内容表格样式 */ table.wiki-content-table th { background-color: rgba(100, 110, 200, 0.5) !important; /* 淡紫色背景 */ color: rgb(var(--black-monochrome)); /* 黑色文字 */ border-color: rgb(var(--black-monochrome)); /* 黑色边框 */ } /* SCP图片块样式 */ .scp-image-block { box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); /* 阴影效果 */ } /* 引用块样式 - 添加20%透明度的紫色背景 */ blockquote, div.blockquote { background-color: rgba(90, 80, 230, 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(90, 80, 230) !important; /* 蓝色边框 */ } /* 风格化引用块 - 修改左侧边框为蓝色 */ .styled-quote { background-color: rgb(var(--pale-gray-monochrome)); /* 浅灰背景 */ border-left: 0.5rem solid rgb(90, 80, 230); /* 左侧蓝色边框 */ 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(20, 10, 50); /* 深蓝色背景 */ border-left: 0.5rem solid rgb(70, 60, 200); /* 稍深的蓝色边框保持层次 */ color: rgb(250, 250, 255); /* 白色文字提高对比度 */ 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 a{ color: rgb(var(--swatch-menubg-medium-color)); /* 链接颜色 */ } /* 暗色内容块 */ .darkblock { background-color:rgb(70,60,200); /* 深灰背景 */ 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(--white-monochrome)); /* 白色文字 */ } /* 亮色内容块 */ .lightblock { background-color: rgb(240, 255, 255); /* 蓝色背景 */ color: rgb(0, 0, 0); /* 黑色文字提高可读性 */ 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 a { color: rgb(var(--swatch-menubg-medium-color)); /* 链接颜色 */ } /* 侧边栏图片反转效果 */ #side-bar .side-block div a img { filter: invert(calc(230/255)); /* 图片颜色反转(程度约90%) */ } /* 新建页面链接(不存在链接)样式 */ a.newpage { background: transparent; /* 透明背景 */ text-decoration: none; /* 无下划线 */ color: rgb(120, 200, 230) !important; /* 红色文字,使用!important确保覆盖其他样式 */ } /* 新建页面链接悬停状态 */ a.newpage:hover { color: rgb(120, 200, 230) !important; /* 保持橙色 */ background-color: rgba(255, 0, 0, 0.1); /* 添加淡黄绿色背景提高可识别性 */ } /* 深色边框块样式 - 深灰背景+亮色边框 */ .dark-borderblock { background-color: rgba(70,60,200, 0.8); /* 深灰色背景 */ 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(90, 80, 230); /* 亮色粗边框突出显示 */ } /* 亮色边框块样式 - 亮色背景+深色边框 */ .light-borderblock { background-color: rgba(120, 200, 255, 0.3); /* 亮色背景 */ color: rgb(0, 0, 0); /* 黑色文字形成对比 */ 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(70,60,200); /* 深色边框 */ } /* 带边框的Logo块样式 */ .border-logoblock { padding: 0.01rem 1rem; box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); /* 阴影效果 */ color: rgb(255, 255, 255); /* 白色文字 */ margin: 0.5rem 0 0.5rem 0.25rem; display: block; /* 块级显示 */ position: relative; /* 相对定位为伪元素定位做准备 */ background-color: rgba(70,60,200,0.8); /* 蓝色背景 */ border: solid 0.3rem rgb(90,80,230); /* 亮色边框 */ } /* Logo块的背景水印效果 - 放大2倍 */ .border-logoblock::after { content: ""; /* 伪元素必需属性 */ float: center; /* 居中浮动 */ border: solid 2px #0000; /* 透明边框 */ background: url(https://imgurl.diadi.cn/imgs/2025/07/699e1752ab03a1e0.png) center/50% no-repeat; /* Logo水印放大2倍 */ opacity: 0.25; /* 半透明效果 */ top: 0; /* 覆盖整个父元素 */ left: 0; bottom: 0; right: 0; position: absolute; /* 绝对定位 */ z-index: 1; /* 置于内容下层 */ } /* 基础Logo块样式(无边框版) */ .logoblock { padding: 0.01rem 1rem; color: rgb(250, 250, 255); box-shadow: 0 0.2rem 0.3rem rgba(0,0,0,.25); margin: 0.5rem 0 0.5rem 0.25rem; display: block; position: relative; background-color: rgba(70,60,200,0.8); /* 深灰背景 */ } /* 基础Logo块的水印效果 */ .logoblock::after { content: ""; float: center; border: solid 2px #0000; background: url(https://imgurl.diadi.cn/imgs/2025/07/699e1752ab03a1e0.png) center/50% no-repeat; opacity: 0.25; top: 0; left: 0; bottom: 0; right: 0; position: absolute; z-index: 1; } /* 标题块样式 - 用于章节标题 */ .titleblock { background-color: rgba(70,60,200,0.8); /* 深灰背景 */ color: rgb(255,255,255); /* 白色文字 */ 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(90,80,230) 2px; /* 亮色细边框 */ } /* 标题框样式 - 配合titleblock使用 */ .titlebox { color: rgb(0,0,0); /* 深灰文字 */ position: relative; /* 相对定位 */ top: -1.6rem; /* 上移与titleblock重叠 */ background-color: rgba(120,200,255,0.8); /* 亮色背景 */ padding: 0.25rem 1rem; /* 内边距 */ line-height: 0.1rem; /* 紧凑的行高 */ } /* 存在链接的悬停效果 */ a:not(.newpage):hover { background-color: rgba(120, 200, 230, 0.1) !important; /* 10%透明度的青蓝色背景 */ transition: background-color 0.2s ease; /* 添加平滑过渡效果 */ } /* 确保侧边栏链接也有相同效果 */ #side-bar a:not(.newpage):hover { background-color: rgba(120, 200, 230, 0.1) !important; } /* 顶部菜单链接悬停效果 */ #top-bar a:hover, #top-bar div.mobile-top-bar a:hover { background-color: rgba(120, 200, 230, 0.1) !important; } /* 顶栏链接默认状态(未悬停) */ #top-bar div.top-bar > ul > li > a, #top-bar div.mobile-top-bar > ul > li > a { color: rgb(90, 80, 230) !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; /* 悬停时变为浅灰色 */ background-color: rgba(90, 80, 230, 0.1) !important; /* 保持青蓝色背景悬停效果 */ } /* 分页顶部(tabview)样式 - 修改选中分页为蓝色 */ .yui-navset .yui-nav .selected { background-color: rgb(250, 250, 255) !important; /* 选中分页蓝色背景 */ border-color: rgb(90, 80, 230) !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(90, 80, 230, 0.1) !important; /* 淡蓝色背景 */ border-color: rgb(90, 80, 230) !important; /* 蓝色边框 */ } /* 未选中分页悬停效果 */ .yui-navset .yui-nav a:hover { background-color: rgba(90, 80, 230, 0.2) !important; /* 淡蓝色悬停背景 */ } /* 安全/危险等级容器样式 */ .sd-container { --sd-text:var(--white-monochrome); /* 文字颜色 */ --sd-bullets:var(--dark-accent); }
位置:尚未明确
安全性:安全
物品编号:M6C-1
位置:尚未明确
文件属性:Crest
描述:
Object M6C-1,更常见的称呼为“制冷水”,外观呈瓶装水,瓶身材质为普通的透明塑料,其中液体呈红褐色,没有特殊的气味,口感与前厅中的果茶或豆汤有些许相似。该物品的液体部分似乎会自行制冷,温度总是趋近4℃左右1,即使被加热后温度也会自动降低,具体原因尚未探明。除此之外,该物品暂时没有其他被发现的特殊性质。
Object M6C-1于未知层级被拍摄到的一张清晰图片。此后该物品已被移交至锚点公会。
该物品首次发现于2024年4月2日,由锚点公会高层会员Charlie于Level M6C-5拍摄并上传锚点工会高层报告。目前尚不能明确制冷水的刷新规律及规模,但就目前的发现记录来看,该物品似乎只会刷新在生存难度不大于1的安全层级角落处,且极少出现。
目前,锚点公会已开始赏金回收后室各地发现的制冷水,并作为其销售品之一售卖。锚点工会技术研究分会正在进一步解明该物品的性质,以帮助流浪者更好、更安全、更有效的使用该物品。
用途:
鉴于该物品拥有良好的制冷控温效果,该物品被推荐作为便携的制冷器具,也可以在炎热环境下适量饮用达到有效的解暑降温的效果2。但需要注意的是,该物品的温度无法长时间维持在0摄氏度以下,同时大量饮用可能导致失温3,因此不建议将其作为主要饮品过量摄入。
相关记录:
来源:锚点工会内部高层报告
创建时间:4/2/2024
创建人:Charlie
分类:工作报告 / Bolt
状态:已授权
我似乎发现了一个新玩意?
事实上是这样的,我在Level M6C-5这边发现了一瓶浅红颜色的水(虽然这么描述不太恰当,但我词穷了),我把它和数据库里已有的东西比对之后没有找到有关这种东西的记录,所有我怀疑这是一个新物品或者什么。
它摸起来很凉,我觉得对于我这种怕热的人来说这是个好东西。它的图片我待会发过去。
另外添一句,我已经用手拿着它超过了10分钟了,但它似乎更凉了(?)。
回复:基地收到了你的报告,我们确实没找到这种物品的相关信息,如果可以的话,请你返回基地,我们需要了解一下这个东西。
——MF64
后记:此后我们召回了Charlie,感谢Charlie的贡献,我们发现了一个新物品。我们将这个新物品命名为“制冷水”4,并编号为Object M6C-1。
——MF64
来源:锚点工会内部高层报告
创建时间:6/23/2024
创建人:H3. Wheat
分类:工作报告 / Bolt
状态:已授权
关于制冷水的研究报告
据我们现在的研究结果,制冷水呈弱酸性,无毒,其中没有微生物等或杂质,因此水质很干净,饮用后72小时内除有体温可能小幅降低外无副作用。基本可以确定其对人体无害。
另外,已确定该物品制冷的部分是水,不是瓶子,尽管这听起来很反物理。对啊,这么一瓶正常的水,为啥会制冷呢?我们得知了这种水的制冷表现,但原因还是一团谜。我们的数据显示,制冷水会保持着0至5℃左右的温度,其制冷效果可以一直有效维持,直到被加热到约120℃以上才会失去制冷效果5。也就是说,如果人体摄入了这种水,那么它依然会继续制冷并从人体带走额外的能量,所以大量饮用可能会很危险。很奇怪的是,人喝了这种水好像不会因为肠胃里的持续低温而难受,但是这不代表完全没有风险。我们目前标定的安全饮用量为200mL,这是个非常保守的保守值,实际上安全量应该比这个高,但为了保证安全,我就先这么写。
我们会继续开展有关该物品的研究。
回复:感谢H3. Wheat和他的团队。我们会如实公布你们的研究结果。
——Molotow62
后记:这篇报告内容成为了该物品得到销售许可的重要基础之一,尽管这时售价高得离谱。但该此研究及其相关的论文确实证实了该物品的主要特性、稳定性及潜在的安全隐患。
——MF64
来源:锚点工会内部高层报告
创建时间:8/16/2024
创建人:H3. Wheat
分类:工作报告 / Bolt
状态:已授权
关于制冷水的研究报告
按我们更新的研究结果来看,我们对制冷水的性质解明又近了一步。我们更新了一些信息,如该物品代谢后会产生无害的弱碱性物质,因此属于碱性食品;在静置超过40天后可能会出现微量的红褐色沉淀,该沉淀可放心食用,但口感不佳,且浓度太高时并不具有同样优秀的制冷效果;该物品的常温范围更新为-2至10℃,安全饮用量更新为500mL(说实话,我们不会再改了,这已经很多了)。
更详细的报告我们将作为另一份B级文件发过去6。我们这边有个建议,把这玩意当咱公会的独占销售品,或者咱先开始大批售卖,应该能赚不少帮到很多人,至少咱现在对这种东西的了解已经够深了,而且库存也不算稀缺,应该可以卖。
回复:感谢H3. Wheat和他的团队。对外公布信息已更新。关于售卖的问题,我们将保留你的想法,下一次公开会议会讨论这件事。
——MF64
后记:销售问题已于2天后的会议上讨论,讨论结果如下:
- 支持加大售卖规模的人占多数;
- 大部分公会店铺同意将其列入货架;
- 决定赏金回收更多的制冷水;
- 立新项目,以研究该物品的人为制造方法。
会议次日,锚点公会的第一批以现价销售的制冷水于基地销往外界。
——Plum
来源:锚点工会内部素材区采访专栏
创建时间:1/17/2025
创建人:Molotow62
分类:采访记录 / Bolt
状态:取消授权
[已编辑]
emm……最后一条记录被删了 (哭),但是我想办法把数据恢复了。
采访人:Molotow62
受访者:H3. Wheat / CD Terry
状态:取消授权已恢复
【记录开始】
Molotow62:欸,好嘞,开始录了。
H3.Wheat:那么,欢迎Molotow62来我们这采访哈。
(MF64:说重点。)
CD Terry:诶牢会长你别说话。
Molotow62:那好,感谢二位接受采访,如果没什么问题的话,我就开始了。
H3.Wheat:请开始你的表演。
Molotow62:那我的第一个问题是:目前正在研究的制冷水,它安全吗?就目前的结果来讲。
H3.Wheat:就目前的结果来讲是安全的,因为毕竟这么长时间了,我们谁都还没碰到过意外发生,所以应该没有大问题。
CD Terry:是的。
H3.Wheat:就拿这瓶来说吧,(指着桌子上的一瓶) 你现在喝,待会肯定一点事都没有。
CD Terry:但你肯定会觉得冷。
Molotow62:好好好。那请问你们对这个物品的实验现状满意吗?
CD Terry:不满意。
Molotow62:具体在哪方面?
CD Terry:不够逆天。
(MF64:咳咳。)
CD Terry:抱歉,我是傻*。
H3.Wheat:实际上我是比较满意的,安全无毒,还有制冷的效果,只要排除了副作用影响的可能,这就是一个完美的东西。
CD Terry:或许当个冰袋会好一点?
Molotow62:请问你们认为制冷水在推广后会被主要应用于那些环境下?
CD Terry:沙漠,要不然你会被晒成〇〇。
H3.Wheat:其实也只有在沙漠那种干热的环境下好用了,你要是去雨林或者什么又湿又热的地方,瓶子早就结露水然后把你的衣服打湿了。
Molotow62:那你们目前有在进行实际应用的相关实验吗?
H3.Wheat:有的,兄弟,有的。
Molotow62:你们认为一般它被用在哪里?
CD Terry:早饭,我每天冲冰咖啡的时候要兑一点。
(一段时间的沉默)
Molotow62:……效果如何。
CD Terry:不咋样。没有杏仁水兑出来的好喝。
Molotow62:行吧,那请问销售部门关于向外界销售的提议,你们有什么想法吗?
H3.Wheat:卖就卖呗,反正不危险。
CD Terry:然后你就又想着怎么高价买更多钱了。
H3.Wheat:你妈。诶我水呢?
Molotow62:这儿呢,我喝了。
H3.Wheat:诶你真喝啊。
【记录结束】
取消授权原因:诶不是,这都啥啊,删了。
——MF64
!!此页面不存在!!
创建页面
待创建页面名
Object M6C-1
点击这里创建页面!
新成员?
常用工具
组件版式类
代码教程类
格式资源类
作者:Mimura Foxium
屏幕之外,文中图片由作者在前厅拍摄。
Object M6C-1 | Object M6C-2 »

