Skip to content

Commit

Permalink
Added almost all the items to the globals (#8)
Browse files Browse the repository at this point in the history
* Fix mob sprite sizing

* Create README.md

* Update README.md

Basic readme

* Update ReadME

* Added a billion globals

And adjusted sprites a bit

* Update README.md

adde install and requirements, some extra text

* Update README.md

used wrong thingamajiggy
  • Loading branch information
U2EZNeko authored Nov 1, 2023
1 parent 5f83263 commit 3856dec
Show file tree
Hide file tree
Showing 3 changed files with 293 additions and 83 deletions.
18 changes: 11 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,25 @@
# This is a dashboard written in Vue for PokeBotGen-3 (libmgba) by 40Cakes.
# This is a WIP Dashboard written in Vue for PokeBotGen-3 (libmgba) by 40Cakes.
## (https://github.com/40Cakes/pokebot-gen3)




# Preview
Multiple Instances work, trainer data and party info is fetched and displayed with the help of the bot's webhooks and PokeAPI. (the design is subject to change this is WIP)
Multiple Instances can be displayed at once, trainer data and party info is fetched and displayed with the help of the bot's webhooks and PokeAPI. (the design annd layout is subject to change this project is WIP)
![image](https://github.com/U2EZNeko/PokeDash/assets/20902663/b67f7331-7870-4e0b-bdde-d8aabd8d40e5)
![image](https://github.com/U2EZNeko/PokeDash/assets/20902663/fa6e6581-830d-41de-9fe7-d67fc1f9bca2)



# Requirements:
- NodeJS





# Install:
1. Git Clone the Repo
2. open CLI inside repo's main folder or CD to it.
3. run "npm install"
4. launch the script with "npm run dev"


# How to configure:
Expand All @@ -27,9 +31,9 @@ Multiple Instances work, trainer data and party info is fetched and displayed wi

## You can add default instances server-side by writing them into a .env like this:

### DEFAULT_INSTANCE_API_URLS="your.IP.goes.here:port1, your.IP.goes.here:port2"
#### DEFAULT_INSTANCE_API_URLS="your.IP.goes.here:port1, your.IP.goes.here:port2"
it should look like this:
### DEFAULT_INSTANCE_API_URLS="127.0.0.1:8888, 127.0.0.1:8889"
#### DEFAULT_INSTANCE_API_URLS="127.0.0.1:8888, 127.0.0.1:8889"


## To Do
Expand Down
2 changes: 1 addition & 1 deletion src/components/presets/card/PartyCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ const expandedInfoVisible: Ref<boolean[]> = ref([
!expandedInfoVisible[index] ||
viewport.isLessThan('full')
"
class="bg-light-primary dark:bg-dark-primary rounded-lg flex justify-center items-center w-full"
class="bg-light-primary dark:bg-dark-primary rounded-lg flex justify-center items-center w-full px-7 p-2"
>
<Spinner v-if="!store.pokemonSprites[pkmnRef(pokemon)]" />
<img
Expand Down
Loading

0 comments on commit 3856dec

Please sign in to comment.