From 7923aa8942b55884320ef2428417e3ee4b121613 Mon Sep 17 00:00:00 2001 From: Minteck Date: Mon, 28 Nov 2022 17:31:34 +0100 Subject: Initial commit --- Components/ShowMisty/index.js | 30 ++++++++++++++++++++++++++++++ Components/ShowMisty/metadata.yml | 22 ++++++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 Components/ShowMisty/index.js create mode 100644 Components/ShowMisty/metadata.yml (limited to 'Components/ShowMisty') diff --git a/Components/ShowMisty/index.js b/Components/ShowMisty/index.js new file mode 100644 index 0000000..2078a46 --- /dev/null +++ b/Components/ShowMisty/index.js @@ -0,0 +1,30 @@ +const chalk = require(__dirname + '/../../MistyCore/node_modules/chalk'); +const fs = require("fs"); + +module.exports = () => { + process.stdout.write("\n "); + process.stdout.write(chalk.blue("██")); + process.stdout.write(chalk.yellow("██")); + process.stdout.write(" \n "); + process.stdout.write(chalk.yellow("██")); + process.stdout.write(chalk.cyan("██")); + process.stdout.write(" \n "); + process.stdout.write(chalk.yellow("██")); + process.stdout.write(" "); + process.stdout.write(chalk.blue("██")); + process.stdout.write(chalk.cyan("██")); + process.stdout.write(chalk.cyan("██")); + process.stdout.write(" \n "); + process.stdout.write(chalk.blue("██")); + process.stdout.write(" "); + process.stdout.write(chalk.cyan("██")); + process.stdout.write(chalk.cyan("██")); + process.stdout.write(chalk.cyan("██")); + process.stdout.write(" \n "); + process.stdout.write(chalk.yellow("██")); + process.stdout.write(" "); + process.stdout.write(chalk.cyan("██")); + process.stdout.write(" "); + process.stdout.write(chalk.cyan("██")); + process.stdout.write(" \n\n"); +} \ No newline at end of file diff --git a/Components/ShowMisty/metadata.yml b/Components/ShowMisty/metadata.yml new file mode 100644 index 0000000..e4d4266 --- /dev/null +++ b/Components/ShowMisty/metadata.yml @@ -0,0 +1,22 @@ +description: Shows a Misty ASCII art +internal: true + +aliases: + - misty + - brightdawn + - mistybrightdawn + - mlp + +manual: + summary: | + This command shows a Misty ASCII art on the console. Yes, that's literally it. + + parameters: [] + + final: null + + examples: [] + + compatibility: + mistyos: '>=1.0.0' + kernel: '>=5.10.0' \ No newline at end of file -- cgit