mirror of
https://github.com/kou029w/daraz-san.git
synced 2025-01-19 00:18:01 +00:00
7 lines
168 B
JavaScript
7 lines
168 B
JavaScript
|
module.exports = [
|
||
|
/([\s\S]*(ぱい|パイ)[\s\S]*)/,
|
||
|
({ context, say }) => {
|
||
|
say(`:goku: < ${context.matches[0].replace(/ぱい|パイ/g, "ぺぇ")}`);
|
||
|
}
|
||
|
];
|