Merge branch 'na2na' of https://github.com/na2na-p/2na2 into na2na

This commit is contained in:
na2na 2022-02-25 14:13:26 +09:00
commit 2f6bb2bc3c

View file

@ -88,5 +88,15 @@ export default class extends Module {
if (includes(note.text, ['ずなず']) || includes(note.text, ['ずにゃず'])) return react('🙌');
if (includes(note.text, ['なず']) || includes(note.text, ['にゃず'])) return react(':google_hart:');
const gameReact = [
':ysvi:',
':ysf:',
':yso:'
]
if (includes(note.text, ['おゲームするかしら'])){
// gameReactの中からランダムに選択
return react(gameReact[Math.floor(Math.random() * gameReact.length)]);
}
}
}