Skip to content

Commit

Permalink
Update wavu logo
Browse files Browse the repository at this point in the history
  • Loading branch information
TLNBS2405 committed Feb 11, 2024
1 parent e87acc1 commit 0abc345
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/module/embed.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
from src.module import character

MOVE_NOT_FOUND_TITLE = 'Move not found'
WAVU_LOGO = "https://wavu.wiki/android-chrome-192x192.png"
SUCCESS_COLOR = discord.Colour.from_rgb(50, 168, 82)
WARNING_COLOR = discord.Colour.from_rgb(253, 218, 13)
ERROR_COLOR = discord.Colour.from_rgb(220, 20, 60)
Expand Down Expand Up @@ -62,12 +63,11 @@ def move_embed(character: character, move: dict):
)

embed.set_thumbnail(url=character.portrait[0])
embed.set_footer(text="Wavu.wiki", icon_url="https://wavu.wiki/android-chrome-192x192.png")
embed.set_footer(text="Wavu.wiki", icon_url=WAVU_LOGO)
embed.set_author(name=_upper_first_letter(character.name), url=character.wavu_page)

embed.add_field(name='Target', value=move['target'])
embed.add_field(name='Damage', value=move['damage'])

embed.add_field(name='Startup', value=move['startup'])

embed.add_field(name="Block", value=move['on_block'])
Expand Down

0 comments on commit 0abc345

Please sign in to comment.