├── .eslintrc.js ├── .gitignore ├── LICENSE.md ├── README.md ├── assets ├── images │ ├── image_respects.png │ ├── plate_beautiful.png │ ├── plate_triggered.png │ └── plate_wanted.jpg ├── json │ ├── akinatorImage.json │ ├── bad-message.json │ ├── eslint-default.json │ ├── nodetect-js.json │ └── status.json └── soundboard │ └── encd.dat ├── commands ├── animals │ ├── birb.js │ ├── bunny.js │ ├── cat.js │ ├── dog.js │ ├── duck.js │ ├── fox.js │ ├── lion.js │ ├── lizard.js │ ├── module.json │ ├── owl.js │ ├── panda.js │ ├── penguin.js │ ├── redpanda.js │ ├── shiba.js │ └── tiger.js ├── fun │ ├── 8ball.js │ ├── aesthetic.js │ ├── akinator.js │ ├── beautiful.js │ ├── chuknorris.js │ ├── clapify.js │ ├── creatememe.js │ ├── cuddle.js │ ├── guess-that-number.js │ ├── hug.js │ ├── kiss.js │ ├── meme.js │ ├── minesweeper.js │ ├── module.json │ ├── owoify.js │ ├── pat.js │ ├── poke.js │ ├── pun.js │ ├── respect.js │ ├── reversed.js │ ├── riot.js │ ├── say.js │ ├── sepia.js │ ├── slap.js │ ├── triggered.js │ ├── trivia.js │ └── wanted.js ├── info │ ├── emolist.js │ ├── help.js │ ├── module.json │ └── ping.js ├── music │ ├── forceplay.js │ ├── loop.js │ ├── lyrics.js │ ├── module.json │ ├── nowplay.js │ ├── npmoe.js │ ├── play.js │ ├── playmoe.js │ ├── queue.js │ ├── seek.js │ ├── shuffle.js │ ├── skip.js │ ├── stop.js │ └── volume.js ├── nsfw │ ├── amateur.js │ ├── anal.js │ ├── boobs.js │ ├── booty.js │ ├── gonewild.js │ ├── lesbian.js │ ├── milf.js │ ├── module.json │ ├── nsfwgif.js │ ├── nsfwsnapchat.js │ ├── pussy.js │ └── teen.js ├── process │ ├── canvas.js │ ├── devsay.js │ ├── eval.js │ ├── exec.js │ ├── jquery.js │ ├── module.json │ ├── reload.js │ └── snekfetch.js └── util │ ├── asciify.js │ ├── docs.js │ ├── eslint-rule.js │ ├── google.js │ ├── hex-to-int.js │ ├── image.js │ ├── int-to-hex.js │ ├── jisho.js │ ├── mdn.js │ ├── module.json │ ├── npm.js │ ├── stackoverflow.js │ ├── steam.js │ └── weather.js ├── config.json ├── events ├── error.js ├── message.js ├── ready.js └── warn.js ├── handle ├── YumekoClient.js ├── akinatorGame │ ├── Akinator.js │ ├── client.js │ └── getSession.js ├── coliru.js ├── command.js ├── events.js ├── linter.js ├── logger.js ├── module.js ├── npMoe.js └── util.js ├── index.js ├── package.json ├── server.js └── watch.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/README.md -------------------------------------------------------------------------------- /assets/images/image_respects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/assets/images/image_respects.png -------------------------------------------------------------------------------- /assets/images/plate_beautiful.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/assets/images/plate_beautiful.png -------------------------------------------------------------------------------- /assets/images/plate_triggered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/assets/images/plate_triggered.png -------------------------------------------------------------------------------- /assets/images/plate_wanted.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/assets/images/plate_wanted.jpg -------------------------------------------------------------------------------- /assets/json/akinatorImage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/assets/json/akinatorImage.json -------------------------------------------------------------------------------- /assets/json/bad-message.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/assets/json/bad-message.json -------------------------------------------------------------------------------- /assets/json/eslint-default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/assets/json/eslint-default.json -------------------------------------------------------------------------------- /assets/json/nodetect-js.json: -------------------------------------------------------------------------------- 1 | [ 2 | "480271941048205312" 3 | ] 4 | -------------------------------------------------------------------------------- /assets/json/status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/assets/json/status.json -------------------------------------------------------------------------------- /assets/soundboard/encd.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/assets/soundboard/encd.dat -------------------------------------------------------------------------------- /commands/animals/birb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/animals/birb.js -------------------------------------------------------------------------------- /commands/animals/bunny.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/animals/bunny.js -------------------------------------------------------------------------------- /commands/animals/cat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/animals/cat.js -------------------------------------------------------------------------------- /commands/animals/dog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/animals/dog.js -------------------------------------------------------------------------------- /commands/animals/duck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/animals/duck.js -------------------------------------------------------------------------------- /commands/animals/fox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/animals/fox.js -------------------------------------------------------------------------------- /commands/animals/lion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/animals/lion.js -------------------------------------------------------------------------------- /commands/animals/lizard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/animals/lizard.js -------------------------------------------------------------------------------- /commands/animals/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/animals/module.json -------------------------------------------------------------------------------- /commands/animals/owl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/animals/owl.js -------------------------------------------------------------------------------- /commands/animals/panda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/animals/panda.js -------------------------------------------------------------------------------- /commands/animals/penguin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/animals/penguin.js -------------------------------------------------------------------------------- /commands/animals/redpanda.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/animals/redpanda.js -------------------------------------------------------------------------------- /commands/animals/shiba.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/animals/shiba.js -------------------------------------------------------------------------------- /commands/animals/tiger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/animals/tiger.js -------------------------------------------------------------------------------- /commands/fun/8ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/fun/8ball.js -------------------------------------------------------------------------------- /commands/fun/aesthetic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/fun/aesthetic.js -------------------------------------------------------------------------------- /commands/fun/akinator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/fun/akinator.js -------------------------------------------------------------------------------- /commands/fun/beautiful.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/fun/beautiful.js -------------------------------------------------------------------------------- /commands/fun/chuknorris.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/fun/chuknorris.js -------------------------------------------------------------------------------- /commands/fun/clapify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/fun/clapify.js -------------------------------------------------------------------------------- /commands/fun/creatememe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/fun/creatememe.js -------------------------------------------------------------------------------- /commands/fun/cuddle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/fun/cuddle.js -------------------------------------------------------------------------------- /commands/fun/guess-that-number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/fun/guess-that-number.js -------------------------------------------------------------------------------- /commands/fun/hug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/fun/hug.js -------------------------------------------------------------------------------- /commands/fun/kiss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/fun/kiss.js -------------------------------------------------------------------------------- /commands/fun/meme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/fun/meme.js -------------------------------------------------------------------------------- /commands/fun/minesweeper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/fun/minesweeper.js -------------------------------------------------------------------------------- /commands/fun/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/fun/module.json -------------------------------------------------------------------------------- /commands/fun/owoify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/fun/owoify.js -------------------------------------------------------------------------------- /commands/fun/pat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/fun/pat.js -------------------------------------------------------------------------------- /commands/fun/poke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/fun/poke.js -------------------------------------------------------------------------------- /commands/fun/pun.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/fun/pun.js -------------------------------------------------------------------------------- /commands/fun/respect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/fun/respect.js -------------------------------------------------------------------------------- /commands/fun/reversed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/fun/reversed.js -------------------------------------------------------------------------------- /commands/fun/riot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/fun/riot.js -------------------------------------------------------------------------------- /commands/fun/say.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/fun/say.js -------------------------------------------------------------------------------- /commands/fun/sepia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/fun/sepia.js -------------------------------------------------------------------------------- /commands/fun/slap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/fun/slap.js -------------------------------------------------------------------------------- /commands/fun/triggered.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/fun/triggered.js -------------------------------------------------------------------------------- /commands/fun/trivia.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/fun/trivia.js -------------------------------------------------------------------------------- /commands/fun/wanted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/fun/wanted.js -------------------------------------------------------------------------------- /commands/info/emolist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/info/emolist.js -------------------------------------------------------------------------------- /commands/info/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/info/help.js -------------------------------------------------------------------------------- /commands/info/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/info/module.json -------------------------------------------------------------------------------- /commands/info/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/info/ping.js -------------------------------------------------------------------------------- /commands/music/forceplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/music/forceplay.js -------------------------------------------------------------------------------- /commands/music/loop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/music/loop.js -------------------------------------------------------------------------------- /commands/music/lyrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/music/lyrics.js -------------------------------------------------------------------------------- /commands/music/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/music/module.json -------------------------------------------------------------------------------- /commands/music/nowplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/music/nowplay.js -------------------------------------------------------------------------------- /commands/music/npmoe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/music/npmoe.js -------------------------------------------------------------------------------- /commands/music/play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/music/play.js -------------------------------------------------------------------------------- /commands/music/playmoe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/music/playmoe.js -------------------------------------------------------------------------------- /commands/music/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/music/queue.js -------------------------------------------------------------------------------- /commands/music/seek.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/music/seek.js -------------------------------------------------------------------------------- /commands/music/shuffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/music/shuffle.js -------------------------------------------------------------------------------- /commands/music/skip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/music/skip.js -------------------------------------------------------------------------------- /commands/music/stop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/music/stop.js -------------------------------------------------------------------------------- /commands/music/volume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/music/volume.js -------------------------------------------------------------------------------- /commands/nsfw/amateur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/nsfw/amateur.js -------------------------------------------------------------------------------- /commands/nsfw/anal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/nsfw/anal.js -------------------------------------------------------------------------------- /commands/nsfw/boobs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/nsfw/boobs.js -------------------------------------------------------------------------------- /commands/nsfw/booty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/nsfw/booty.js -------------------------------------------------------------------------------- /commands/nsfw/gonewild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/nsfw/gonewild.js -------------------------------------------------------------------------------- /commands/nsfw/lesbian.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/nsfw/lesbian.js -------------------------------------------------------------------------------- /commands/nsfw/milf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/nsfw/milf.js -------------------------------------------------------------------------------- /commands/nsfw/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/nsfw/module.json -------------------------------------------------------------------------------- /commands/nsfw/nsfwgif.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/nsfw/nsfwgif.js -------------------------------------------------------------------------------- /commands/nsfw/nsfwsnapchat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/nsfw/nsfwsnapchat.js -------------------------------------------------------------------------------- /commands/nsfw/pussy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/nsfw/pussy.js -------------------------------------------------------------------------------- /commands/nsfw/teen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/nsfw/teen.js -------------------------------------------------------------------------------- /commands/process/canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/process/canvas.js -------------------------------------------------------------------------------- /commands/process/devsay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/process/devsay.js -------------------------------------------------------------------------------- /commands/process/eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/process/eval.js -------------------------------------------------------------------------------- /commands/process/exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/process/exec.js -------------------------------------------------------------------------------- /commands/process/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/process/jquery.js -------------------------------------------------------------------------------- /commands/process/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/process/module.json -------------------------------------------------------------------------------- /commands/process/reload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/process/reload.js -------------------------------------------------------------------------------- /commands/process/snekfetch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/process/snekfetch.js -------------------------------------------------------------------------------- /commands/util/asciify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/util/asciify.js -------------------------------------------------------------------------------- /commands/util/docs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/util/docs.js -------------------------------------------------------------------------------- /commands/util/eslint-rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/util/eslint-rule.js -------------------------------------------------------------------------------- /commands/util/google.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/util/google.js -------------------------------------------------------------------------------- /commands/util/hex-to-int.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/util/hex-to-int.js -------------------------------------------------------------------------------- /commands/util/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/util/image.js -------------------------------------------------------------------------------- /commands/util/int-to-hex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/util/int-to-hex.js -------------------------------------------------------------------------------- /commands/util/jisho.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/util/jisho.js -------------------------------------------------------------------------------- /commands/util/mdn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/util/mdn.js -------------------------------------------------------------------------------- /commands/util/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/util/module.json -------------------------------------------------------------------------------- /commands/util/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/util/npm.js -------------------------------------------------------------------------------- /commands/util/stackoverflow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/util/stackoverflow.js -------------------------------------------------------------------------------- /commands/util/steam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/util/steam.js -------------------------------------------------------------------------------- /commands/util/weather.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/commands/util/weather.js -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/config.json -------------------------------------------------------------------------------- /events/error.js: -------------------------------------------------------------------------------- 1 | module.exports = (client, e) => { 2 | console.error(e); 3 | }; 4 | -------------------------------------------------------------------------------- /events/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/events/message.js -------------------------------------------------------------------------------- /events/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/events/ready.js -------------------------------------------------------------------------------- /events/warn.js: -------------------------------------------------------------------------------- 1 | module.exports = (client, w) => { 2 | console.warn(w); 3 | }; 4 | -------------------------------------------------------------------------------- /handle/YumekoClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/handle/YumekoClient.js -------------------------------------------------------------------------------- /handle/akinatorGame/Akinator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/handle/akinatorGame/Akinator.js -------------------------------------------------------------------------------- /handle/akinatorGame/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/handle/akinatorGame/client.js -------------------------------------------------------------------------------- /handle/akinatorGame/getSession.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/handle/akinatorGame/getSession.js -------------------------------------------------------------------------------- /handle/coliru.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/handle/coliru.js -------------------------------------------------------------------------------- /handle/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/handle/command.js -------------------------------------------------------------------------------- /handle/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/handle/events.js -------------------------------------------------------------------------------- /handle/linter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/handle/linter.js -------------------------------------------------------------------------------- /handle/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/handle/logger.js -------------------------------------------------------------------------------- /handle/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/handle/module.js -------------------------------------------------------------------------------- /handle/npMoe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/handle/npMoe.js -------------------------------------------------------------------------------- /handle/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/handle/util.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/server.js -------------------------------------------------------------------------------- /watch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SharifPoetra/yumeko/HEAD/watch.json --------------------------------------------------------------------------------