: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 }

63
当前评分人数
百家测评:
the Jotaro:点击此处扣1上坟 留言。
Persimmon2457:留下一个企鹅爪印。🐧
Agonark:在jo桑这里留名!能有一个一起看scp的朋友真的很好啊~
Dr Roger_F_XL:Ko no xielan da!
✨
the Jotaro的库✨
监控记录:观谬维基平台群组备份 06/15/2021
[+162](+178/-16) 39评论 / 最近评论 6TsebEht 12 May 2025 15:15 最近编辑 Agonark 26 May 2022 00:22
基金会月刊六月报道
[+103](+124/-21) 24评论 / 最近评论 (user deleted) 01 Jul 2025 12:59 最近编辑 the Jotaro 29 Jul 2020 09:27
《普林特初级百科》卷20:值得注意的常见精怪
[+81](+91/-10) 18评论 / 最近评论 nacire 06 Feb 2022 09:47 最近编辑 the Jotaro 23 Sep 2022 17:38
来自基金会六号星舰“利维坦”号数据库 - 核心档案
[+77](+79/-2) 9评论 / 最近评论 scrod 26 Sep 2022 02:55 最近编辑 the Jotaro 13 May 2022 16:17
小绿型出门在外也要记得保护自己
[+63](+64/-1) 11评论 / 最近评论 Azote126 01 Aug 2025 17:19 最近编辑 the Jotaro 01 Aug 2023 13:50
SCPTV此处应有古诗词,五言七言都可以。SCPf.tJotaro正在连接
[+63](+63/-0) 29评论 / 最近评论 (user deleted) 22 Mar 2023 17:21 最近编辑 the Jotaro 30 Jan 2026 18:43
SCP-CN-2651
[+60](+64/-4) 21评论 / 最近评论 DrZeedex 22 Feb 2024 00:01 最近编辑 the Jotaro 01 May 2022 14:43
SCP-CN-1449
[+59](+61/-2) 21评论 / 最近评论 GV_inga 30 Sep 2025 16:09 最近编辑 the Jotaro 01 Oct 2025 16:49
此地高原寂静无人,一片废墟,我只留下安息
[+44](+47/-3) 7评论 / 最近评论 Crimson Cat 03 Feb 2022 02:13 最近编辑 the Jotaro 06 Mar 2022 16:47
SCP-CN-2701
[+42](+44/-2) 13评论 / 最近评论 5M7 11 Oct 2021 08:48 最近编辑 Sharia Vanilla 27 May 2024 15:49
SCP-CN-2702-EX
[+39](+44/-5) 8评论 / 最近评论 Tether 0 15 Sep 2022 03:23 最近编辑 gudagudaorder123 01 Oct 2024 11:37
基金会的勇者冒险
[+37](+41/-4) 7评论 / 最近评论 AC_Bedrock 16 Sep 2021 22:36 最近编辑 the Jotaro 12 Oct 2021 17:41
KTE-0369-Elec-FoCorona
[+35](+35/-0) 11评论 / 最近评论 scrod 25 Jun 2023 12:48 最近编辑 the Jotaro 02 Sep 2022 14:55
SCP-CN-2145
[+34](+39/-5) 9评论 / 最近评论 llemon_tree 05 Sep 2023 02:29 最近编辑 the Jotaro 27 Nov 2021 16:58
星夜依旧
[+28](+31/-3) 1评论 / 最近评论 the Jotaro 24 Jan 2023 13:42 最近编辑 the Jotaro 02 Feb 2023 15:07
卡普兰德服务:事故与控告与不存在处理
[+27](+29/-2) 10评论 / 最近评论 Dr_Polaris 09 Dec 2021 14:51 最近编辑 the Jotaro 08 May 2022 17:43
我不视命
[+23](+27/-4) 7评论 / 最近评论 DiCaprio 03 Dec 2021 17:17 最近编辑 the Jotaro 15 Dec 2021 18:59
光环:无隙心锁 · 其一
[+20](+21/-1) 4评论 / 最近评论 the Jotaro 16 Nov 2025 11:56 最近编辑 the Jotaro 01 Dec 2025 05:02
SCP-CN-2105
[+19](+26/-7) 3评论 / 最近评论 Cloud_Z 04 Nov 2021 10:25 最近编辑 the Jotaro 31 Oct 2021 13:13
沦陷
[+18](+22/-4) 4评论 / 最近评论 Redstarsky 10 Mar 2025 07:45 最近编辑 the Jotaro 19 Sep 2021 16:59
“Two souls,once lost,and now they remember”
[+18](+28/-10) 5评论 / 最近评论 TONK-TaiKong 16 Aug 2021 08:01 最近编辑 the Jotaro 12 Sep 2021 15:48
名
[+17](+18/-1) 2评论 / 最近评论 I am GuAo 18 Feb 2023 16:46 最近编辑 the Jotaro 24 Apr 2021 23:22
后继无人
[+17](+21/-4) 3评论 / 最近评论 the Jotaro 14 Mar 2021 04:57 最近编辑 the Jotaro 23 Oct 2021 10:04
无聊人的故事
[+10](+25/-15) 5评论 / 最近评论 no pictures pls 11 Jun 2025 08:58 最近编辑 the Jotaro 03 May 2022 11:02
杂草
[+5](+5/-0) 5评论 / 最近评论 ninenightnein 14 Sep 2023 12:01 最近编辑 the Jotaro 05 Sep 2023 17:11
项目不存在质量与能量反应,亦无任何强度的Akiva辐射。
我不敢把自己关机,我害怕我成为机器。
20██.04.05,基金会首次观测到了在本宇宙现实中存在的生命能量极聚合态生命体(PoI-2864)。
SCP-CN-2651:You are always my hero
我承诺,在今后不多的能够陪伴家人的日子里,尽一个合格的父母的一切职责。
歌斐木协议必将被执行,也必须被执行。
尽最大努力提升基金会太空作战与防御实力即是最好的收容措施。
不管是为了英雄而英雄的,还是被意外所逼迫着的,他们最后都是英雄。
那里3.4.5层都有一个特别诡异的拐角,就是你楼道进去那个口,是有个拐角的。
《基金会月刊》——由O5议会唯一指定刊报
根据《国际泛人类概念公约》,现实扭曲者和奇术师一样是人类,这是国际共识。
此地一片荒凉,毫无生机。
精灵未必像传说中那样正义,恶魔也未必邪恶。
Darlin' 夢が叶ったの?
KTE-0369-Elec-FoCorona被正式移入银月号空间站进行研究,由托勒密部门下属军情局直接负责。
巨大的先行者护盾世界映照在他们豆大的视网膜上,崇敬有如丑陋的吉拉汉尼人体毛一般冒出体表。
Pending……
怪獣無法惑星 物语
根据上级命令,本站点被指定为东亚远东地区的行动指挥部——针对未来将要进行打击超大型袭击者的任务
未编号:枯骨
希特勒政府与它所交好的墨索里尼政府已经撕毁其曾经签订的合约,并准备进一步背弃他们曾经向国际联盟与基金会代表所做出的维护超常世界稳定与发展的承诺……
✨
the Jotaro的个人资料✨
程自澄/Lefz B3-4/SECR.4/RSC-@S_CN10
高级研究员,任职于Site-CN-10 应用奇术学部,浙江台州人。179cm 76kg / 156cm 47kg。行动代号Lefz取自德语“Lefzen”。
证件照
199█年2月出生于██,祖辈曾是当地异学会分支理事之一,其父为Site-CN-10 ██部员工,同年1月因收容事故殉职,其母为国际统合奇术研究中心注册独立奇术师,现随玛娜慈善基金会活动,行踪不明。
12岁时从当地中学转入基金会家属学校就读,至大学进入ICSUT下某学院就读超自然科学史(非奇术方向)专业,同期受Alexylva大学函授奇术学教育。毕业后依助学合约分配至Site-CN-10工作,其小组负责研发奇术混合设施与个人武力装备,同时兼任本站点战术反应与安保部门的技术支持工程师和连队指导员。
掌握多种家传奇术术式,作为战斗奇术师而言完全够格,因而经常加入特遣队或武装部门行动来亲身测试研制装备的实战效果,对于常规武力也有不错水平。但是,其部分家传术式仅能由其本人或血亲施法,目前原理不明。
出于不明原因,其对自身施加了一次永久性的,不可消除的奇术仪式,使其自身获得了能够自由切换生理性别与对应生理状态的能力,可以自由在男-女性别之间切换肉身。在该术式作用下,男、女性别的肉身通常是固定形象但同步受伤害状态的,特别的,其还可以在某一性别下显示或修改特定的身体部位使之表达出另一性别的肉身形态。目前尚不明确该术式的初始作用时间,由于早期档案记录不详,故初始性别不详,本人亦不愿透露。
*
- 不恋床,喜欢占用陈洛在临时休息室的席梦思
- 也许是Zenerry好闺蜜,不知道她认不认
- 偶尔出现在归属Site-CN-999的档案里,和该站点某些主管有神秘联系
- 性取向不明,说不定是自恋
- ……
“欸欸,她和你代号很像喔,你们是不是有什么特殊关系啊?她莫非是你安插在观谬的下线,这个网名也‘都是主人的任务’?要不我们别监视了直接请咱们喝喜酒吧。’’”
“滚啊。”
“别急着反驳嘛,要不这样,我拿你照片开个小号去加她好友,把你们约出来面基,最后保送十站还不算办公室恋情。我他妈就是天才。”
“🖕🏻”
承澄,女,24岁,未婚,是一般路过摄影师通りすがりの仮面ライダー、自由撰稿人。前半生身心健康地渡过,毫无意外的成为社畜,在外人眼中最大的特点便是好逸恶劳、随心所欲。
黄昏下的自拍
或许是因为童年过于平淡,轻微近视的眼镜后藏着不为人知的渴求刺激且连本人都不曾察觉的变态心理。人生爱好之一便是在黑暗的环境下阅读各类惊悚恐怖故事和民间传说,从中学开始就以“LEFS”为ID混迹于不知名小众邪典网络垃圾论坛 “观谬维基”。大学毕业后,追寻着名为“香城”的都市传说定居于香港周边。
得益于常年在互联网阴暗的角落阴暗地挖掘,她在观谬维基论坛中拥有一个研究来自日本的“バックルームWiki”的分区,并逐渐对这个看似是角色扮演跑团网站上所记载的一系列关于“坠入某个非现实空间群”的故事深信不疑,但与该网站的管理员或用户进行联系的尝试无一成功。
她相信这种事一定在全球范围内都有发生,与观谬维基的小伙伴们在业余时间进行寻找“坠入后室者”的活动,并搜集了许多自认为的证据。不过,对于观谬维基上广为流传的“某种存在于世的暗面超自然超政府组织”的传言,承澄始终嗤之以鼻。
*
👾
the Jotaro的创意工坊👾
- Discord:lefs_kamone
- QQ:3565473940
- Steam:1223598673(请主动说明身份)








