mirror of
https://github.com/syuilo/ai.git
synced 2024-11-12 17:08:00 +00:00
rmrf
This commit is contained in:
parent
eda2a6a798
commit
d67903cb43
|
@ -36,7 +36,8 @@ export default class CoreModule implements IModule {
|
|||
this.hug(msg) ||
|
||||
this.humu(msg) ||
|
||||
this.batou(msg) ||
|
||||
this.ponkotu(msg)
|
||||
this.ponkotu(msg) ||
|
||||
this.rmrf(msg)
|
||||
);
|
||||
}
|
||||
|
||||
|
@ -317,6 +318,16 @@ export default class CoreModule implements IModule {
|
|||
};
|
||||
}
|
||||
|
||||
private rmrf = (msg: MessageLike): boolean | Result => {
|
||||
if (!msg.includes(['rm -rf'])) return false;
|
||||
|
||||
msg.friend.decLove();
|
||||
|
||||
return {
|
||||
reaction: 'angry'
|
||||
};
|
||||
}
|
||||
|
||||
public onReplyThisModule = (msg: MessageLike, data: any) => {
|
||||
if (msg.text == null) return;
|
||||
|
||||
|
|
Loading…
Reference in a new issue