Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more emojis for items #315

Merged
merged 3 commits into from
Aug 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 16 additions & 3 deletions common/data/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -1539,6 +1539,9 @@
"heart_of_the_sea": "<:heart_of_the_sea:832282916385980427>",
"autistic_emerald": "<:mooderald:837702695245840465>",
"present": "🎁",
"haste_i_potion": "<:haste_i_potion:1265989012053823603>",
"haste_ii_potion": "<a:Haste_II_Potion:1265989014234861628>",
"luck_potion": "<:luck_potion:1266002325202534400>",
"morbius": "<:morbing:983219815911129128>",
"glass_bottle": "<:glass_bottle:837717502141268028>",
"wood_sword": "<:wood_sword:924520895635144745>",
Expand Down Expand Up @@ -1658,6 +1661,11 @@
"splendid_robes": "<:splendid_robes:1262745085288648764>",
"satchel_of_elements": "<:satchel_of_elements:1262771945020194867>",
"dark_rooted_robes": "<:dark_rooted_robes:1262772143146663968>",
"laser_assault_rifle": "<:laser_assault_rifle:1265397762564821002>",
"leftover_party_confetti": "<:leftover_party_confetti:1265399444183187507>",
"rona_vaccine": "<:rona_vaccine:1265399888758440087>",
"rainbow_sparkles_easter_egg": "<a:rainbow_sparkles_easter_egg:1265989015631302666>",
"party_popper": "🎉",
"bopa": "<:bopa:1261478828690247710>",
"farming": {
"growing": {
Expand Down Expand Up @@ -1812,10 +1820,10 @@
"Sharpness II Book": "enchanted_book",
"Lure I Book": "enchanted_book",
"Present": "present",
"Haste I Potion": "glass_bottle",
"Haste II Potion": "glass_bottle",
"Haste I Potion": "haste_i_potion",
"Haste II Potion": "haste_ii_potion",
"Vault Potion": "glass_bottle",
"Luck Potion": "glass_bottle",
"Luck Potion": "luck_potion",
"Wood Sword": "wood_sword",
"Stone Sword": "stone_sword",
"Iron Sword": "iron_sword",
Expand Down Expand Up @@ -1940,6 +1948,11 @@
"Satchel Of Elements": "satchel_of_elements",
"Dark Rooted Robes": "dark_rooted_robes",
"Pumpkin": "pumpkin",
"Laser Assault Rifle": "laser_assault_rifle",
"Leftover Party Confetti": "leftover_party_confetti",
"Rona Vaccine": "rona_vaccine",
"Rainbow Sparkles Easter Egg": "rainbow_sparkles_easter_egg",
"Party Popper": "party_popper",
"Bane Of Pillagers Amulet": "bopa"
},
"farming": {
Expand Down
8 changes: 8 additions & 0 deletions common/models/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,9 @@ class ProgressBarSetEmojis(ImmutableBaseModel):
heart_of_the_sea: str
autistic_emerald: str
present: str
haste_i_potion: str
haste_ii_potion: str
luck_potion: str
morbius: str
glass_bottle: str
wood_sword: str
Expand Down Expand Up @@ -268,6 +271,11 @@ class ProgressBarSetEmojis(ImmutableBaseModel):
splendid_robes: str
satchel_of_elements: str
dark_rooted_robes: str
laser_assault_rifle: str
leftover_party_confetti: str
rona_vaccine: str
rainbow_sparkles_easter_egg: str
party_popper: str
bopa: str
pumpkin: str
farming: FarmingEmojis
Expand Down
Loading