mirror of
https://github.com/syuilo/ai.git
synced 2025-03-25 21:12:56 +00:00
Update dice
This commit is contained in:
parent
5fe087c61e
commit
8ed19a5135
1 changed files with 7 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue