feat: magic conch module added

This commit is contained in:
Soumt Nam 2023-09-13 19:50:41 +09:00
parent 6bd9e4e413
commit c76d8a723d
2 changed files with 16 additions and 1 deletions

View file

@ -245,7 +245,6 @@ class AiTem(ModuleInterface):
con_sel = random.choice(ands)
item1_comp = self.manager.require("K-Josa").get_func("process_josa")(item1_sel, con_sel[0], con_sel[1]) + con_sel[2]
print(item1_sel, item1_comp)
return random.choice(itemPrefixes) + ' ' + ((item1_comp + ' ' + random.choice(itemPrefixes) + ' ' + random.choice(items)) if random.choice([True, False]) else item1_sel)
def module_ready(self):

16
modules/Magic_Conch.py Normal file
View file

@ -0,0 +1,16 @@
from module_interface import ModuleInterface
from mipac.models import Note
import random
class MConch(ModuleInterface):
def __init__(self):
super().__init__()
self.name = "Magic_Conch"
self.regex_pattern = r".*마법의 미냐고동\s님\s*.*?"
print("[Magic_Conch] Selection helper module, Magic_Conch V1 loaded.")
async def execute_module(self, ctx: Note):
print(f"[Magic_Conch] Got Magic_Conch Message : {ctx.content}")
await ctx.api.action.reply(random.choice(["아..니요?", "네!", "안 돼요!", "아마도요..?"]))