-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ef70092
commit 2d6cc07
Showing
5 changed files
with
136 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
import nonebot | ||
|
||
|
||
try: | ||
bot_qq = nonebot.get_driver().config.bot_qq | ||
except: | ||
bot_qq = "寄" | ||
|
||
try: | ||
super_qq = nonebot.get_driver().config.superusers | ||
except: | ||
super_qq = "寄" | ||
|
||
|
||
|
||
def monitor_rongyu(honor_type, user_id): | ||
rely = "" | ||
|
||
if honor_type == "talkative": | ||
if user_id == bot_qq: | ||
rely = f"你们又不行了,本喵喜提龙王~" | ||
elif user_id == super_qq: | ||
rely = f"[CQ:at,qq={user_id}]恭喜主人荣获龙王标识喵~" | ||
else: | ||
rely = f"恭喜[CQ:at,qq={user_id}]荣获龙王标识喵~" | ||
|
||
elif honor_type == "performer": | ||
if user_id == bot_qq: | ||
pass | ||
elif user_id == super_qq: | ||
rely = f"[CQ:at,qq={user_id}]恭喜主人荣获群聊之火标识喵~" | ||
else: | ||
rely = f"恭喜[CQ:at,qq={user_id}]荣获群聊之火标识喵~" | ||
|
||
elif honor_type == "emotion": | ||
if user_id == bot_qq: | ||
pass | ||
elif user_id == super_qq: | ||
rely = f"[CQ:at,qq={user_id}]恭喜主人荣获快乐源泉标识喵~" | ||
else: | ||
rely = f"恭喜[CQ:at,qq={user_id}]荣获快乐源泉标识喵~" | ||
return rely |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
import random | ||
import nonebot | ||
|
||
|
||
try: | ||
bot_name = nonebot.get_driver().config.bot_name | ||
except: | ||
bot_name = "寄" | ||
|
||
|
||
def chuo_send_msg(): | ||
rand_num = random.randint(0, len(chuo_msg) - 1) | ||
return chuo_msg[rand_num] | ||
|
||
|
||
chuo_msg = [ | ||
f"别戳了,{bot_name}怕疼QwQ", | ||
f"呜呜,再戳{bot_name}脸都要肿了", | ||
f"戳坏了{bot_name},你赔得起吗?", | ||
f"再戳{bot_name},我要叫我主人了", | ||
f"别老戳{bot_name}了,您歇会吧~", | ||
f"再戳{bot_name},咬你了嗷~", | ||
f"想好了再戳,(*-`ω´-)✄", | ||
f"喂,110吗,有人老戳我", | ||
f"嗷呜嗷呜...恶龙咆哮┗|`O′|┛", | ||
f"有事恁叫我,别天天一个劲戳戳戳!", | ||
f"再戳我让你变成女人,嘿嘿", | ||
f"不要戳我了 >_<", | ||
f"不要这样子啦(*/ω\*)", | ||
f"不要再戳了(害怕ing)", | ||
f"还戳,哼(つд⊂)(生气)", | ||
f"再戳,小心我顺着网线找你.", | ||
f"咱要型气了o(>﹏<)o", | ||
f"嘿嘿,好舒服呀(bushi)", | ||
f"乖,好了好了,别戳了~", | ||
f"我爪巴爪巴,球球别再戳了", | ||
f"别再戳我了,行🐎?!", | ||
f"啊呜,你有什么事吗?" | ||
] | ||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters