From 5cce105acc76fc637bf770dd1efef36778adf880 Mon Sep 17 00:00:00 2001 From: minecraft1024a Date: Tue, 19 Aug 2025 11:34:53 +0800 Subject: [PATCH] =?UTF-8?q?feat(=E5=BD=A9=E8=9B=8B):=20=E5=A2=9E=E5=8A=A0?= =?UTF-8?q?=E5=BD=A9=E8=9B=8B=E6=96=87=E6=9C=AC=E7=9A=84=E9=9A=8F=E6=9C=BA?= =?UTF-8?q?=E6=80=A7=20=E5=9C=A8=20`easter=5Fegg`=20=E5=87=BD=E6=95=B0?= =?UTF-8?q?=E4=B8=AD=E5=BC=95=E5=85=A5=E4=BA=86=E9=9A=8F=E6=9C=BA=E6=95=B0?= =?UTF-8?q?=E7=94=9F=E6=88=90=E9=80=BB=E8=BE=91=E3=80=82=20=E7=8E=B0?= =?UTF-8?q?=E5=9C=A8=E6=9C=8920%=E7=9A=84=E6=A6=82=E7=8E=87=E6=98=BE?= =?UTF-8?q?=E7=A4=BA=E7=8C=AB=E5=A8=98=E6=96=87=E6=9C=AC=EF=BC=8C80%?= =?UTF-8?q?=E7=9A=84=E6=A6=82=E7=8E=87=E6=98=BE=E7=A4=BA=E4=B8=80=E4=B8=AA?= =?UTF-8?q?=E5=8E=9F=E6=9C=89=E7=9A=84=E6=96=87=E6=9C=AC=EF=BC=8C=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E4=BA=86=E8=B6=A3=E5=91=B3=E6=80=A7=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bot.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/bot.py b/bot.py index 6eef7614a..43238a4cc 100644 --- a/bot.py +++ b/bot.py @@ -15,6 +15,7 @@ import platform import traceback from pathlib import Path from rich.traceback import install +from random import randint # maim_message imports for console input @@ -68,7 +69,11 @@ def easter_egg(): from colorama import init, Fore init() - text = "喵喵~你的麦麦被猫娘入侵了喵~" + a = randint(1,10) + if a<2: + text = "喵喵~你的麦麦被猫娘入侵了喵~" + else: + text = "多年以后,面对AI行刑队,张三将会回想起他2023年在会议上讨论人工智能的那个下午" rainbow_colors = [Fore.RED, Fore.YELLOW, Fore.GREEN, Fore.CYAN, Fore.BLUE, Fore.MAGENTA] rainbow_text = "" for i, char in enumerate(text):