普通的多孔红砖
:root {
    --timeScale: 1;
    --timeDelay: 0s;
}
 
/* Converting middle divider from box-shadow to ::before pseudo-element */
.anom-bar > .bottom-box { box-shadow: none!important; }
.anom-bar > .bottom-box::before {
    position: absolute;
    content: " ";
    width: 100%;
    height: 0.5rem;
    background-color: rgb(var(--black-monochrome, 12, 12, 12));
    transform: translateY(-0.74rem);
}
 
/* DIVIDER */
.anom-bar > .bottom-box::before {
    animation-name: divider;
    animation-duration: calc(0.74s * var(--timeScale));
    animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.32,.38,.39,.94);
    animation-fill-mode: backwards;
}
 
/* CLASSIFIED LEVEL BARS */
div.top-center-box  > * {
    animation-name: bar;
    animation-duration: calc(0.45s * var(--timeScale));
    animation-iteration-count: 1;
    animation-timing-function: ease-out;
    animation-fill-mode: backwards;
}
div.top-center-box > :nth-child(1) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(2) { animation-delay: calc(0.32s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(3) { animation-delay: calc(0.45s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(4) { animation-delay: calc(0.61s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(5) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); }
div.top-center-box > :nth-child(6) { animation-delay: calc(0.95s * var(--timeScale) + var(--timeDelay)); }
 
/* TOP TEXT */
div.top-left-box, div.top-right-box {
    clip-path: polygon( 0% -50%, 150% -50%, 150% 100%, 0% 100%);
}
 
div.top-left-box > *, div.top-right-box > * {
    position: relative;
    animation-name: bottomup;
    animation-duration: calc(0.65s * var(--timeScale));
    animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: ease-out;
    animation-fill-mode: backwards;
}
 
/* CONTAINMENT, DISRUPTION, RISK CLASSES */
div.text-part > * {
    clip-path: polygon( 0% 0%, 100% 0%, 100% 100%, 0% 100%);
    animation-name: expand2;
    animation-duration: calc(0.5s * var(--timeScale));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
div.text-part > :nth-child(1) {
    animation-name: expand1;
}
div.text-part > :nth-child(1) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); }
div.text-part > :nth-child(2) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); }
div.text-part > :nth-child(3) { animation-delay: calc(0.86s * var(--timeScale) + var(--timeDelay)); }
 
div.main-class::before, div.main-class::after {
    animation-name: iconslide;
    animation-duration: calc(0.45s * var(--timeScale));
    animation-delay: calc(0.8s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
 /* BOTTOM TEXT */
div.main-class > *,  div.disrupt-class > *, div.risk-class > * {
    animation-name: flowIn;
    animation-duration: calc(0.42s * var(--timeScale));
    animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: ease-out;
    animation-fill-mode: backwards;
}
 
/* DIAMOND */
div.arrows {
    animation-name: arrowspin;
    animation-duration: calc(0.7s * var(--timeScale));
    animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
 
div.quadrants > * {
    animation-name: fade;
    animation-duration: calc(0.3s * var(--timeScale));
    animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
 
div.top-icon, div.right-icon, div.left-icon, div.bottom-icon {
    animation-name: nodegrow;
    animation-duration: calc(0.4s * var(--timeScale));
    animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.12,.41,.27,.99);
    animation-fill-mode: backwards;
}
div.diamond-part {
    clip-path: polygon( -10% 0.37%, 120% 0.37%, 120% 100%, -10% 100%);
    animation-name: diamondBorder;
    animation-duration: calc(0.8s * var(--timeScale));
    animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay));
    animation-iteration-count: 1;
    animation-timing-function: cubic-bezier(.32,.38,.39,.94);
    animation-fill-mode: backwards;
    will-change: box-shadow;
}
 
/* MOBILE QUERY */
@media (max-width: 480px ) {
    .anom-bar > .bottom-box::before {
        display:none;
    }
    .anom-bar > .bottom-box {
        box-shadow: 0 -0.5rem 0 0 rgb(var(--black-monochrome, 12, 12, 12))!important;
    }
    div.top-center-box  > * {
        animation-name: bar-mobile;
        animation-duration: calc(0.9s * var(--timeScale));
    }
    div.top-center-box > :nth-child(1) { animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(2) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(3) { animation-delay: calc(0.3s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(4) { animation-delay: calc(0.4s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(5) { animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); }
    div.top-center-box > :nth-child(6) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); }
 
}
 
/*-------------------------*/
 
@keyframes divider {
    from { max-width: 0%;  }
    to { max-width: 100%; }
}
 
@keyframes bar {
    from { max-width: 0%; }
    to { max-width: 100%; }
}
@keyframes bar-mobile {
    from { max-height: 0%; }
    to { max-height: 100%; }
}
 
@keyframes bottomup {
    from { top: 100px; }
    to { top: 0; }
}
 
@keyframes expand1 {
    from { opacity: 0; clip-path: inset(0 calc(100% - 0.75rem) 0 0);}
    to { opacity: 1; clip-path: inset(0);}
}
@keyframes iconslide {
    from { opacity: 0; transform: translateX(-5rem);}
    to { opacity: 1; transform: translateX(0);}
}
 
@keyframes expand2 {
    from { opacity: 0; max-width: 1%;}
    to { opacity: 1; max-width: 100%;}
}
@keyframes fade {
    from { opacity: 0;}
    to { opacity: 1;}
}
 
@keyframes flowIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
 
@keyframes arrowspin {
    from { clip-path: circle(0%); transform: rotate(135deg); }
    to { clip-path: circle(75%); transform: rotate(0deg); }
}
@keyframes nodegrow {
    from { transform: scale(0);}
    to {  transform: scale(1);}
}
@keyframes diamondBorder {
    from { box-shadow: -0.5rem -20rem 0 0 rgb(var(--black-monochrome, 12, 12, 12)); }
    to { box-shadow: -0.5rem 0 0 0 rgb(var(--black-monochrome, 12, 12, 12)); }
}
73.9%26%
评分: +11+x
评分: +11+x

GOI:奇物室

物体:传单

发现地点与日期:中国███省 长辉市;2019年3月15日

补充评注:基金会特工在长辉国际机场逮捕POI-DE-3725时从其随身行李中发现了这份传单。借助SCP-6970,基金会成功从POI-DE-3725的口中获取了传单内提及的“琉璃沙漠”的确切位置,并将其编为SCP-CN-████,下述异常物品编为SCP-CN-████-1。

可可爱爱猪猪红砖·琉璃沙漠特供版

琉璃沙漠的发现无疑点燃了全世界超常旅行家们日渐冷却的内心。自箭毒娃大沙漠被海水淹没至探险者们确认琉璃沙漠的具体坐标,中间已隔了足足三年零八个月,期间不仅没有人成功发现新的秘境,就连已有的神秘异空间太湖也褪去异常之处化为普通的自然湖泊。如今知晓了传说中埋藏了Erikeshan圣宝的那片沙漠确实存在于世,许多朋友可能已经准备前往长辉市大展一番身手。然而,在你踏上旅途之前,请先想想自己是否做好了充分的准备。

琉璃沙漠的反生命指数为七星,在历史记录当中仅次于被封锁前的黑王之湖,其琉璃色的沙粒不仅是亮丽的风景,同时也是致命的陷阱。你的防护服和护生魔咒能抵抗250℃的昼夜温差吗?给皮肤施加的凝静术能撑到夜间沾上的璃溴自然挥发吗?为了保护自己珍贵的生命,同时也是为了在漫长的煎熬之后让紧绷的心灵得到放松,你需要创造一片休憩之所,而显而易见的是传统的速成营地并不能保障你在这片死地当中的安全。

来看看广受好评的三只小猪系列最新产品!还记得五年前发售的猪猪红砖吗?本次为了适应琉璃沙漠的独特环境,对此前的普通版红砖进行针对性改造,现在由它构筑的建筑已经成为了世上唯一能在琉璃沙漠中屹立不倒的高塔。

尽管外形和功能上与普通砖石有相似之处,猪猪红砖(以及三只小猪系列的全部商品)均使用了特殊的超低密度物质,且在非活跃状态下最多可被压缩至正常体积的1/12000,这意味着你可以不符吹灰之力在手提包里装满需要携带的份额,无需使用其他器具辅助就能提着它在沙漠内自由行动直至找到合适的定居点。

有的朋友可能会担忧自己没有砖石构筑的天赋。不必担心!易上手、无门槛正是初版猪猪红砖最大的卖点。不需要其他材料,不需要任何特殊的接合手法,猪猪红砖内置的独特术式可以帮助初学者轻而易举地完成目标建筑的搭建。

可爱的外观同样是本产品的一大特色(看看产品标题吧)。此次为了搭配琉璃沙漠的独特景观,除了原本的皇后黑、王子红、毒蛇绿等传统配色外,限量版琉璃彩款式也已正式投入生产,不久便能与大家见面。本次的琉璃彩款式不仅外形美观,在琉璃沙漠之中更能实现保护色的效果,使你免受可能存在的外界打扰。如果你需要暂时离开房屋,可以通过一句简单的咒语解除房屋的外观隐匿,此时该产品会恢复至默认无色状态便于使用者在返回时找寻位置。

心动不如行动。如果你有意为自己的寻宝之旅增添一份色彩,奇物室永远向你敞开大门。

注:本商品的保险服务仅在以下情况生效——

  • 商品实际效果与宣传内容存在过大差异
  • 环境变化导致商品无法用于琉璃沙漠
  • 琉璃沙漠消失















































GOI:奇物室

物体:传单

发现地点与日期:德国巴伐利亚州 维尔茨堡市;2020年11月6日

补充评注:尽管批量订购SCP-CN-████-1的尝试以失败告终,基金会最终成功完成了-1实体的复制,并使用其完成了Area-CN-████的建设。多个情报源均证实了SCP-CN-████内确实存在被称作“Erikeshan圣宝”的未知物品(编为SCP-CN-████-2),鉴于其可能对维护SCP-2317现有收容措施提供极大的帮助,目前Area-CN-████驻站人员正在研究如何抢在其他POI之前将SCP-CN-████-2纳入收容。

可可爱爱猪猪红砖·琉璃沙漠特供版

很高兴看到大家如此热情。适逢店庆,原定限量3000份的琉璃彩款式将全面开放订购,价格下调为普通款式的115%。此前第一批预定的琉璃彩大货预计将于次年2月分发至各位手中,我们的蓝色闪电马上就要忙起来了。

另外近期有传言称琉璃沙漠于近期将如黑王之湖一般被彻底封锁禁止进入。根据本店的消息渠道,此类说法略为夸大其词。SCP基金会对琉璃沙漠的介入仅限于探寻圣宝,可以说他们与其他组织的职业探索者并没有本质区别,也只是本店诸位客户的竞争者之一。目前未有迹象显示沙漠内存在像黑王之湖里那样的高危异常,故而暂时不必担心。
















































GOI:奇物室

物体:传单

发现地点与日期:德国巴伐利亚州 维尔茨堡市;2021年9月28日

补充评注:在发现SCP-CN-████的异常性质来源于地下自多个方向输送来的奇术能量后,基金会人员使用复制的SCP-CN-████-1围绕整个SCP-CN-████建造了含奇术绝缘性质的地下墙体,成功拦截了能量输送通道。当前SCP-CN-████的异常性质正在持续消退当中,预计将在两年内无效化。

可可爱爱猪猪红砖·琉璃沙漠特供稻草版

因广大客户反映琉璃沙漠的危险性有所下降,反生命指数已降至五星,本店将对此前发售的豪华版产品进行改进,于下半年推出在当下的琉璃沙漠中更能让探险者享受乐趣的“稻草版”。

稻草版不会像小猪用稻草盖的房子那样一吹就倒,但为了模拟故事中的稻草屋,稻草版的用料将会一定程度上降低强度。由于目前沙漠昼夜温差大幅下降,夜间也不再生成液态璃溴,各类危险因素急剧减少,不再需要对休息中的客户严加保护,稻草版将下调结构强度与密闭程度,降低价格的同时也为客户挑战自我留出了空间。

除此以外,稻草版还配置了用于吸引野生动物的特殊香料。当前由于气温下降,琉璃沙漠内出现了多种能够适应当地环境的新生物种,如赤瞳绿皮蜥、复虦、黑标仙人掌等等。这些生物不会侵入室内,但在建筑附近低吼着伺机而动的它们足以为处于安全空间内的客户带来如临大敌的紧张感。

稻草版还有一些其他的独门特色等待揭晓。所有此前购买豪华版产品的客户均可于门店内参加以旧换新活动领取限量稻草版礼包。欲购从速,先到先得。
















































GOI:奇物室

物体:传单

发现地点与日期:德国巴伐利亚州 维尔茨堡市;2022年12月31日

补充评注:SCP-CN-████无效化。基金会派出大量人力进行搜索并成功回收了疑似SCP-CN-████-2的多个金质器具与卷轴。卷轴中记载了几种常见的礼仪性奇术,当前认为其不具备战略价值。

普通的多孔红砖

鉴于目前琉璃沙漠的地脉完全枯竭,如太湖一般彻底退化,本店履行此前的承诺,对购买相关保险的客户进行赔偿。未购买保险服务的客户也可与门店内以尚未使用的产品换取等价值的多孔红砖。

特别感谢SCP基金会在本店回收相关产品的过程中提供的帮助。
















































GOI:不明

物体:录音磁带

发现地点与日期:中国██省 琉璃沙漠;2023年1月1日

补充评注:发现于Area-CN-████主管办公室,来源未知。

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