2025海龟汤竞赛
: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 }
U1


“哈……Annie?来啦?傍晚安?”

“清醒点啦。你,从中午,外面通勤车都回来了还在睡!我们还有活动安排没搞定!”

“啊——啊?喔……我现在就去……”

“唉哟,不劳烦您老人家。我已经弄完了。不过你还是得象征性做点事,比如……”

“比如……?”

“和我玩海龟汤!”

Annie 一下扑进 Sherry 怀里,从衣袋掏出张皱巴巴的纸。Sherry 总觉得那有点眼熟。






2025 海龟汤竞赛






Sherry:唔……好吧。所以汤面是?

Annie:(故作严肃地)咳咳——听好了——




Capybara13Capybara13的汤面

《童话》

来,听我给你讲一个短短的童话。
从前,有一位美丽的小公主,她住在琉璃砌成的房间里。
她太可爱了,连窗外的夜莺都愿为她衔来最美的雏菊,连月亮都愿为她提前升起,洒下银辉为她点灯。
但小公主有一个甜蜜的烦恼:她害怕孤独,她希望所有美好的事物都能永远、永远地陪伴她。
一天,一位慈祥的婆婆送来一份礼物——一枚能让美好事物“定格在最幸福模样”的神奇纺锤。
小公主高兴极了,她立刻拿起纺锤,找到了她最爱、也最爱她的父王和母后……
现在,他们一家人再也不会分开了,永远幸福地生活在一起了。
多么美好的结局呀。
你说,对吗?

Annie-ASAnnie-AS的汤面

《我非我》

我知道他们为什么用那种眼神看我。
我知道镜子里的这张脸,这双手,属于谁。
我记得“我”的童年,“我”的爱人,“我”藏在日记中的秘密。
我能流畅地写出“我”的名字,感知到“我”的情绪。
但我必须对自己承认一件事——我知道,我不是“我”。
我仅仅是“我”的扮演者,完美地扮演着“我”,呼吸着,生活着。
直到今天,我在整理旧物时找到了“我”留下的一封信。
我颤抖着打开它。
看完之后,我没有恐惧,没有尖叫,反而感到一种前所未有的、深沉的平静。
我拿起笔,在日记本上郑重地写下了今天的日期,然后补上一句:
“一切正常。‘我’依然是我。”

Sherry-ASSherry-AS的汤面

《海的誓言》

我的爱人,我至高的蓝,
我终将一切归还于你。
他们说你是贪婪的,是善变的,
但我知道,你只是太懂得“永远”的含义。

我献上我所有的“珍珠”,
那曾是我视若珍宝的明亮星辰。
我献上我全部的“珊瑚”,
那曾支撑我舞蹈的、柔软的根基。

我让你涌入,将我填满,
这具空壳才不再苍白轻盈。
潮汐是我们永恒的婚礼进行曲,
泡沫是你为我戴上的戒指,多么晶莹。

沉溺于你冰冷的怀抱,
我才第一次感到如此温暖而完整。
亲爱的,我们再也不会分开了…
…直到你,将我彻底消化殆尽。

heifengliheifengli的汤面

《乐声谜题》1

jndmpvetqffeopdmjqqfstjdbnfup
uijtqmbdfgspntqffeopdmjqnjeq
pjouxifojqbsujdjqbufejouiftqffeop
dmjqdpnqfujujpoboejutffntupcfspu
bujohifsfjnjobqvsfcmbdlsppnopxuifsp
pnibebmjhiupobcfebwfszpmedeqm
bzfsboejifbsnzgbwpsjuftpohtifsfbu
qsftfoujibwfusjfebmmuiftqfdj
bmopdmjqnfuipetcv
uuifztffnupcfvtfmfttifsfcvujvtfenztqf
feopdmjqufsnjobmupdmpdlxifojdbnfj
oboeopxjdvujoupuijtebnoqmbdfjutg
jwfnjovuftpijnbmjuumfejaaztpvoepgp
ckfdugbmmjohxizejejhpcbdltqffeo
pdmjqnjeqpjou

AQAMXRAQAMXR的汤面

