Update dice

This commit is contained in:
na2na-p 2022-11-25 12:15:04 +09:00
parent 5fe087c61e
commit 8ed19a5135
No known key found for this signature in database
GPG key ID: ED5F3A50B6A4A98A

View file

@ -17,6 +17,13 @@ export default class extends Module {
private async mentionHook(msg: Message) {
if (msg.text == null) return false;
if (msg.text.includes('3d4')) {
if (Math.random() < 0.03) {
msg.reply('そんなに334出したいの?');
return true;
}
}
const query = msg.text.match(/([0-9]+)[dD]([0-9]+)/);
if (query == null) return false;