1
0
Fork 0
mirror of https://github.com/kou029w/daraz-san.git synced 2025-01-18 16:08:06 +00:00
daraz-san/scripts/yakitori.js
2020-04-09 00:16:46 +09:00

20 lines
617 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

const random = require("./util/random");
const nyanco = require("./util/nyanco");
const yakitoris = [
"―ロ@ロ@ロ- ヤキトリ",
"―{ニ}ニ}ニ}ニ}- 豚",
"―@@@- つくね",
"―{}@{}@{}- ねぎ",
"―∬∬∬- 鳥かわ",
"―зεз- 軟骨",
"―⊂ZZZ⊃ ソーセージ",
"―<コ:彡- イカ丸焼き",
"―>゚)))彡- 魚丸焼き",
];
module.exports = [
/焼鳥|焼き鳥|やきとり|ヤキトリ|串|プロキシ|プロクシ|proxy|Proxy|PROXY|ピロシキ/,
({ say }) =>
say(`串焼きでも食べるにゃん < ${nyanco()}${random(yakitoris)}`),
];