@supports(display: grid) { :root { --sidebar-width-on-desktop: calc((var(--base-font-size) * (14 / 15)) * 19); --body-width-on-desktop: 45.75rem; } @media only screen and (min-width: 769px) { #side-bar .close-menu { display: block; position: fixed; top: 0.5rem; left: 0.5rem; width: 3rem; height: 3rem; background: unset; opacity: 1; pointer-events: all; z-index: -1; } #side-bar .close-menu img { color: transparent; } #side-bar .close-menu::before, #side-bar .close-menu::after { content: ""; box-sizing: border-box; position: fixed; display: block; top: 0.5rem; left: 0.5rem; width: 3rem; height: 3rem; padding: 0; margin: 0; text-align: center; pointer-events: all; cursor: pointer; transition: opacity var(--sidebar-transition-timing); } #side-bar .close-menu::before { --mask:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' id='Hamburger' x='0' y='0' baseProfile='tiny' overflow='visible' version='1.2' viewBox='0 0 32 32' xml:space='preserve'%3E%3Cpath d='M4 10h24c1.1 0 2-.9 2-2s-.9-2-2-2H4c-1.1 0-2 .9-2 2s.9 2 2 2zm24 4H4c-1.1 0-2 .9-2 2s.9 2 2 2h24c1.1 0 2-.9 2-2s-.9-2-2-2zm0 8H4c-1.1 0-2 .9-2 2s.9 2 2 2h24c1.1 0 2-.9 2-2s-.9-2-2-2z'/%3E%3C/svg%3E"); z-index: -1; background-color: var(--toggle-icon-color, rgb(var(--sidebar-links-text))) !important; -webkit-mask: var(--mask); mask: var(--mask); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: 50% 50%; mask-position: 50% 50%; -webkit-mask-size: 60%; mask-size: 60%; } #side-bar .close-menu::after { z-index: -2; background-color: var(--toggle-button-bg, rgb(var(--sidebar-bg-color))) !important; border-radius: var(--toggle-roundness, 50%); border: var(--toggle-border-color, rgb(var(--sidebar-links-text))) var(--toggle-border-width, 0.25rem) solid; } #side-bar:focus-within .close-menu, #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu { pointer-events: none; } #side-bar:focus-within .close-menu::before, #side-bar:focus-within .close-menu::after { opacity: 0; pointer-events: none; } #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu::before, #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu::after { opacity: 0; pointer-events: none; } #side-bar { display: block; position: fixed; top: 0; left: calc(var(--sidebar-width-on-desktop)*-1); z-index: 10; transition: left 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; height: 100%; overflow-y: auto; overflow-x: hidden; margin-top: 0; } #side-bar:focus-within { left: 0; } #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover { left: 0; } #side-bar .side-block { margin-top: 1rem; background-color: rgb(0, 0, 0, 0); border-radius: 0; border-left-width: 0px; border-right-width: 0px; } #main-content::before { content: ""; display: block; position: fixed; top: 0; right: 0; z-index: -1; opacity: 0; transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, width 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; margin-left: var(--sidebar-width-on-desktop); background: rgba(var(--swatch-menubg-black-color), .3) 1px 1px repeat; padding-right: 0; width: 100%; height: 100vh; pointer-events: none; z-index: 99; } #side-bar:focus-within ~ #main-content::before { width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover ~ #main-content::before { width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } @supports (-moz-appearance:none) and (background-attachment:local) and (not (-moz-osx-font-smoothing:auto)) { #side-bar { padding: inherit; } } #content-wrap { display: flex; flex-direction: row; width: calc(100vw - (100vw - 100%)); min-height: calc(100vh - calc(var(--final-header-height-on-desktop, 10.125rem))); flex-grow: 2; height: auto; position: relative; margin: 0 auto; max-width: inherit; } #main-content { width: 100%; position: initial; max-height: 100%; padding: 2rem 1rem; max-width: var(--body-width-on-desktop, 45.75rem); margin: 0 auto; } #page-content { max-width: min(90vw, var(--body-width-on-desktop, 45.75rem)); } @supports (-webkit-hyphens:none) { #side-bar { transition: left 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, padding-right 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, background-color 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; padding-right: 0; background-color: rgb(0, 0, 0, 0); pointer-events: all; overflow-x: visible; overflow-y: visible; z-index: 999; } #side-bar::-webkit-scrollbar { opacity: 0; -webkit-transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; } #side-bar .close-menu::before { z-index: 999; } #side-bar .close-menu::after { z-index: 998; } #side-bar:hover .close-menu::before, #side-bar:hover .close-menu::after { opacity: 0; } #side-bar:hover { left: 0; background-color: rgba(var(--swatch-menubg-color), 1); padding-right: 0; } #side-bar:hover::-webkit-scrollbar { opacity: 1; } #side-bar:hover~#main-content::before { width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } } } }
:root { /* header measurements */ --header-height-on-desktop: 10rem; --header-height-on-mobile: 10rem; --header-h1-font-size: clamp(2rem, 5vw, 2.8125rem); --header-h2-font-size: clamp(0.875rem, 3vw, 0.9375rem); --logo-image: url("https://nu-scptheme.github.io/Black-Highlighter/img/logo.svg"); } #header { --search-textbox-text-color: var(--swatch-secondary-color); background: none; } #header::before { content: " "; position: absolute; width: 100%; height: 100%; left: 0; top: 0.75rem; background-image: var(--logo-image); background-repeat: no-repeat; background-position: center 0; background-size: auto calc(var(--header-height-on-desktop) - 1.5rem); opacity: 0.8; pointer-events: none; } #header h1, #header h2 { margin: 0; padding: 0; width: 100%; height: var(--header-height-on-desktop); display: flex; align-items: center; justify-content: center; display: flex; align-items: center; justify-content: center; } #header h1 a, #header h1 a::before, #header h2 span, #header h2 span::before { margin: 0; padding: 0; z-index: 0; display: block; text-align: center; } #header h1 { z-index: 1; } #header h1 a::before, #header h1 a::after { content: var(--header-title); } #header h1 a::before { color: rgb(var(--swatch-text-tertiary-color)); z-index: -1; -webkit-text-stroke: 0.325rem rgb(var(--swatch-text-dark)); } #header h1 a::after { color: rgb(var(--swatch-headerh1-color)); z-index: 1; } #header h2 { z-index: 0; text-transform: uppercase; pointer-events: none; } #header h2 span { margin-top: calc(var(--header-height-on-mobile)/2 + var(--header-h1-font-size)/2 - 2em); } #header h2 span::before, #header h2 span::after { --wght: 600; content: var(--header-subtitle); position: absolute; left: 50%; transform: translateY(-50%) translateX(-50%); width: 100%; text-align: center; } #header h2 span::before { -webkit-text-stroke: 0.25rem rgb(var(--swatch-text-dark)); } #header h2 span::after { color: rgb(var(--swatch-headerh2-color)); z-index: 1; } #search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="text"] { color: rgba(0, 0, 0, 0); } @media (min-width: 36rem) { #login-status { flex-grow: 1; left: 3%; right: initial; } #login-status::before { --mask-image: none; background-color: transparent; } #login-status:not(:focus-within) { color: rgb(var(--login-line-divider-color)); -webkit-user-select: initial; -moz-user-select: initial; -ms-user-select: initial; user-select: initial; } #login-status #account-topbutton, #login-status:not(:focus-within) #account-topbutton { --clip-path: polygon( 0 0, 100% 0, 100% 100%, 0 100% ); background-color: rgba(var(--login-arrow-color), 0); } #login-status #account-topbutton::before{ --clip-path: polygon( 30% 35%, 70% 35%, 50% 60%, 50% 60% ); --mask-image: initial; content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(var(--login-arrow-color), 1); -webkit-clip-path: var(--clip-path); clip-path: var(--clip-path); } #login-status #account-topbutton::before, #login-status:not(:focus-within) #account-topbutton::before, #login-status:not(:focus-within) #account-topbutton:hover::before { --clip-path: polygon( 30% 35%, 70% 35%, 50% 60%, 50% 60% ); --mask-image: initial; } #login-status:not(:focus-within) #account-topbutton::after { display: none; } #login-status:not(:focus-within) *:not(#account-topbutton):not([href*="account/messages"]) { --clip-path: polygon( 0 0, 100% 0, 100% 100%, 0 100% ); pointer-events: all; -webkit-clip-path: var(--clip-path); clip-path: var(--clip-path); } #login-status:not(:focus-within) *:not(#account-topbutton):not(#account-options):not([href*="account/messages"]) { opacity: 1; } #login-status #my-account { --wght: 300; } #account-options { background: var(--gradient-header); } #search-top-box { top: 1.5em; right: 3%; background: rgba(var(--search-focus-textbox-bg-color), 0.4); } #search-top-box:focus-within ~ #login-status { opacity: 1; } #search-top-box::after { transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1); transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1); transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1); } #search-top-box:not(:focus-within)::after { --clip-path: polygon( 0 0, 100% 0, 100% 100%, 0% 100% ); background-color: rgba(var(--search-icon-bg-color, --dark-accent), 1); -webkit-clip-path: var(--clip-path); clip-path: var(--clip-path); } #search-top-box:not(:focus-within):hover::after { --clip-path: polygon( 0 0, 100% 0, 100% 100%, 0 100% ); background-color: rgb(var(--search-icon-hover-bg-color)); } #search-top-box form[id="search-top-box-form"]:not(:focus-within) { max-width: var(--search-width); } #search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="text"] { max-width: var(--search-width); padding: 0 var(--search-height) 0 1em; outline-width: 0; background-color: rgb(var(--search-focus-textbox-bg-color), 0.35); color: rgba(var(--search-textbox-text-color), 0.4); cursor: pointer; } #search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="submit"], #search-top-box form[id="search-top-box-form"]:focus-within input[type="submit"] { pointer-events: all; border: none; } } #page-title::after, .meta-title::after, #page-title::before, .meta-title::before { content: ""; flex-grow: 1; height: 0.0625rem; background: rgb(var(--swatch-primary)); } #page-title::before, .meta-title::before { margin: auto 1.25rem auto auto; }

你最好能看到这个,CROM!!!
希望大家喜欢!

简介
你好,欢迎来到
Scip小队播. . .客!
在这里,我们在意的不是你写了什么,而是你爱着什么。
在SSP,SCP作者和艺术创作者,tstaffor和Luxaiko与整个SCP社群中的朋友们一起聊天。特别之处?我们都不讨论自己的作品。
嘉宾们将来讨论他们最爱的5个scip、他们读过的第一篇作品以及他们如今回看时对它们的看法,甚至还有无关SCP的爱好和兴趣。
选集
一个完全石质的星球
新传奇开始书写!本周,tstaffor和Luxaiko讨论他们最爱的SCP以及他们是如何接触到网站的。
tstaffor的作品:https://scp-wiki.wikidot.com/tstaffor-s-author-page
Luxaiko的作品:http://scp-wiki-cn.wikidot.com/aiko-artpage
和推特:https://mobile.twitter.com/luxaiko
开头及结尾的音乐是《你同我》,词作者djkaktus,表演者Oboebandgeek99
SCP-5031 - 又一头杀人怪兽而已 by PeppersGhost
(http://scp-wiki-cn.wikidot.com/scp-5031)
SCP-4479 - D-11424与万门之境 by Captain Kirby
(http://scp-wiki-cn.wikidot.com/scp-4479)
SCP-2030 - 欢 笑 整人 秀 by PeppersGhost
(http://scp-wiki-cn.wikidot.com/scp-2030)
SCP-5553 - 病态社交媒体 by CityToast
(http://scp-wiki-cn.wikidot.com/scp-5553)
SCP-5178 - Eat the Sun with Seth Uhar by DecoyMesa
(https://scp-wiki.wikidot.com/scp-5178)
禁忌之地 by PeppersGhost
(http://scp-wiki-cn.wikidot.com/taboo)
SCP-2521 - ●●|●●●●●|●●|● by LurkD
(http://scp-wiki-cn.wikidot.com/scp-2521)
格式错乱中心页 by Henzoid,tstaffor,与TopDownUnder
(http://scp-wiki-cn.wikidot.com/format-screw-hub)
SCP-5000 - 为什么? by Tanhony
(http://scp-wiki-cn.wikidot.com/scp-5000)
SCP-4634 - 故障中 by MaliceAforethought
(http://scp-wiki-cn.wikidot.com/scp-4634)
代号:WJS - 常态 by WrongJohnSilver
(http://scp-wiki-cn.wikidot.com/wjs-proposal)
SCP-4228 - 变色Karma by T Rutherford
(http://scp-wiki-cn.wikidot.com/scp-4228)
SCP-8900-EX - 天,蓝色的天 by tunedtoadeadchannel
(http://scp-wiki-cn.wikidot.com/scp-8900-ex)
SCP-5923 - 吾乡 by Grigori Karpin
(http://scp-wiki-cn.wikidot.com/scp-5923)
SCP-3477 - 请真正的哈罗德·霍尔特起立? by Stormbreath
(http://scp-wiki-cn.wikidot.com/scp-3477)
BREAKNECK by Rounderhouse
(https://scp-wiki.wikidot.com/breakneck)
SCP-6000 - 毒蛇,驼鹿,与被放逐者之图书馆 by Rounderhouse
(http://scp-wiki-cn.wikidot.com/scp-6000)
你喜欢Huey Lewis and the News吗? by Rounderhouse
(http://scp-wiki-cn.wikidot.com/do-you-like-huey-lewis-and-the-news)
SCP-184 - 建筑师 by DrGears
(http://scp-wiki-cn.wikidot.com/scp-184)
代号:████ ███ - 真相 by Jack Ike
(http://scp-wiki-cn.wikidot.com/code-name-the-truth)
SCP-2480 - 未完的仪式 by Metaphysician
(http://scp-wiki-cn.wikidot.com/scp-2480)
SCP-1171 - 人类滚粗 by DrEverettMann
(http://scp-wiki-cn.wikidot.com/scp-1171)
SCP-049 - 疫医 by djkaktus
(http://scp-wiki-cn.wikidot.com/scp-049)
正确类型的泥巴
本周,tstaffor和Luxaiko请到了CreepyOtter来谈论他最爱的Scip们!tstaffor发现对她来说大多数skips都有点太可怕(但不至于过分可怕)了,而Luxaiko和CreepyOtter则回忆起了Creepypasta的美好旧日。
在此查看CreepOtter的超棒SCP阅读频道:https://www.youtube.com/channel/UCBK-Wruwzce6AU2UaX17f_g
tstaffor的作品:https://scp-wiki.wikidot.com/tstaffor-s-author-page
Luxaiko的作品:http://scp-wiki-cn.wikidot.com/aiko-artpage
和推特:https://mobile.twitter.com/luxaiko
开头及结尾的音乐是《你同我》,词作者djkaktus,表演者Oboebandgeek99
SCP-6655 - 你能想象到最坏的事情 by Limeyy
(http://scp-wiki-cn.wikidot.com/scp-6655)
SCP-6430 - Verbosity Velocity by S D Locke
(https://scp-wiki.wikidot.com/scp-6430)
SCP-5390 - Do You Want A Tamale? by EthanHanson
(https://scp-wiki.wikidot.com/scp-5390)
SCP-6646 - Emergency Action System by kingpogan
(https://scp-wiki.wikidot.com/scp-6646)
SCP-6059 - 你可曾在球坑中蒙受天启? by fabledtiefling
(http://scp-wiki-cn.wikidot.com/scp-6059)
SCP-6033 - 有很多胳膊的朋友 by fabledtiefling
(https://scp-wiki.wikidot.com/scp-6033)
SCP-6988 - Contagious Omniscience by MoreMuffins
(https://scp-wiki.wikidot.com/scp-6988)
SCP-5321 - 剧透 by GrimmCreeper
(http://scp-wiki-cn.wikidot.com/scp-5321)
SCP-511 - 地下室猫 by sandrewswann
(http://scp-wiki-cn.wikidot.com/scp-511)
SCP-6692 - 谐音哏 by JakdragonX and JakalRelated
(http://scp-wiki-cn.wikidot.com/scp-6692)
SCP-5404 - ~~语言学雷区~~ (砰——砰词语) by PeppersGhost
(http://scp-wiki-cn.wikidot.com/scp-5404)
SCP-4792 - 大业 by Yossipossi
(http://scp-wiki-cn.wikidot.com/scp-4792)
未解明文物#6980 - 不常规相机 by Dr Leonerd
(http://scp-wiki-cn.wikidot.com/scp-6980)
SCP-6969 - 性笑化 by Yossipossi
(http://scp-wiki-cn.wikidot.com/scp-6969)
SCP-6969-J - The End of Sex 6.9: You Can (Not) Reproduce by Yossipossi
(https://scp-wiki.wikidot.com/scp-6969-j)
SCP-6231 - 青蛙撞奶 by AvocadoMilk
(http://scp-wiki-cn.wikidot.com/scp-6231)
SCP-6922 - CWPA的Lou特工
(http://scp-wiki-cn.wikidot.com/scp-6922)
SCP-5449 - 蛛蛛小火车 by Sirslash47
(http://scp-wiki-cn.wikidot.com/scp-5449)
SCP-610 - 憎恨之血肉 by NekoChris
(http://scp-wiki-cn.wikidot.com/scp-610)
SCP-049 - 疫医 by djkaktus
(http://scp-wiki-cn.wikidot.com/scp-049)
SCP-1936 - 山谷港 by FlameShirt
(http://scp-wiki-cn.wikidot.com/scp-1936)
SCP-2191 - “吸血鬼工厂” by Metaphysician
(http://scp-wiki-cn.wikidot.com/scp-2191)
SCP-783 - 那里有个歪歪扭扭的人 by S D Locke
(http://scp-wiki-cn.wikidot.com/scp-783)
SCP-096 - “羞涩”的人 by Dr Dan
(http://scp-wiki-cn.wikidot.com/scp-096)
SCP-106 - 恐怖老人 by Dr Gears
(https://scp-wiki-cn.wikidot.com/scp-106)
SCP-4975 - 时辰已到 by Scented_Shadow
(http://scp-wiki-cn.wikidot.com/scp-4975)
tstaffor提到的那位制作生物的youtuber是这位:https://www.youtube.com/c/WillMcDaniel
她同样说了很多的那部伊藤润二的漫画可以在此阅读:https://imgur.com/gallery/Wht7z
tstaffor提到的还有一样东西是Ruler of Everything的MV:https://www.youtube.com/watch?v=I8sUC-dsW8A
CreepyOtter提到了这个侏儒被圣经砸死的视频:https://www.youtube.com/watch?v=gDJ2wzITd3k
最后还有,Luxaiko认为那个生物视频是Kitty City:https://www.youtube.com/watch?v=jX3iLfcMDCw
我不想说洛夫克拉夫特
本周tstaffor和Luxaiko绑架了Gooday,强迫他谈谈他最爱的Scips!
我们的嘉宾Gooday的作品可在此找到:https://scp-wiki.wikidot.com/gooday-s-bad-page
tstaffor的作品:https://scp-wiki.wikidot.com/tstaffor-s-author-page
Luxaiko的作品:http://scp-wiki-cn.wikidot.com/aiko-artpage
和推特:https://mobile.twitter.com/luxaiko
开头及结尾的音乐是《你同我》,词作者djkaktus,表演者Oboebandgeek99
SCP-2264 - 阿拉卡达迷城 by Metaphysician
(http://scp-wiki-cn.wikidot.com/scp-2264)
SCP-701 - 缢王悲歌 by tinwatchman
(http://scp-wiki-cn.wikidot.com/scp-701)
SCP-2480 - 未完的仪式 by Metaphysician
(http://scp-wiki-cn.wikidot.com/scp-2480)
SCP-610 - 憎恨之血肉 by NekoChris
(http://scp-wiki-cn.wikidot.com/scp-610)
如是群鸦讪笑不止 by SunnyClockwork
(http://scp-wiki-cn.wikidot.com/and-so-the-crows-laughed)
晚安,月亮小姐 by Luxaiko
(http://scp-wiki-cn.wikidot.com/goodnight-miss-moon)
亦不愿教导万千星辰不再起舞 by Lordstonefish
(http://scp-wiki-cn.wikidot.com/scp-4012)
SCP-4663 - 3D打印蜘蛛打印打印机打印蜘蛛打印机打印蜘蛛打印打印蜘蛛打印机 by XilasCrowe
(http://scp-wiki-cn.wikidot.com/scp-4663)
故事系列推荐中心
(http://scp-wiki-cn.wikidot.com/curated-tale-series)
星期五展览会 by Randomini
(http://scp-wiki-cn.wikidot.com/the-friday-exhibition)
SCP-4052 - 三明治(消歧义) by DeadlyBread
(http://scp-wiki-cn.wikidot.com/scp-4052)
哇塞,弄死你自己吧 by Randomini
(http://scp-wiki-cn.wikidot.com/wowwee-go-kill-ursefl)
Cool之战2:Ruiz于你墓中而出 by Randomini
(http://scp-wiki-cn.wikidot.com/cool-war-2-hub)
Everything Worth Doing is So Fucking Hard by Darkstuff
(https://scp-wiki.wikidot.com/everything-worth-doing-is-so-fucking-hard)
SCP-111 - 龙蜗牛™ by Adam Henderson
(http://scp-wiki-cn.wikidot.com/scp-111)
SCP-2815 - 生命之树 by Nederbird
(http://scp-wiki-cn.wikidot.com/scp-2815)
‘智能魔契’(SMR82 / H0EX3 / 4DNV9) by DrChandra
(http://scp-wiki-cn.wikidot.com/mcd-smart-hex)
Site-87圣诞节的十二天 by Ihp
(http://scp-wiki-cn.wikidot.com/holy-crap-this-is-a-long-christmas-tale)
SCP-4661 - 罪恶之城 by ROUNDERHOUSE
(http://scp-wiki-cn.wikidot.com/scp-4661)
我想办法进了tstaffor的电脑,救命他们把我困在了
学会多讲笑话?
本周tstaffor和Luxaiko与Grigori Karpin(绝对不是SCP作者和播客主持人)一起讨论他最喜欢的作品。Grigori不小心迷恋上了海洋,Aiko发现她与Karpin之间的共同点多得令人厌烦,而三人都经历了严重的词汇发音困难。
我们的嘉宾Grigori的作品的作品可在此找到:
https://scp-wiki.wikidot.com/grigori-karpin-s-author-page
他与HarryBlank共同主持的播客在此:
http://scp-wiki-cn.wikidot.com/simply-creative-people-hub
查看SSP中心页的其他收听方式!
http://scp-wiki-cn.wikidot.com/the-scip-squad-podcast-hub
tstaffor的作品:https://scp-wiki.wikidot.com/tstaffor-s-author-page
Luxaiko的作品:http://scp-wiki-cn.wikidot.com/aiko-artpage
和推特:https://mobile.twitter.com/luxaiko
可在以下链接购买书籍。
《永无石系列第一部:疯狂精灵》(by Daveyoufool):https://www.amazon.com/Neverstone-Mad-Elf-LitRPG-Adventure-ebook/dp/B0923R4654
《轻如羽毛》(by CadaverCommander):https://www.amazon.com/Featherlight-Transmission-Jake-Schaefer/dp/B08JDTN7TC
开头及结尾的音乐是《你同我》,词作者djkaktus,表演者Oboebandgeek99
Grigori的作者人设由Corgo绘画
SCP-5525 - The US Government Loots Atlantis by greenwolf
(https://scp-wiki.wikidot.com/scp-5525)
SCP-4246 - 恋海癖,或曰最长者之梦 by metaphysician
(http://scp-wiki-cn.wikidot.com/scp-4246)
SCP-2480 - 未完的仪式 by Metaphysician
(http://scp-wiki-cn.wikidot.com/scp-2480)
SCP-049 - 疫医 by djkaktus
(http://scp-wiki-cn.wikidot.com/scp-049)
SCP-001 - 守门者 by DrClef
(http://scp-wiki-cn.wikidot.com/dr-clef-s-proposal)
SCP-001 - 工厂 by DrBright
(http://scp-wiki-cn.wikidot.com/scp-001-o5)
SCP-001 - 一份记录 by Kate McTiriss
(http://scp-wiki-cn.wikidot.com/kate-mctiriss-s-proposal)
SCP-001 - 基金会 by Communism Will Win
(http://scp-wiki-cn.wikidot.com/scantron-s-proposal)
SCP-049(再次) - 疫医 by djkaktus
(http://scp-wiki-cn.wikidot.com/scp-049)
SCP-610 - 憎恨之血肉 by NekoChris
(http://scp-wiki-cn.wikidot.com/scp-610)
SCP-093 - 红海物件 by NekoChris
(http://scp-wiki-cn.wikidot.com/scp-093)
SCP-3896 - We'll Never Stop Eating Big Gordo by CadaverCommander
(https://scp-wiki.wikidot.com/scp-3896)
Burger King by Marcelles Raynes
(https://scp-wiki.wikidot.com/burger-king)
SCP-5866 - 名蛇 by HarryBlank
(http://scp-wiki-cn.wikidot.com/scp-5866)
往深了尿
本周,tstaffor和Luxaiko请到了Captain Kirby来讨论他最喜欢的文章。Captain Kirby爆料称他是来自另一颗星球的外星人,tstaffor和Luxaiko讨论了他们的杀人数目,最后我们意识到人类在给别人命名方面有多糟糕!
嘉宾Captain Kirby的作品可在此找到:https://scp-wiki-cn.wikidot.com/captain-kirby-s-personal-file
tstaffor的作品:https://scp-wiki-cn.wikidot.com/tstaffor-s-author-page
Luxaiko的作品:https://scp-wiki-cn.wikidot.com/aiko-artpage
以及推特:https://mobile.twitter.com/luxaiko
Scip小队播客的推特:https://twitter.com/scipsquadpod
针对播客提问的邮箱:moc.liamg|dopdauqspicS#moc.liamg|dopdauqspicS
在SSP中心页查看其他收听方式!https://scp-wiki-cn.wikidot.com/the-scip-squad-podcast-hub
开头及结尾的音乐是《你同我》,词作者djkaktus,表演者Oboebandgeek99
SCP-2188 - Joaquín Pablo Izquierdo de San Felipe的艺术人生 by Kalinin
https://scp-wiki-cn.wikidot.com/scp-2188
‘眠曲林’ (TR7K2/2UD9X/53GN8) by Veiedhimaedhr
https://scp-wiki-cn.wikidot.com/hypnotraline
SCP-093 - 红海物件 by NekoChris
https://scp-wiki-cn.wikidot.com/scp-093
SCP-3512 - 知道的越多 by psul
https://scp-wiki-cn.wikidot.com/scp-3512
许愿井底的洞 by Tufto
https://scp-wiki-cn.wikidot.com/there-s-a-hole-in-the-bottom-of-the-wishing-well
安布罗斯外西凡尼亚:献给所有该死的吸血鬼
本周,tstaffor和Luxaiko请到LordStonefish来讨论自己最爱的文章。Tstaffor和Luxaiko向PeppersGhost提出正式道歉,与此同时LordStonefish谈论了将自己列入山达基教观察名单的计划。
我们的嘉宾LordStoneFish的作品可在此找到:https://scp-wiki-cn.wikidot.com/lord-stonefish
tstaffor的作品:https://scp-wiki-cn.wikidot.com/tstaffor-s-author-page
Luxaiko的作品:https://scp-wiki-cn.wikidot.com/aiko-artpage and
推特:https://mobile.twitter.com/luxaiko
Scip小队播客的推特:https://twitter.com/scipsquadpod
针对播客提问的邮箱:moc.liamg|dopdauqspicS#moc.liamg|dopdauqspicS
在SSP中心页查看其他收听方式!https://scp-wiki-cn.wikidot.com/the-scip-squad-podcast-hub
开头及结尾的音乐是《你同我》,词作者djkaktus,表演者Oboebandgeek99
SCP-1425 - 星星信号 by Silberescher
(https://scp-wiki-cn.wikidot.com/scp-1425)
SCP-3360 - Proletariar,创作者San Francisco Jones by A Random Day
(https://scp-wiki-cn.wikidot.com/scp-3360)
实验日志 261 by 人太多了列不过来
(https://scp-wiki-cn.wikidot.com/experiment-log-261-ad-de)
SCP-1756 - 影评再现人世间 by Smapti
(https://scp-wiki-cn.wikidot.com/scp-1756)
SCP-3682 - 基督再临 by faminepulse
(https://scp-wiki-cn.wikidot.com/scp-3682)
SCP-3194 - Divine Presence by CharlesDoucet
(https://scp-wiki-cn.wikidot.com/scp-3194)
节目信息
收听渠道
Youtube - Spotify - Apple Podcasts - Amazon Podcasts -Stitcher
可以通过电子邮件向我们提问:moc.liamg|doPdauqSpicS#moc.liamg|doPdauqSpicS
请按如下方式引用此页:
“Scip小队播客 中心”,作者 Tstaffor,来自 SCP 维基。原文链接:https://www.scpwiki.com/the-scip-squad-podcast-hub。译者 Esperanza_Cai,来自 SCP-CN 维基。译文链接:http://scp-wiki-cn.wikidot.com/the-scip-squad-podcast-hub。遵循 CC-BY-SA 协议。
更多详情请参阅授权指南。
授权信息
tstaffor与Aiko创作了本页的所有图像,并在CC BY-SA 3.0协议下发布。
更多维基文档信息,请见版权信息总览。