Skip to content

Commit

Permalink
🔧 Update discord-rotten-soup: Version 1.0.1 - Update README, update a…
Browse files Browse the repository at this point in the history
…lch feature
  • Loading branch information
tarranprior committed Jun 11, 2022
1 parent 47a4889 commit 9c42192
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 5 deletions.
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,19 +97,21 @@ Preferably, you should use Poetry to run this bot for local development:
> <br /><br />
> <img src="https://github.com/tarranprior/discord-rotten-soup/blob/main/assets/demo2.png" />
> <br/><br/>
> Supports NPCs, followers and pets, skills etc.
> <br /><br />
> <img src="https://github.com/tarranprior/discord-rotten-soup/blob/main/assets/demo3.png" />
> <br/><br/>
> Supports NPCs, followers and pets, skills etc.
> <br /><br />
> <img src="https://github.com/tarranprior/discord-rotten-soup/blob/main/assets/demo4.png" />
> <br /><br />
> <img src="https://github.com/tarranprior/discord-rotten-soup/blob/main/assets/demo5.png" />
> <br/><br/>
> Fetches the latest price trends and uses data visualisation.
> <br /><br />
> <img src="https://github.com/tarranprior/discord-rotten-soup/blob/main/assets/demo6.png" />
> <br/><br/>
> Fetches the latest price trends and uses data visualisation.
> <br /><br />
> <img src="https://github.com/tarranprior/discord-rotten-soup/blob/main/assets/demo7.png" />
> <br /><br />
> <img src="https://github.com/tarranprior/discord-rotten-soup/blob/main/assets/demo8.png" />


## Support
Expand Down
Binary file added assets/apigraph.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/demo3.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/demo4.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/demo5.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/demo6.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified assets/demo7.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/demo8.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 3 additions & 1 deletion src/cogs/alch.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,11 @@ def alch_data(query: str):

embed = EmbedFactory().create(
title=f'{title} (ID: {item_id})',
description=f'**Value**: {value} • **Low alch**: {low_alch} • **High alch**: {high_alch}',
thumbnail_url=thumbnail_url
)
embed.add_field(name='Value', value=value, inline=True)
embed.add_field(name='High alch', value=high_alch, inline=True)
embed.add_field(name='Low alch', value=low_alch, inline=True)

return(embed)

Expand Down

0 comments on commit 9c42192

Please sign in to comment.