summaryrefslogtreecommitdiff
path: root/docs/help_embed_format.js
blob: 42210f80fd33219e96fcb7659d64b8e1062d0749 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
if (command == 'help') {
    if (!args.length) {
        let emb = new Discord.RichEmbed()

            .setDescription(`
                    **command list**\nlink not yet set lol\n\n**categories list:**\n\`s5n!help <commands category>\`\n\n**full list**\n\`y!commands\`\n\n*this doesn't even work, it's just here for future purposes lol*
                `)
            .setColor(0xF97DAE);

        msg.channel.send(RichEmbed = emb);
    } else if (args[0] == 'quotes' || args[0] == 'quote') {
        let emb = new Discord.RichEmbed()

            .setTitle('ships -> ship command: (server only)')
            .setThumbnail(`${msg.guild.iconURL}`)
            .setDescription(`Creates a bond between you and the user you tag. (if they accept)`)
            .addField('details', `Creates a bond between you and the user you tag. (if they accept)
@member: Creates a ship with a member if they accept.
sink: Sinks your ship. (unship)
view {@member}: View a ship, leave blank for your own or tag a member.
rename <string>: Renames your ship.
color <hexcode>: Changes the color of your ship.`, false)
            .addField(`format`, `\`y!ship [<member> | sink | view {<member> | rename <string> | color <hexcode>}]\``, true)
            .addField('examples', `\`y!ship @member\` - Asks @member if they want to create a ship with you
\`y!ship view @member\` - Views the ship of @member if they have one
\`y!ship rename LoveBoat\` - Renames your ship to 'LoveBoat'
\`y!ship color 0x1E1E1E\` - Changes your ship colour to '0x1E1E1E'
\`y!ship sink\` - Leaves your ship`, false)
            .setFooter('<> - required, | - either/or, {} - optional')
            .setColor(0xF97DAE);

        msg.channel.send(RichEmbed = emb);
    }
}