• 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.
  • The Eevee Expo Game Jam has concluded! 🎉 Head on over to the game jam forum to play through the games.
    Don't forget to come back September 21st to vote for your favorites!
  • Reminder: AI-generated content is not allowed on the forums per the Rules and Regulations. Please contact us if you have any questions!
Resource icon

Resource Python Instant Sorting SQL Script: The Sortable SQL Database Creator! 1.69

SuperSpyroDragon64

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

Python Instant Sorting SQL Script: The Sortable SQL Database Creator! - Sort your Pokemon by Ability, Base Stat, BST, Type, Name, and more!

Ever wanted to quickly sort your Pokemon by stat, type, ability, name, or base stat total? Then you need my Python Instant Sorting SQL Script!

Want to quickly create some Snowboarders and the Ice-type Gym Leader by writing Ice into the Types list (ensuring only Ice-types are displayed) and clicking the Attack column to sort it by highest attack to lowest attack?

Want to quickly create some Hikers and Miners and the Rock-type Gym Leader by writing Rock into the Types list (ensuring only...

Read more about this resource...
 
Out of curiousity, would this work for v20.1? Sounds like a great resource regardless however!
 
SuperSpyroDragon64 updated Python Instant Sorting SQL Script: The Sortable SQL Database Creator! with a new update entry:

NEW SCRIPT - BUGFIXED AND BETTER THAN EVER, includes Pokemon_Forms edition!

NEW SCRIPT - BUGFIXED AND BETTER THAN EVER, includes Pokemon_Forms edition!

Never again will this script unintentionally buff a Pokemon too much, making its BST over 600!

Code:
Expand Collapse Copy
filename = "pokemon.txt"
total_cap = 600  # new total cap
factor_cap = 1.5  # new factor cap
max_value = 255

def calculate_new_values(nums, total_cap, factor_cap):
    original_total = sum(nums)
    if original_total < total_cap:
        factor = min(total_cap / original_total, factor_cap)
        new_first_num =...

Read the rest of this update entry...
 
Back
Top