mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-26 08:41:27 -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
130 lines
3.1 KiB
JSON
130 lines
3.1 KiB
JSON
{
|
|
"name": "Abra",
|
|
"base_stats": {
|
|
"hp": 25,
|
|
"attack": 20,
|
|
"defense": 15,
|
|
"speed": 90,
|
|
"special_attack": 105,
|
|
"special_defense": 55
|
|
},
|
|
"types": [ "TYPE_PSYCHIC", "TYPE_PSYCHIC" ],
|
|
"catch_rate": 200,
|
|
"base_exp_reward": 75,
|
|
"ev_yields": {
|
|
"hp": 0,
|
|
"attack": 0,
|
|
"defense": 0,
|
|
"speed": 0,
|
|
"special_attack": 1,
|
|
"special_defense": 0
|
|
},
|
|
"held_items": {
|
|
"common": "ITEM_NONE",
|
|
"rare": "ITEM_TWISTEDSPOON"
|
|
},
|
|
"gender_ratio": "GENDER_RATIO_FEMALE_25",
|
|
"hatch_cycles": 20,
|
|
"base_friendship": 70,
|
|
"exp_rate": "EXP_RATE_MEDIUM_SLOW",
|
|
"egg_groups": [ "EGG_GROUP_HUMAN_LIKE", "EGG_GROUP_HUMAN_LIKE" ],
|
|
"abilities": [ "ABILITY_SYNCHRONIZE", "ABILITY_INNER_FOCUS" ],
|
|
"safari_flee_rate": 0,
|
|
"body_color": "MON_COLOR_BROWN",
|
|
"flip_sprite": false,
|
|
"learnset": {
|
|
"by_level": [
|
|
[ 1, "MOVE_TELEPORT" ]
|
|
],
|
|
"by_tm": [
|
|
"TM01",
|
|
"TM04",
|
|
"TM06",
|
|
"TM10",
|
|
"TM11",
|
|
"TM12",
|
|
"TM16",
|
|
"TM17",
|
|
"TM18",
|
|
"TM20",
|
|
"TM21",
|
|
"TM23",
|
|
"TM27",
|
|
"TM29",
|
|
"TM30",
|
|
"TM32",
|
|
"TM33",
|
|
"TM34",
|
|
"TM41",
|
|
"TM42",
|
|
"TM43",
|
|
"TM44",
|
|
"TM45",
|
|
"TM46",
|
|
"TM48",
|
|
"TM49",
|
|
"TM53",
|
|
"TM56",
|
|
"TM57",
|
|
"TM58",
|
|
"TM60",
|
|
"TM63",
|
|
"TM67",
|
|
"TM70",
|
|
"TM73",
|
|
"TM77",
|
|
"TM78",
|
|
"TM82",
|
|
"TM83",
|
|
"TM85",
|
|
"TM86",
|
|
"TM87",
|
|
"TM90",
|
|
"TM92"
|
|
],
|
|
"by_tutor": [
|
|
"MOVE_THUNDER_PUNCH",
|
|
"MOVE_FIRE_PUNCH",
|
|
"MOVE_ICE_PUNCH",
|
|
"MOVE_SNORE",
|
|
"MOVE_SIGNAL_BEAM",
|
|
"MOVE_ZEN_HEADBUTT",
|
|
"MOVE_TRICK",
|
|
"MOVE_KNOCK_OFF"
|
|
]
|
|
},
|
|
"evolutions": [
|
|
[
|
|
"EVO_LEVEL",
|
|
16,
|
|
"SPECIES_KADABRA"
|
|
]
|
|
],
|
|
"footprint": {
|
|
"has": true,
|
|
"size": "FOOTPRINT_MEDIUM"
|
|
},
|
|
"pokedex_data": {
|
|
"height": 9,
|
|
"weight": 195,
|
|
"body_shape": "SHAPE_BIPEDAL_TAILED",
|
|
"trainer_scale_f": 272,
|
|
"pokemon_scale_f": 364,
|
|
"trainer_scale_m": 256,
|
|
"pokemon_scale_m": 364,
|
|
"trainer_pos_f": 8,
|
|
"pokemon_pos_f": 25,
|
|
"trainer_pos_m": 9,
|
|
"pokemon_pos_m": 25,
|
|
"entry_text": "Using its psychic power is such a\nstrain on its brain that it needs\nto sleep for 18 hours a day.",
|
|
"category": "Psi 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": 50,
|
|
"rarity": 30,
|
|
"unused": 2570
|
|
}
|
|
}
|