mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-26 00:32:20 -05:00
This new code is responsible for packing the following archives: - `pl_personal` -> basic information for each species: stats, types, etc. - `evo` -> evolution lines for each species - `wotbl` -> by-level learnsets for each species - `ppark` -> catching show data for each species - `height` -> y-offsets for front and back sprites for each species - `pl_poke_data` -> sprite-rendering data for each species: animation ID, frame data, shadow size and offsets, etc. Additionally, the following headers are generated: - `res/pokemon/tutorable_moves.h` -> A listing of moves taught by each tutor and how much each move costs to be tutored - `res/pokemon/species_learnsets_by_tutor.h` -> An array of bitmasks for each species designating which moves can be tutored to that species
42 lines
1.0 KiB
JSON
42 lines
1.0 KiB
JSON
{
|
|
"name": "Bad Egg",
|
|
"base_stats": {
|
|
"hp": 10,
|
|
"attack": 10,
|
|
"defense": 10,
|
|
"speed": 10,
|
|
"special_attack": 10,
|
|
"special_defense": 10
|
|
},
|
|
"types": [ "TYPE_NORMAL", "TYPE_NORMAL" ],
|
|
"catch_rate": 3,
|
|
"base_exp_reward": 255,
|
|
"ev_yields": {
|
|
"hp": 0,
|
|
"attack": 0,
|
|
"defense": 0,
|
|
"speed": 0,
|
|
"special_attack": 0,
|
|
"special_defense": 0
|
|
},
|
|
"held_items": {
|
|
"common": "ITEM_NONE",
|
|
"rare": "ITEM_NONE"
|
|
},
|
|
"gender_ratio": "GENDER_RATIO_NO_GENDER",
|
|
"hatch_cycles": 120,
|
|
"base_friendship": 0,
|
|
"exp_rate": "EXP_RATE_SLOW",
|
|
"egg_groups": [ "EGG_GROUP_UNDISCOVERED", "EGG_GROUP_UNDISCOVERED" ],
|
|
"abilities": [ "ABILITY_NONE", "ABILITY_NONE" ],
|
|
"safari_flee_rate": 0,
|
|
"body_color": "MON_COLOR_EGG",
|
|
"flip_sprite": false,
|
|
"learnset": {
|
|
"by_level": [
|
|
[ 1, "MOVE_SPLASH" ]
|
|
],
|
|
"by_tm": [ ]
|
|
},
|
|
"evolutions": [ ]
|
|
} |