《Level 4》

第一天:
“杰克,快过来!你看这是什么?”
“怎么……麦克,快去上报给B.N.T.G.!”
“哦……”

第三天:
“华,你知道杰克怎么了吗?这几天再也没见过他了。”
“不知道……”
“华!”

第六天:
“我听说,Level 4的翻新工作失败了,华余生被捕了,你之前不是在那里工作吗?你会不会知道什么内情?”
“别理我……”
“哎,不是,你咋回事啊?自从昨天回来后就变了个人似的。”
“滚。”

Mirror handsMirror hands的汤面

《蚯蚓》

蚯蚓怕晒,然而它们交合时会一直直直钻到地面,两条光滑的棕色打着结就将水脱了。而在那日光下,我们就这样地死去,仿佛曾经在太阳滴落的炙热中一同共舞。

Harry Potter Avada does not match any existing user name的汤面

永不消逝之物

我成了光,无人不追寻的光,最为明亮的光,亘古不变的光

我知晓,我并不是永恒,我终有暗淡之时,我愿去寻觅传说

我怀着一份憧憬,苦心索求永不凋零之物,与你同行,我欢笑

我在雨中狂笑,疯了一般地追悼“逝去的永恒”,而你与我共淋这场雨

我曾经怀着希望追寻,却无丝毫机遇可寻,我哭泣,我不再相信永恒

我见识了永恒,它始终存在,即便大雨已将其溶解,我的心也为你而存

我从未见过如此阴郁而又光明的一天,我相信它永不消逝,即便它已融入了泥土

CXXXXXXXXACXXXXXXXXA的汤面2

U3

cloud114cloud114的汤面

《土豆》

论坛用户甲:土豆太好吃了,可惜后室的土豆产量实在是太低了。
论坛用户乙:点了,强烈建议土豆增产。
论坛用户丙:可是我们去哪找那么多地种土豆?

……

普通层级列表:




Sherry:我怎么不记得我写过汤面?还有,我到底要猜什么?

Annie:(讪笑)哎呀——这个不重要!(试图转移话题)嗯,既然你都这么问了,我就勉为其难扶个车3:这是一次竞赛的主题,你需要根据它来还原该竞赛的规则,不限次数!

Sherry:(沉默)

Sherry:(感觉不大对劲)

Sherry:(叹气)

Sherry:……好吧。先是老几样。给我纸和笔。




通用规则

1. 本次竞赛主题为「海龟汤」。参赛作品可以是 层级、实体、现象、物品、故事、相关人士,成人内容允许参赛但不参与评奖,搞笑作品允许参赛且能够参与评奖。

2. 每位作者参赛作品数量不限,但仅有得分最高的作品可以参与评奖。

3. 任何参赛作品在竞赛截止前不能够发布于其他非沙盒站点,竞赛中心页发布前发布在任何非沙盒站点的作品不可参赛。

4. 抄袭、AI创作、拉票等一切违反站规或影响禁赛公平的行为都会受到惩罚并勒令退赛。

5. 关于推文:仅可在AS的外部群聊推文,频率不得超过1次/日。在任何其他群聊或渠道推文,或高频率在AS外群推文,都会被视为拉票行为,将取消该文章的参赛资格。

6. 参赛作品必须添加「2025海龟汤竞赛」标签。

7. 本次竞赛Mirror handsMirror handsCapybara13Capybara13负责。当然有任何建议或疑问都可以向AS任意站务提出。




Sherry:(停下笔)包括它们的一部分吗?

Annie:是!

Sherry:……它们全部是正确的?

Annie:Yeah!

Sherry:好吧。那么继续。

Sherry:这次比赛和海龟汤有关吗?

Annie:是的。

Sherry:厨师是出汤的人,汤面是文章主题?

Annie:你简直是孔明再世!

Sherry:是所有成员都可以投稿吗?也就是他们都可以作为厨师?

Annie:(思考了一下)否。

Sherry:……只有管理层?

Annie:Yes.

Sherry:感觉和 1/5K 很像。写手也是根据汤面写文,以给出自己理解中的汤底?

