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