alphabatizing lists
This commit is contained in:
parent
803ccf4bb6
commit
68b69f1634
@ -65,15 +65,15 @@ class PalWorld(commands.Cog):
|
|||||||
|
|
||||||
# https://discordpy.readthedocs.io/en/latest/api.html?highlight=colour#discord.Colour
|
# https://discordpy.readthedocs.io/en/latest/api.html?highlight=colour#discord.Colour
|
||||||
color_lookup = {
|
color_lookup = {
|
||||||
|
"Dark": discord.Color.dark_purple(),
|
||||||
|
"Dragon": discord.Color.purple(),
|
||||||
|
"Earth": discord.Color.greyple(),
|
||||||
|
"Electricity": discord.Color.yellow(),
|
||||||
"Fire": discord.Color.red(),
|
"Fire": discord.Color.red(),
|
||||||
"Grass": discord.Color.green(),
|
"Grass": discord.Color.green(),
|
||||||
"Earth": discord.Color.greyple(),
|
|
||||||
"Water": discord.Color.dark_blue(),
|
|
||||||
"Ice": discord.Color.blue(),
|
"Ice": discord.Color.blue(),
|
||||||
"Dragon": discord.Color.purple(),
|
|
||||||
"Normal": discord.Color.lighter_grey(),
|
"Normal": discord.Color.lighter_grey(),
|
||||||
"Electricity": discord.Color.yellow(),
|
"Water": discord.Color.dark_blue(),
|
||||||
"Dark": discord.Color.dark_purple(),
|
|
||||||
}
|
}
|
||||||
|
|
||||||
embed = discord.Embed(
|
embed = discord.Embed(
|
||||||
@ -102,19 +102,18 @@ class PalWorld(commands.Cog):
|
|||||||
|
|
||||||
# work skills
|
# work skills
|
||||||
skills_emojis = {
|
skills_emojis = {
|
||||||
"Kindling": "🔥",
|
"Cooling": "❄️",
|
||||||
"Watering": "💦",
|
"Farming": "🚜",
|
||||||
"Planting": "🌱",
|
"Gathering": "🍃",
|
||||||
"Generating Electricity": "⚡️",
|
"Generating Electricity": "⚡️",
|
||||||
"Handwork": "🤚",
|
"Handwork": "🤚",
|
||||||
"Gathering": "🍃",
|
"Kindling": "🔥",
|
||||||
"Lumbering": "🪵",
|
"Lumbering": "🪵",
|
||||||
"Mining": "⛏️",
|
|
||||||
"Medicine Production": "💉",
|
"Medicine Production": "💉",
|
||||||
"Cooling": "❄️",
|
"Mining": "⛏️",
|
||||||
|
"Planting": "🌱",
|
||||||
"Transporting": "📦",
|
"Transporting": "📦",
|
||||||
"Farming": "🚜",
|
"Watering": "💦",
|
||||||
"Normal": "😐",
|
|
||||||
}
|
}
|
||||||
|
|
||||||
specialties = soup.find("div", class_="grid grid-cols-2 grid-rows-6 gap-2")
|
specialties = soup.find("div", class_="grid grid-cols-2 grid-rows-6 gap-2")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user