Skip to content

Commit

Permalink
Rainbow emojis for request-IDs!
Browse files Browse the repository at this point in the history
  • Loading branch information
benbierens committed Dec 5, 2024
1 parent 3e2cad3 commit b8476f6
Showing 1 changed file with 48 additions and 17 deletions.
65 changes: 48 additions & 17 deletions Tools/TestNetRewarder/EmojiMaps.cs
Original file line number Diff line number Diff line change
@@ -1,51 +1,82 @@
๏ปฟusing Utils;

namespace TestNetRewarder
๏ปฟnamespace TestNetRewarder
{
public class EmojiMaps
{
private readonly string[] emojis = new[]
{
// yellow
"๐Ÿ˜€",
"๐ŸŒป",
"๐Ÿ‹",
"๐Ÿง€",
"๐ŸŒ”",
"โญ",
"โšก",
"๐Ÿ†",
// red
"๐Ÿ’˜",
"โค",
"๐Ÿฆž",
"๐ŸŒน",
"๐Ÿ’",
"๐Ÿซ–", // teapot
"โ›ฉ",
"๐Ÿš—",
"๐Ÿ”ฅ",

// orange
"๐Ÿงก",
"๐Ÿ€",
"๐ŸฆŠ",
"๐Ÿต",
"๐ŸŠ",
"๐Ÿฅ•",
"๐Ÿงฑ",
"๐ŸŽƒ",

// yellow
"๐Ÿ’›",
"๐ŸŒป",
"๐Ÿ‹",
"๐Ÿง€",
"๐ŸŒ”",
"โญ",
"โšก",
"๐Ÿ†",

// green
"๐ŸŠ",
"๐Ÿ’š",
"๐ŸฆŽ",
"๐Ÿ›",
"๐ŸŒณ",
"๐Ÿ€",
"๐Ÿงฉ",
"๐Ÿ”‹",
"โ™ป",

// blue
"๐Ÿ’™",
"๐Ÿณ",
"๐ŸŸ",
"โ™‚",
"๐Ÿ‰",
"๐ŸงŠ",
"๐ŸŒ",
"โš“",
"๐ŸŒ€",

// purple
"๐Ÿ’œ",
"๐Ÿช€", //yo-yo
"๐Ÿ”ฎ",
"๐Ÿ˜ˆ",
"๐Ÿ‘พ",
"๐Ÿชป", // plant hyacinth
"๐Ÿ‡",
"๐Ÿ†",

// pink
"๐Ÿฉท", // pink heart
"๐Ÿ‘š",
"โ™€",
"๐Ÿง ",
"๐Ÿท",
"๐Ÿฆฉ",
"๐ŸŒธ",
"๐ŸŒท"
};

public string NewRequest => "๐ŸŸ";
public string Started => "๐Ÿฆˆ";
public string NewRequest => "๐ŸŒฑ";
public string Started => "๐ŸŒณ";
public string SlotFilled => "๐ŸŸข";
public string SlotFreed => "โญ•";
public string SlotReservationsFull => "โ˜‘๏ธ";
Expand Down

0 comments on commit b8476f6

Please sign in to comment.