diff --git a/README.md b/README.md index d2b3367..f0e8b44 100644 --- a/README.md +++ b/README.md @@ -97,19 +97,21 @@ Preferably, you should use Poetry to run this bot for local development: >

> >

-> Supports NPCs, followers and pets, skills etc. ->

> +>

+> Supports NPCs, followers and pets, skills etc. >

> >

> ->

-> Fetches the latest price trends and uses data visualisation. >

> +>

+> Fetches the latest price trends and uses data visualisation. >

> +>

+> ## Support diff --git a/assets/apigraph.png b/assets/apigraph.png new file mode 100644 index 0000000..36f5b1f Binary files /dev/null and b/assets/apigraph.png differ diff --git a/assets/demo3.png b/assets/demo3.png index 24ef7ec..ed67a2b 100644 Binary files a/assets/demo3.png and b/assets/demo3.png differ diff --git a/assets/demo4.png b/assets/demo4.png index bbed033..24ef7ec 100644 Binary files a/assets/demo4.png and b/assets/demo4.png differ diff --git a/assets/demo5.png b/assets/demo5.png index 12b43db..bbed033 100644 Binary files a/assets/demo5.png and b/assets/demo5.png differ diff --git a/assets/demo6.png b/assets/demo6.png index fefd155..12b43db 100644 Binary files a/assets/demo6.png and b/assets/demo6.png differ diff --git a/assets/demo7.png b/assets/demo7.png index c307f90..fefd155 100644 Binary files a/assets/demo7.png and b/assets/demo7.png differ diff --git a/assets/demo8.png b/assets/demo8.png new file mode 100644 index 0000000..c307f90 Binary files /dev/null and b/assets/demo8.png differ diff --git a/src/cogs/alch.py b/src/cogs/alch.py index af414c8..b89894c 100644 --- a/src/cogs/alch.py +++ b/src/cogs/alch.py @@ -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)