snakeocean
TypeScript icon, indicating that this package has built-in type declarations

1.0.7 • Public • Published

Snakecord

You've heard of the famous Snake game, right? Well, this npm/yarn package allows you to create your own CUSTOM Snake games, directly inside Discord via Discord bots!

Installation

npm install snakecord
yarn add snakecord

Features

  • Easy to use
  • Clean and focused
  • Actively maintained

Example

const SnakeGame = require('snakecord');
const Discord = require("discord.js");
const client = new Discord.Client();

const snakeGame = new SnakeGame({
    title: 'Snake Game',
    color: "GREEN",
    timestamp: false,
    gameOverTitle: "Game Over"
});

const config = {
    token: "TOKEN",
    prefix: "t!"
}

client.on('ready', () => {
    console.log('Ready!');
    client.user.setActivity(`${config.prefix}help`);
});

client.on('message', message => {
    if(!message.content.startsWith(config.prefix) || message.author.bot) return;

    const args = message.content.slice(config.prefix.length).trim().split(/ +/);
    const command = args.shift().toLowerCase();

    if(command === 'test') {
        return message.channel.send('Test command works.');
    } else if(command === 'snake' || command === 'snakegame') {
        return snakeGame.newGame(message);
    } else if(command === 'help' || command === 'h') {
        const embed = new Discord.MessageEmbed()
            .setTitle("Help Menu")
            .addFields(
                { name: 'test', value: "Check the command handler", inline: true },
                { name: 'snake', value: "Play the snake game", inline: true },
                { name: 'help', value: "Show this list", inline: true }
            )
            .setColor('RANDOM')
            .setTimestamp();

        return message.channel.send(embed);
    }
});

client.login(config.token);

In Action

1

2

To-Do

  • Optimizations and more optimizations
  • Rewrite the whole thing in TypeScript
  • Add JSDocs for easier development
  • Add more features (including but not limited to)
    • Board size customizations
    • Server highscore tracking/leaderboards
    • Color customizations

Authors

Readme

Keywords

Package Sidebar

Install

npm i snakeocean

Weekly Downloads

2

Version

1.0.7

License

ISC

Unpacked Size

29.6 kB

Total Files

7

Last publish

Collaborators

  • lightdevs