Maker Format: MV
Description:
Hiya. First of all I would like to say that I am not sure where this topic belongs, so I put it here. Move it if it belongs somewhere else. ^^
We are making a custom Gen VII Pokémon engine for RPG Maker MV that doesn't necessarily implement Trainers and which uses as few plugins as possible in order to make it more stable and to make it easier for others to use and to modify. As such, the Classes (which are Pokémon species) will each have their Parameter Curves for each level baked right into the Classes database page in the normal RPG Maker way (instead of using an external table called by a plugin, which is the way the Crystal Engine works).
So all I am requesting is a practically default Classes.json but with completely filled Parameter Curves for the first 802 Pokémon in order of National Dex (ID 1 = Bulbasaur, ID 2 = Ivysaur, etc.). It actually should be pretty easy to automatically generate this Classes.json with software as long as we can extract the base stats, such as those from the Bulbapedia page (https://bulbapedia.bulbagarden.net/wiki/List_of_Pokémon_by_base_stats_(Generation_VII-present). Then all we need to do to fill out the database is a simple calculation:
For each level gained (ignoring Nature), stats will increase by 1/50 the base stat value. The stat is rounded down if the result is a decimal. Shedinja's HP is always 1.
Here is a sample of Classes.json with ID 1's (Bulbasaur's) HP already filled out by hand:
{"id":1, ... "name":"Bulbasaur","note":"","params":[[0,12,14,16,18,21,23,25,27,29,32,34,36,38,40,43,45,47,49,51,54,56,58,60,63,65,67,69,71,74,76,78,80,82,85,87,89,91,93,96,98,100,102,105,107,109,111,113,116,118,120,124,126,129,131,133,135,138,140,142,144,147,149,151,153,156,158,160,162,164,167,169,171,173,176,178,180,182,185,187,189,191,194,196,198,200,202,205,207,209,211,214,216,218,220,223,225,227,229,231] ...
So just seeing the Classes.json file should show you how the rest of it should look.
Lastly, in our Parameter Curves, stats for Max MP and Luck will be 9999 and 1 respectively. The Classes.json can be "default", outside of that-- you don't even need to list the Class names (which will be the Pokémon species) if you don't want to. Also, ignore Nature, EVs, and IVs if you know about them. Natures will be handled by States.
Thanks a bunch!