• Do not use Discord to host any images you post, these links expire quickly! You can learn how to add images to your posts here.
Resource icon

Resource Python Pokemon Sorter Script 1.69

SuperSpyroDragon64

Cooltrainer
Member
Joined
Apr 20, 2022
Posts
165
SuperSpyroDragon64 submitted a new resource:

Python Pokemon Sorter Script - Drag into PBS, run, and select a stat to see your Pokemon sorted!

I heard you like SORTING ALGORITHMS? Well, after making my Python Script to rebalance all Pokemon by automatically multiplying their stats with a multiplier cap of 1.5x and a BST cap of 600, I wanted to check which Pokemon have the highest stats, and which ones have the lowest. So I created this!

Just create a new text file in your PBS folder containing the following code.

Code:
Expand Collapse Copy
import pprint

def extract_characters(file_name):
    characters = []
    try:
        with open(file_name, 'r')...

Read more about this resource...
 
Back
Top