pokeplatinum/res/pokemon/aron/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

138 lines
3.5 KiB
JSON

{
"name": "Aron",
"base_stats": {
"hp": 50,
"attack": 70,
"defense": 100,
"speed": 30,
"special_attack": 40,
"special_defense": 40
},
"types": [ "TYPE_STEEL", "TYPE_ROCK" ],
"catch_rate": 180,
"base_exp_reward": 96,
"ev_yields": {
"hp": 0,
"attack": 0,
"defense": 1,
"speed": 0,
"special_attack": 0,
"special_defense": 0
},
"held_items": {
"common": "ITEM_NONE",
"rare": "ITEM_HARD_STONE"
},
"gender_ratio": "GENDER_RATIO_FEMALE_50",
"hatch_cycles": 35,
"base_friendship": 35,
"exp_rate": "EXP_RATE_SLOW",
"egg_groups": [ "EGG_GROUP_MONSTER", "EGG_GROUP_MONSTER" ],
"abilities": [ "ABILITY_STURDY", "ABILITY_ROCK_HEAD" ],
"safari_flee_rate": 0,
"body_color": "MON_COLOR_GRAY",
"flip_sprite": false,
"learnset": {
"by_level": [
[ 1, "MOVE_TACKLE" ],
[ 4, "MOVE_HARDEN" ],
[ 8, "MOVE_MUD_SLAP" ],
[ 11, "MOVE_HEADBUTT" ],
[ 15, "MOVE_METAL_CLAW" ],
[ 18, "MOVE_IRON_DEFENSE" ],
[ 22, "MOVE_ROAR" ],
[ 25, "MOVE_TAKE_DOWN" ],
[ 29, "MOVE_IRON_HEAD" ],
[ 32, "MOVE_PROTECT" ],
[ 36, "MOVE_METAL_SOUND" ],
[ 39, "MOVE_IRON_TAIL" ],
[ 43, "MOVE_DOUBLE_EDGE" ],
[ 46, "MOVE_METAL_BURST" ]
],
"by_tm": [
"TM03",
"TM05",
"TM06",
"TM10",
"TM11",
"TM17",
"TM18",
"TM21",
"TM23",
"TM26",
"TM27",
"TM28",
"TM32",
"TM34",
"TM37",
"TM39",
"TM40",
"TM42",
"TM43",
"TM44",
"TM45",
"TM58",
"TM65",
"TM69",
"TM76",
"TM78",
"TM80",
"TM82",
"TM83",
"TM87",
"TM90",
"HM01",
"HM04",
"HM06"
],
"by_tutor": [
"MOVE_MUD_SLAP",
"MOVE_FURY_CUTTER",
"MOVE_ROLLOUT",
"MOVE_SUPERPOWER",
"MOVE_IRON_HEAD",
"MOVE_SNORE",
"MOVE_SPITE",
"MOVE_ENDEAVOR",
"MOVE_ANCIENT_POWER",
"MOVE_EARTH_POWER",
"MOVE_IRON_DEFENSE",
"MOVE_MAGNET_RISE",
"MOVE_UPROAR"
]
},
"evolutions": [
[
"EVO_LEVEL",
32,
"SPECIES_LAIRON"
]
],
"footprint": {
"has": true,
"size": "FOOTPRINT_MEDIUM"
},
"pokedex_data": {
"height": 4,
"weight": 600,
"body_shape": "SHAPE_QUADRUPED",
"trainer_scale_f": 272,
"pokemon_scale_f": 329,
"trainer_scale_m": 256,
"pokemon_scale_m": 329,
"trainer_pos_f": 8,
"pokemon_pos_f": 25,
"trainer_pos_m": 9,
"pokemon_pos_m": 25,
"entry_text": "It usually lives deep in mountains.\nHowever, hunger may drive it to\neat railroad tracks and cars.",
"category": "Iron Armor Pokémon"
},
"catching_show": {
"pal_park_land_area": "PAL_PARK_AREA_LAND_NORTH_EAST",
"pal_park_water_area": "PAL_PARK_AREA_WATER_NONE",
"catching_points": 50,
"rarity": 30,
"unused": 2830
}
}