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

116 lines
2.8 KiB
JSON

{
"name": "Arcanine",
"base_stats": {
"hp": 90,
"attack": 110,
"defense": 80,
"speed": 95,
"special_attack": 100,
"special_defense": 80
},
"types": [ "TYPE_FIRE", "TYPE_FIRE" ],
"catch_rate": 75,
"base_exp_reward": 213,
"ev_yields": {
"hp": 0,
"attack": 2,
"defense": 0,
"speed": 0,
"special_attack": 0,
"special_defense": 0
},
"held_items": {
"common": "ITEM_RAWST_BERRY",
"rare": "ITEM_RAWST_BERRY"
},
"gender_ratio": "GENDER_RATIO_FEMALE_25",
"hatch_cycles": 20,
"base_friendship": 70,
"exp_rate": "EXP_RATE_SLOW",
"egg_groups": [ "EGG_GROUP_FIELD", "EGG_GROUP_FIELD" ],
"abilities": [ "ABILITY_INTIMIDATE", "ABILITY_FLASH_FIRE" ],
"safari_flee_rate": 0,
"body_color": "MON_COLOR_BROWN",
"flip_sprite": false,
"learnset": {
"by_level": [
[ 1, "MOVE_THUNDER_FANG" ],
[ 1, "MOVE_BITE" ],
[ 1, "MOVE_ROAR" ],
[ 1, "MOVE_FIRE_FANG" ],
[ 1, "MOVE_ODOR_SLEUTH" ],
[ 39, "MOVE_EXTREME_SPEED" ]
],
"by_tm": [
"TM05",
"TM06",
"TM10",
"TM11",
"TM15",
"TM17",
"TM21",
"TM22",
"TM23",
"TM27",
"TM28",
"TM32",
"TM35",
"TM38",
"TM40",
"TM42",
"TM43",
"TM44",
"TM45",
"TM46",
"TM50",
"TM58",
"TM59",
"TM61",
"TM68",
"TM78",
"TM82",
"TM83",
"TM87",
"TM90",
"HM04",
"HM06",
"HM08"
],
"by_tutor": [
"MOVE_MUD_SLAP",
"MOVE_IRON_HEAD",
"MOVE_SNORE",
"MOVE_HELPING_HAND",
"MOVE_HEAT_WAVE",
"MOVE_SWIFT"
]
},
"evolutions": [ ],
"footprint": {
"has": true,
"size": "FOOTPRINT_LARGE"
},
"pokedex_data": {
"height": 19,
"weight": 1550,
"body_shape": "SHAPE_QUADRUPED",
"trainer_scale_f": 342,
"pokemon_scale_f": 256,
"trainer_scale_m": 325,
"pokemon_scale_m": 256,
"trainer_pos_f": 16,
"pokemon_pos_f": 6,
"trainer_pos_m": 16,
"pokemon_pos_m": 6,
"entry_text": "Its proud and regal appearance\nhas captured the hearts of\npeople since long ago.",
"category": "Legendary Pokémon"
},
"catching_show": {
"pal_park_land_area": "PAL_PARK_AREA_LAND_SOUTH_WEST",
"pal_park_water_area": "PAL_PARK_AREA_WATER_NONE",
"catching_points": 80,
"rarity": 10,
"unused": 514
}
}