From 90cb238b2524b5cc6649494b49683fad06a5997b Mon Sep 17 00:00:00 2001 From: Poddster Date: Wed, 2 Apr 2025 18:24:14 +0100 Subject: [PATCH] =?UTF-8?q?Resort=20emoji=20table,=20added=20=F0=9F=91=91?= =?UTF-8?q?=E2=9A=93=E2=9B=B5=F0=9F=8F=A1=F0=9F=9B=A1=EF=B8=8F=F0=9F=8E=AF?= =?UTF-8?q?=F0=9F=90=94=F0=9F=A4=8C,=20removed=20=E2=9D=8C=F0=9F=A4=99=20(?= =?UTF-8?q?#400)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Description: I found the old emoji table hard to use in the heat of combat, so I: 1. Reordered it, focusing on putting the arrows in a logical orientation, and each other emoji in some kind of cohesive group. 2. Replace a duplicated 😭 with 👑, useful for telling the idiots attacking you to instead attack the crown, otherwise you'd both dead. 3. Added ⚓⛵🏡🛡️🎯 as I thought they would be useful for mocking/hinting to other payers about ports/warships/cities/defence posts, despite making the table one line longer. The target was mainly added to put something in the middle of the new arrow keypad-layout. 4. Replaced ❌🤙 with 🐔🤌. I feel 👍👎 already does what ❌ does, so remove it to make space for something else: another insult (🐔). I've never seen 'call me' (🤙) used in-game, or even know what it means in the context of the game. But chef's kiss 🤌 is meme-worthy and fun to send to other players. old: ![Image](https://github.com/user-attachments/assets/75816197-8d5e-4aee-989f-94207f9ab3ec) new: ![Image](https://github.com/user-attachments/assets/5fd14788-dc16-4744-ab4e-7b3942ad8694) See #399 I've given this a try and I find it much easier to locate and send the kind of emoji I want. The only real oddity are the hearts being all the way down there. But they weren't even together last time, so it's still an improvement. ## Please complete the following: - [✅] I have added screenshots for all UI updates - [✅] I confirm I have thoroughly tested these changes and take full responsibility for any bugs introduced - [✅] I understand that submitting code with bugs that could have been caught through manual testing blocks releases and new features for all contributors ## Please put your Discord username so you can be contacted if a bug or regression is found: `poddster` aka `Pod#7003` in the old system --- src/client/graphics/layers/EmojiTable.ts | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/src/client/graphics/layers/EmojiTable.ts b/src/client/graphics/layers/EmojiTable.ts index c1bd6991b..06edeecb0 100644 --- a/src/client/graphics/layers/EmojiTable.ts +++ b/src/client/graphics/layers/EmojiTable.ts @@ -2,16 +2,17 @@ import { LitElement, css, html } from "lit"; import { customElement, state } from "lit/decorators.js"; const emojiTable: string[][] = [ - ["😀", "😱", "🤡", "😡", "🥺"], - ["😈", "👏", "🥉", "🥈", "🥇"], - ["🤙", "🥰", "😇", "😊", "🔥"], - ["💪", "🏳️", "💀", "😭", "🫡"], - ["🤦‍♂️", "👎", "👍", "🥱", "💔"], - ["😎", "❤️", "💰", "🤝", "🖕"], - ["💥", "🆘", "🕊️", "➡️", "⬅️"], - ["↙️", "↖️", "↗️", "⬆️", "↘️"], - ["⬇️", "❓", "⏳", "☢️", "⚠️"], - ["😭", "😞", "👋", "🐀", "❌"], + ["😀", "😊", "🥰", "😇", "😎"], + ["😞", "🥺", "😭", "😱", "😡"], + ["😈", "🤡", "🖕", "🥱", "🤦‍♂️"], + ["👋", "👏", "🤌", "💪", "🫡"], + ["👍", "👎", "❓", "🐔", "🐀"], + ["🤝", "🆘", "🕊️", "🏳️", "⏳"], + ["🔥", "💥", "💀", "☢️", "⚠️"], + ["↖️", "⬆️", "↗️", "👑", "🥇"], + ["⬅️", "🎯", "➡️", "🥈", "🥉"], + ["↙️", "⬇️", "↘️", "❤️", "💔"], + ["💰", "⚓", "⛵", "🏡", "🛡️"], ]; @customElement("emoji-table")