Jump to content

BlackShark

Contributor
  • Posts

    1681
  • Joined

  • Days Won

    99

BlackShark last won the day on October 20

BlackShark had the most liked content!

Reputation

765 Excellent

General

  • Gender
    Male

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. You can ignore the error, wait for the next stable release of PKHeX or use the dev build until then.
  2. PKHeX doesn't have the data for them. Only a few event Pokemon have been serialized for Gen 2, the others would have to be added to this list https://github.com/kwsch/PKHeX.EncounterSlotDumper/blob/master/Resources/gen2/event2.csv
  3. The linked array was for the males, the females are right below. Here are both arrays with actual values instead of constants. private static readonly byte[] MaleTrainerTowerClasses = [ 0x0E, // FACILITY_CLASS_RUIN_MANIAC 0x11, // FACILITY_CLASS_TUBER_M 0x03, // FACILITY_CLASS_COOLTRAINER_M 0x15, // FACILITY_CLASS_RICH_BOY 0x17, // FACILITY_CLASS_POKEMANIAC 0x07, // FACILITY_CLASS_SWIMMER_M 0x0A, // FACILITY_CLASS_BLACK_BELT 0x19, // FACILITY_CLASS_GUITARIST 0x1A, // FACILITY_CLASS_KINDLER 0x1B, // FACILITY_CLASS_CAMPER 0x1D, // FACILITY_CLASS_BUG_MANIAC 0x1E, // FACILITY_CLASS_PSYCHIC_M 0x20, // FACILITY_CLASS_GENTLEMAN 0x26, // FACILITY_CLASS_SCHOOL_KID_M 0x29, // FACILITY_CLASS_POKEFAN_M 0x09, // FACILITY_CLASS_EXPERT_M 0x2B, // FACILITY_CLASS_YOUNGSTER 0x2D, // FACILITY_CLASS_FISHERMAN 0x2E, // FACILITY_CLASS_CYCLING_TRIATHLETE_M 0x30, // FACILITY_CLASS_RUNNING_TRIATHLETE_M 0x32, // FACILITY_CLASS_SWIMMING_TRIATHLETE_M 0x34, // FACILITY_CLASS_DRAGON_TAMER 0x04, // FACILITY_CLASS_BIRD_KEEPER 0x35, // FACILITY_CLASS_NINJA_BOY 0x3A, // FACILITY_CLASS_SAILOR 0x05, // FACILITY_CLASS_COLLECTOR 0x42, // FACILITY_CLASS_PKMN_BREEDER_M 0x44, // FACILITY_CLASS_PKMN_RANGER_M 0x43, // FACILITY_CLASS_BUG_CATCHER 0x00 // FACILITY_CLASS_HIKER ]; private static readonly byte[] FemaleTrainerTowerClasses = [ 0x0D, // FACILITY_CLASS_AROMA_LADY 0x10, // FACILITY_CLASS_TUBER_F 0x12, // FACILITY_CLASS_COOLTRAINER_F 0x0C, // FACILITY_CLASS_HEX_MANIAC 0x13, // FACILITY_CLASS_LADY 0x14, // FACILITY_CLASS_BEAUTY 0x1F, // FACILITY_CLASS_PSYCHIC_F 0x27, // FACILITY_CLASS_SCHOOL_KID_F 0x2A, // FACILITY_CLASS_POKEFAN_F 0x16, // FACILITY_CLASS_EXPERT_F 0x2F, // FACILITY_CLASS_CYCLING_TRIATHLETE_F 0x31, // FACILITY_CLASS_RUNNING_TRIATHLETE_F 0x33, // FACILITY_CLASS_SWIMMING_TRIATHLETE_F 0x36, // FACILITY_CLASS_BATTLE_GIRL 0x37, // FACILITY_CLASS_PARASOL_LADY 0x38, // FACILITY_CLASS_SWIMMER_F 0x1C, // FACILITY_CLASS_PICNICKER 0x02, // FACILITY_CLASS_PKMN_BREEDER_F 0x45, // FACILITY_CLASS_PKMN_RANGER_F 0x47 // FACILITY_CLASS_LASS ];
  4. It's not stored directly, but there is a trainer class stored at the offset right before the streak. From the list of possible classes for each gender you could determine what the player gender was https://github.com/pret/pokeemerald/blob/master/src/battle_tower.c#L153
  5. For the Switch the valid dates range from 01/01/2000 to 12/31/2099. You can use PKHeX's Block Data editor and change the date in the PlayerGeoLocation or Status block to something in the valid range.
  6. The AUT2010 Mew is the French version, Fall in French is Automne. The English version didn't differ between regions, it's always FAL2010.
  7. Here are the party Pokemon from the Let's Go Pikachu/Eevee Demo Version. This demo is currently still available on the eShop. The demo randomly boots into LGP or LGE. Though it feels like 90% of the time it is LGP.... The party consists of Pikachu, Eevee, Squirtel, Charmander, Bulbasaur and Meowth. All Pokemon are level 10 and have random stats, the starter has 6*31 IVs but anything else is random though. You will also either play as the male (Chase) or female (Elaine) character randomly, with random TID/SID. I don't think there's anything more special about the demo. LGPE Demo Party Pokemon.zip
  8. You can change the name and gender in the Trainer Info editor. However changing the gender in Gen 6+ is not possible, because it could break your game due to event flags depending on the chosen gender.
  9. Dont't use save states, save ingame as you would on your console.
  10. You can't. The Pokemon needs a HOME tracker which PKHeX can not assign, so it will be illegal. The only way would be uploading it to HOME through Pokemon Bank. However if you don't have an ongoing subscription that's also impossible since the eShop was shut down.
  11. By default PKHeX searches backups and other save paths and shows those Pokemon in the PKM Database. You can turn this off in the EntityDb Settings.
×
×
  • Create New...