Newer
Older
Croma / src / main / java / com / jagrosh / vortex / Emoji.java
@Andrea Toska Andrea Toska on 13 Jul 2024 3 KB frye bot
/*
 * Copyright 2021 John Grosh (john.a.grosh@gmail.com).
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.jagrosh.vortex;

/**
 *
 * @author John Grosh (john.a.grosh@gmail.com)
 */
public class Emoji
{
    // vortex general icons
    public final static String VORTEX   = "<:frye:1253366756865740810>";
    public final static String SUCCESS  = "<:frye:1253366756865740810>";
    public final static String WARNING  = ":warning:";
    public final static String ERROR    = ":x:";
    public final static String LOADING  = "<a:typing:1252198443225710704>";
    
    // bot
    public final static String BOT          = "<:bot:850113743764717627>";
    public final static String BOT_VERIFIED = "<:botVerified:850113743760654397>";
    public final static String BOT_SYSTEM   = "<:botSystem:850113743488811031>";
    
    // badges
    public final static String BADGE_NITRO                = "<:badgeNitro:850113719702781953>";
    public final static String BADGE_BUG_HUNTER           = "<:badgeBugHunter:850113719652450315>";
    public final static String BADGE_EARLY_SUPPORTER      = "<:badgeEarlySupported:850113719634755624>";
    public final static String BADGE_HYPESQUAD            = "<:badgeHypesquad:850113719476027414>";
    public final static String BADGE_HYPESQUAD_BALANCE    = "<:badgeBalance:850113719400792065>";
    public final static String BADGE_HYPESQUAD_BRAVERY    = "<:badgeBravery:850113719526227969>";
    public final static String BADGE_HYPESQUAD_BRILLIANCE = "<:badgeBrilliance:850113719689412618>";
    public final static String BADGE_PARTNER              = "<:badgePartner:850113719752065054>";
    public final static String BADGE_STAFF                = "<:badgeStaff:850113719764910111>";
    public final static String BADGE_VERIFIED_DEVELOPER   = "<:badgeVerifiedDev:850113719559782401>";
    public final static String BADGE_CERTIFIED_MODERATOR  = "<:badgeModerator:850113719551918121>";
    
    // status
    public final static String STATUS_STREAMING      = "<:statusStreaming:850113664873922560>";
    public final static String STATUS_ONLINE         = "<:statusOnline:850113664694353941>";
    public final static String STATUS_IDLE           = "<:statusAway:850113664873660427>";
    public final static String STATUS_DO_NOT_DISTURB = "<:statusDND:850113664873660426>";
    public final static String STATUS_INVISIBLE      = "<:statusInvisible:850113664643891262>";
    public final static String STATUS_OFFLINE        = "<:statusOffline:850113664556204124>";
    
    // logs
    public final static String VOICE_JOIN   = "<:voicejoin:850102867687243796>";
    public final static String VOICE_LEAVE  = "<:voiceleave:850102867586056232>";
    public final static String VOICE_CHANGE = "<:voicechange:850102867250511903>";
    public final static String GIF_AVATAR   = "<:gif:850113698504507445>";
}