pokeplatinum/res/pokemon/bad_egg/data.json
Rachel 2c410b8046 Replace python scripts for packing species archives with C++
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
2025-01-21 22:46:39 -08:00

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": [ ]
}