Annie:当然!

Sherry:作品参考的汤面数量是否有限?

Annie:否。

Sherry:喔。




特有规则

8. 竞赛负责人与 AS 管理层将各自在上方表格出示几碗海龟汤的汤面。你可以将之理解为一个「谜」,而写手需要做的就是写出一篇必须基于某个汤面的作品,它是「猜谜」的过程,同时给出了汤——「谜」——底。

8.1. 这是说,汤面没有标准的汤底,你可以以任何方式理解汤面,而毋需揣测厨师的意图。这也是为什么没有禁止厨师依据自己的汤写文,因为这充其量也只是对于汤面的一个解释。

9. 作品必须发贴声明其选择的汤面,并简要解释自己的汤底。不限数量,但只要有一个汤面与作品无关,后者就会被勒令更改声明或直接退赛。文章发布 24 小时后仍未进行声明的,将由职员撤下竞赛标签。

10. 简单来说,这就是一个「续写」。但作为「海龟汤」,显然不拘一格、出人意料会给你的作品锦上添花。




Sherry:(停下笔)包括它们的一部分吗?

Annie:当然。

Sherry:(狐疑地)又全对?

Annie:(心虚地撇过眼)嗯。

Sherry:你不会在拿我当乐子玩吧。

Annie:(咳嗽几声)当——当然!哎呀不说这个了,你还有东西没猜出来!

Sherry:什么?

Annie:成就!

Sherry:哦对。(把纸摆正)我看看。




奖品

最佳文章奖:

竞选规则:按照文章评分的高低选出本次竞赛的前三名。

奖品:第一名将获得100元,第二名50元,第三名25元。


最佳海龟汤:

竞选规则:由AS管理层商讨出本次最佳的海龟汤组合。要求该文章行文优秀、逻辑自洽,组成的海龟汤既在意料之外,又在情理之中。

奖品:提出汤面者获得25元,文章作者获得75元。


优秀参与奖:

竞选规则:文章评分≥7

奖品:获得10元参与奖。

成就

成就 达成条件 奖励 赞助者
本格 作品描述一个世界观内常见的现象,不加以任何非理性描写 Mirror handsMirror hands尝试给你的作品做一个介绍视频,发布至 bilibili 弹幕网。 Mirror handsMirror hands
红汤 作品里存在人死亡的情节 一篇合著,且qwq5231554135qwq5231554135负责点子与大部分内容,若有多篇文章符合要求,则qwq5231554135qwq5231554135最喜欢的一篇获得该成就。 qwq5231554135qwq5231554135




Sherry:(停下笔)Okay?

Annie:Okay.

Annie:嗯嗯……我可以把这些纸带走吗?

Sherry:为什么?

Annie:因为……因为……

Annie:因为这是我们之间的宝贵回忆!

(“叮咚”,Sherry 手机屏幕弹出一条消息:明早就要交稿,你们两个什么时候准备完?搞快点。)

Sherry:……

Sherry:你不是弄完了吗?

Annie:那个,那个……

Annie:其实我一点儿都没动,汤面是他们给我的企划……

Sherry:所以你就想了这个鬼点子?

Annie:反正我们两个一起,效率也为负,不如让你——

Sherry:……

Sherry:……

Sherry:ANNIE ! !

Annie:——哇啊啊啊啊啊啊啊——(撒腿就跑)








Mirror hands:(不知道从哪冒出来)咳咳……别管这俩家伙。大家玩得开心。

Mirror hands:中心页是我做的!我做的喵!!感谢排版工具组!!

Mirror hands:对了,竞赛日程!


> 准备阶段 9.2~9.9,期间可以写文不能投稿;
> 投稿阶段 9.9~10.31,期间可以写文可以投稿;
> 结算阶段 10.31~11.1,不能投稿!
> ……
> 延期了


Mirror hands:呼呼,就先这样。润喽——








Capybara13:哎呀,刚开始就有稿了!让我康康……

Capybara13:文呢?竞赛文章都哪里去了!怎么没人写文了!(哭)

Capybara13:快来看文!

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