mirror of
https://github.com/kou029w/daraz-san.git
synced 2025-01-19 00:18:01 +00:00
11 lines
305 B
JavaScript
11 lines
305 B
JavaScript
|
const { directMention } = require("@slack/bolt");
|
||
|
|
||
|
module.exports = [
|
||
|
directMention(),
|
||
|
/(ニャンちゅう) +(.*)/,
|
||
|
({ context, say }) => {
|
||
|
const oon = context.matches[2].split("").map(c => `${c}゛`);
|
||
|
say(`お゛ぉ゛ん!${oon.join("")}た゛に゛ゃあ゛ん! > :nyanchu:`);
|
||
|
}
|
||
|
];
|