Search in sources :

Example 1 with TextActionCmd

use of net.kodehawa.mantarobot.commands.action.TextActionCmd in project MantaroBot by Mantaro.

the class ActionCmds method register.

@Command
public static void register(CommandRegistry cr) {
    //pat();
    cr.register("pat", new ImageActionCmd("Pat", "Pats the specified user.", Color.PINK, "pat.gif", EmoteReference.TALKING + "%s you have been patted by %s", PATS.get(), "Aww, I see you are lonely, take a pat <3"));
    //hug();
    cr.register("hug", new ImageActionCmd("Hug", "Hugs the specified user.", Color.PINK, "hug.gif", EmoteReference.TALKING + "%s you have been hugged by %s", HUGS.get(), "Aww, I see you are lonely, take a hug <3"));
    //kiss();
    cr.register("kiss", new ImageActionCmd("Kiss", "Kisses the specified user.", Color.PINK, "kiss.gif", EmoteReference.TALKING + "%s you have been kissed by %s", KISSES.get(), "Aww, I see you are lonely, *kisses*"));
    //poke();
    cr.register("poke", new ImageActionCmd("Poke", "Pokes the specified user.", Color.PINK, "poke.gif", EmoteReference.TALKING + "%s you have been poked by %s :eyes:", POKES.get(), "Aww, I see you are lonely, *pokes you*"));
    //slap();
    cr.register("slap", new ImageActionCmd("Slap", "Slaps the specified user ;).", Color.PINK, "slap.gif", EmoteReference.TALKING + "%s you have been slapped by %s!", SLAPS.get(), "Hmm, why do you want this? Uh, I guess... *slaps you*"));
    //bite();
    cr.register("bite", new ImageActionCmd("Bite", "Bites the specified user.", Color.PINK, "bite.gif", EmoteReference.TALKING + "%s you have been bitten by %s :eyes:", BITES.get(), "*bites you*"));
    //tickle();
    cr.register("tickle", new ImageActionCmd("Tickle", "Tickles the specified user.", Color.PINK, "tickle.gif", EmoteReference.JOY + "%s you have been tickled by %s", TICKLES.get(), "*tickles you*"));
    //highfive();
    cr.register("highfive", new ImageActionCmd("Highfive", "Highfives with the specified user.", Color.PINK, "highfive.gif", EmoteReference.TALKING + "%s highfives %s :heart:", HIGHFIVES.get(), "*highfives*", true));
    //pout();
    cr.register("pout", new ImageActionCmd("Pout", "Pouts at the specified user.", Color.PINK, "pout.gif", EmoteReference.TALKING + "%s pouts at %s *hmph*", POUTS.get(), "*pouts*, **hmph**", true));
    //greet();
    cr.register("greet", new TextActionCmd("Greet", "Sends a random greeting", Color.DARK_GRAY, EmoteReference.TALKING + "%s", GREETINGS.get()));
    //tsundere();
    cr.register("tsundere", new TextActionCmd("Tsundere Command", "Y-You baka!", Color.PINK, EmoteReference.MEGA + "%s", TSUNDERE.get()));
}
Also used : ImageActionCmd(net.kodehawa.mantarobot.commands.action.ImageActionCmd) TextActionCmd(net.kodehawa.mantarobot.commands.action.TextActionCmd) SimpleCommand(net.kodehawa.mantarobot.modules.commands.SimpleCommand) Command(net.kodehawa.mantarobot.modules.Command)

Aggregations

ImageActionCmd (net.kodehawa.mantarobot.commands.action.ImageActionCmd)1 TextActionCmd (net.kodehawa.mantarobot.commands.action.TextActionCmd)1 Command (net.kodehawa.mantarobot.modules.Command)1 SimpleCommand (net.kodehawa.mantarobot.modules.commands.SimpleCommand)1