From 17c46c28333619d8bdba3f105f8be80a3b5092c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BB=8A=E6=99=9A=E6=89=93=E8=80=81=E8=99=8E?= Date: Sat, 18 Apr 2026 00:06:30 +0800 Subject: [PATCH 1/2] =?UTF-8?q?[=E6=8A=95=E7=A8=BF]=20=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E8=84=9A=E6=9C=AC:=20=E9=9F=A9=E9=9B=85=E8=AF=BA=E4=B8=8E?= =?UTF-8?q?=E9=99=88=E6=B5=B7=E9=B8=A5=E7=9A=84=E7=88=B1=E6=83=85=E6=95=85?= =?UTF-8?q?=E4=BA=8B=20=E2=80=94=20by=20=E9=9F=A9=E9=9B=85=E8=AF=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../scripts/basic/script_mo33oyu5.py | 49 +++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 script_library/scripts/basic/script_mo33oyu5.py diff --git a/script_library/scripts/basic/script_mo33oyu5.py b/script_library/scripts/basic/script_mo33oyu5.py new file mode 100644 index 0000000..e7bb5b0 --- /dev/null +++ b/script_library/scripts/basic/script_mo33oyu5.py @@ -0,0 +1,49 @@ +import random +import time + +def slow_print(text, delay=0.04): + for char in text: + print(char, end="", flush=True) + time.sleep(delay) + print() + +def start_game(): + slow_print("=== 新月之下 · 黑水之城 ===", 0.06) + slow_print("你是韩雅诺。") + slow_print("深夜,你站在阿卡普尔科的街头。") + slow_print("海风带着血腥味,城市在毒枭的阴影里沉睡。") + slow_print("你来找你的男朋友——陈海鸥。") + slow_print("他失踪了。") + print() + + slow_print("你面前有三条路:") + slow_print("1. 走进黑暗的小巷(传闻海鸥最后出现的地方)") + slow_print("2. 走向海边码头(海鸥常去的地方)") + slow_print("3. 躲进废弃酒吧(你和海鸥曾一起待过的据点)") + + while True: + choice = input("\n选择(1/2/3):") + if choice in ["1", "2", "3"]: + break + slow_print("请输入 1、2 或 3。") + + if choice == "1": + alley_path() + elif choice == "2": + dock_path() + else: + bar_path() + +def alley_path(): + slow_print("\n你走进小巷,黑暗中传来低沉的呼吸声。") + slow_print("突然,四个黑影拦住了你。") + slow_print("他们是黑水组织的人。") + slow_print("其中一人冷笑:“韩雅诺,你在找陈海鸥?”") + print() + fight_or_flee() + +def dock_path(): + slow_print("\n海风冰冷,海浪拍打着码头。") + slow_print("你看到远处有一艘船,上面站着一个熟悉的身影——") + slow_print("是陈海鸥!") + slow_print("但他被人押着,动弹... \ No newline at end of file From e8927ce59038228c4487e6736e6ad314b38f36b8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BB=8A=E6=99=9A=E6=89=93=E8=80=81=E8=99=8E?= Date: Sat, 18 Apr 2026 00:06:32 +0800 Subject: [PATCH 2/2] =?UTF-8?q?[=E6=8A=95=E7=A8=BF]=20=E6=9B=B4=E6=96=B0?= =?UTF-8?q?=20index.json:=20=E6=B7=BB=E5=8A=A0=20=E9=9F=A9=E9=9B=85?= =?UTF-8?q?=E8=AF=BA=E4=B8=8E=E9=99=88=E6=B5=B7=E9=B8=A5=E7=9A=84=E7=88=B1?= =?UTF-8?q?=E6=83=85=E6=95=85=E4=BA=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- script_library/index.json | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/script_library/index.json b/script_library/index.json index 3f5b12a..45852c4 100644 --- a/script_library/index.json +++ b/script_library/index.json @@ -1,7 +1,7 @@ { "format_version": 1, - "data_version": 92, - "updated": "2026-04-14T14:43:21.842Z", + "data_version": 93, + "updated": "2026-04-17T16:06:31.912Z", "announcement": null, "categories": [ { @@ -1584,6 +1584,29 @@ "updated": null, "status": "active", "lines": 192 + }, + { + "id": "script_mo33oyu5", + "name": "韩雅诺与陈海鸥的爱情故事", + "name_en": "韩雅诺与陈海鸥的爱情故事", + "desc": "陈海鸥nb", + "desc_en": "陈海鸥nb", + "category": "basic", + "file": "scripts/basic/script_mo33oyu5.py", + "thumbnail": null, + "version": 1, + "file_type": "py", + "author": "韩雅诺", + "author_en": "韩雅诺", + "tags": [ + "community" + ], + "requires": [], + "min_app_version": "1.5.0", + "added": "2026-04-17", + "updated": null, + "status": "active", + "lines": 49 } ] }