Skip to content

Commit

Permalink
feat(WIP): add Pride EasterEggs
Browse files Browse the repository at this point in the history
Signed-off-by: Next Alone <12210746+NextAlone@users.noreply.github.com>
  • Loading branch information
NextAlone committed Oct 17, 2023
1 parent 5baf326 commit 8ec9da8
Showing 1 changed file with 12 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ fun processSearchEasterEgg(text: String, context: Context) {
private val easterEggsMap by lazy {
hashMapOf(
arrayOf("\u26A7\uFE0F", "\uD83C\uDF65", "mtf", "mtx", "ftm", "ftx", "transgender") to forSuBanXia,
arrayOf("") to ("喵喵" to "喵喵喵")
arrayOf("") to ("喵喵" to "喵喵喵"),
arrayOf("lgbt", "lgbtq", "lgbtqia", "lgbtqia+", "lesbian", "gay", "bisexual", "queer") to forPride,
)
}

Expand All @@ -55,3 +56,13 @@ val forSuBanXia: Pair<String, String> = (String(Base64.decode("Rm9yIHVzIA==", Ba
Base64.CRLF
)
))

val forPride: Pair<String, String> = (
String(Base64.decode("Rm9yIFByaWRlIA==", Base64.DEFAULT)) + "\uF3F3\uFE0F\u200D\uF308" to
String(
Base64.decode(
"TG92ZSBpcyBsb3ZlLiBGcm9tIGxvdmVseSBOZXh0QWxvbmUsIHdpdGggbG92ZS4=",
Base64.CRLF,
),
)
)

0 comments on commit 8ec9da8

Please sign in to comment.