├── .gitignore ├── .gitmodules ├── Dockerfile ├── LICENSE.txt ├── PokeManager.bat ├── README.md ├── __init__.py ├── compile.sh ├── exceptions.config ├── media ├── count_pokemon2.png ├── main_menu3.png ├── rename_pokemon.png ├── transfer_pokemon2.png └── view_pokemon2.png ├── pogo ├── POGOProtos │ ├── Data │ │ ├── AssetDigestEntry_pb2.py │ │ ├── Battle │ │ │ ├── BattleActionType_pb2.py │ │ │ ├── BattleAction_pb2.py │ │ │ ├── BattleLog_pb2.py │ │ │ ├── BattleParticipant_pb2.py │ │ │ ├── BattlePokemonInfo_pb2.py │ │ │ ├── BattleResults_pb2.py │ │ │ ├── BattleState_pb2.py │ │ │ ├── BattleType_pb2.py │ │ │ └── __init__.py │ │ ├── Capture │ │ │ ├── CaptureAward_pb2.py │ │ │ ├── CaptureProbability_pb2.py │ │ │ └── __init__.py │ │ ├── DownloadUrlEntry_pb2.py │ │ ├── Gym │ │ │ ├── GymMembership_pb2.py │ │ │ ├── GymState_pb2.py │ │ │ └── __init__.py │ │ ├── Logs │ │ │ ├── ActionLogEntry_pb2.py │ │ │ ├── CatchPokemonLogEntry_pb2.py │ │ │ ├── FortSearchLogEntry_pb2.py │ │ │ └── __init__.py │ │ ├── Player │ │ │ ├── ContactSettings_pb2.py │ │ │ ├── Currency_pb2.py │ │ │ ├── DailyBonus_pb2.py │ │ │ ├── EquippedBadge_pb2.py │ │ │ ├── PlayerAvatar_pb2.py │ │ │ ├── PlayerCamera_pb2.py │ │ │ ├── PlayerCurrency_pb2.py │ │ │ ├── PlayerPublicProfile_pb2.py │ │ │ ├── PlayerStats_pb2.py │ │ │ └── __init__.py │ │ ├── PlayerBadge_pb2.py │ │ ├── PlayerData_pb2.py │ │ ├── PokedexEntry_pb2.py │ │ ├── PokemonData_pb2.py │ │ └── __init__.py │ ├── Enums │ │ ├── ActivityType_pb2.py │ │ ├── BadgeType_pb2.py │ │ ├── CameraInterpolation_pb2.py │ │ ├── CameraTarget_pb2.py │ │ ├── Gender_pb2.py │ │ ├── IapItemCategory_pb2.py │ │ ├── ItemCategory_pb2.py │ │ ├── ItemEffect_pb2.py │ │ ├── Platform_pb2.py │ │ ├── PokemonClass_pb2.py │ │ ├── PokemonFamilyId_pb2.py │ │ ├── PokemonId_pb2.py │ │ ├── PokemonMove_pb2.py │ │ ├── PokemonMovementType_pb2.py │ │ ├── PokemonRarity_pb2.py │ │ ├── PokemonType_pb2.py │ │ ├── TeamColor_pb2.py │ │ ├── TutorialState_pb2.py │ │ └── __init__.py │ ├── Inventory │ │ ├── AppliedItem_pb2.py │ │ ├── AppliedItems_pb2.py │ │ ├── EggIncubatorType_pb2.py │ │ ├── EggIncubator_pb2.py │ │ ├── EggIncubators_pb2.py │ │ ├── InventoryDelta_pb2.py │ │ ├── InventoryItemData_pb2.py │ │ ├── InventoryItem_pb2.py │ │ ├── InventoryUpgradeType_pb2.py │ │ ├── InventoryUpgrade_pb2.py │ │ ├── InventoryUpgrades_pb2.py │ │ ├── Item │ │ │ ├── ItemAward_pb2.py │ │ │ ├── ItemData_pb2.py │ │ │ ├── ItemId_pb2.py │ │ │ ├── ItemType_pb2.py │ │ │ └── __init__.py │ │ ├── ItemAward_pb2.py │ │ ├── ItemId_pb2.py │ │ ├── ItemType_pb2.py │ │ ├── Item_pb2.py │ │ ├── PokemonFamily_pb2.py │ │ └── __init__.py │ ├── Map │ │ ├── Fort │ │ │ ├── FortData_pb2.py │ │ │ ├── FortLureInfo_pb2.py │ │ │ ├── FortModifier_pb2.py │ │ │ ├── FortRenderingType_pb2.py │ │ │ ├── FortSponsor_pb2.py │ │ │ ├── FortSummary_pb2.py │ │ │ ├── FortType_pb2.py │ │ │ └── __init__.py │ │ ├── MapCell_pb2.py │ │ ├── MapObjectsStatus_pb2.py │ │ ├── Pokemon │ │ │ ├── MapPokemon_pb2.py │ │ │ ├── NearbyPokemon_pb2.py │ │ │ ├── WildPokemon_pb2.py │ │ │ └── __init__.py │ │ ├── SpawnPoint_pb2.py │ │ └── __init__.py │ ├── Networking │ │ ├── Envelopes │ │ │ ├── AuthTicket_pb2.py │ │ │ ├── RequestEnvelope_pb2.py │ │ │ ├── ResponseEnvelope_pb2.py │ │ │ ├── Unknown6Response_pb2.py │ │ │ ├── Unknown6_pb2.py │ │ │ └── __init__.py │ │ ├── Requests │ │ │ ├── Messages │ │ │ │ ├── AddFortModifierMessage_pb2.py │ │ │ │ ├── AttackGymMessage_pb2.py │ │ │ │ ├── CatchPokemonMessage_pb2.py │ │ │ │ ├── CheckAwardedBadgesMessage_pb2.py │ │ │ │ ├── CheckCodenameAvailableMessage_pb2.py │ │ │ │ ├── ClaimCodenameMessage_pb2.py │ │ │ │ ├── CollectDailyBonusMessage_pb2.py │ │ │ │ ├── CollectDailyDefenderBonusMessage_pb2.py │ │ │ │ ├── DiskEncounterMessage_pb2.py │ │ │ │ ├── DownloadItemTemplatesMessage_pb2.py │ │ │ │ ├── DownloadRemoteConfigVersionMessage_pb2.py │ │ │ │ ├── DownloadSettingsMessage_pb2.py │ │ │ │ ├── EchoMessage_pb2.py │ │ │ │ ├── EncounterMessage_pb2.py │ │ │ │ ├── EncounterTutorialCompleteMessage_pb2.py │ │ │ │ ├── EquipBadgeMessage_pb2.py │ │ │ │ ├── EvolvePokemonMessage_pb2.py │ │ │ │ ├── FortDeployPokemonMessage_pb2.py │ │ │ │ ├── FortDetailsMessage_pb2.py │ │ │ │ ├── FortRecallPokemonMessage_pb2.py │ │ │ │ ├── FortSearchMessage_pb2.py │ │ │ │ ├── GetAssetDigestMessage_pb2.py │ │ │ │ ├── GetDownloadUrlsMessage_pb2.py │ │ │ │ ├── GetGymDetailsMessage_pb2.py │ │ │ │ ├── GetHatchedEggsMessage_pb2.py │ │ │ │ ├── GetIncensePokemonMessage_pb2.py │ │ │ │ ├── GetInventoryMessage_pb2.py │ │ │ │ ├── GetMapObjectsMessage_pb2.py │ │ │ │ ├── GetPlayerMessage_pb2.py │ │ │ │ ├── GetPlayerProfileMessage_pb2.py │ │ │ │ ├── GetSuggestedCodenamesMessage_pb2.py │ │ │ │ ├── IncenseEncounterMessage_pb2.py │ │ │ │ ├── LevelUpRewardsMessage_pb2.py │ │ │ │ ├── MarkTutorialCompleteMessage_pb2.py │ │ │ │ ├── NicknamePokemonMessage_pb2.py │ │ │ │ ├── PlayerUpdateMessage_pb2.py │ │ │ │ ├── RecycleInventoryItemMessage_pb2.py │ │ │ │ ├── ReleasePokemonMessage_pb2.py │ │ │ │ ├── SetAvatarMessage_pb2.py │ │ │ │ ├── SetContactSettingsMessage_pb2.py │ │ │ │ ├── SetFavoritePokemonMessage_pb2.py │ │ │ │ ├── SetPlayerTeamMessage_pb2.py │ │ │ │ ├── SfidaActionLogMessage_pb2.py │ │ │ │ ├── StartGymBattleMessage_pb2.py │ │ │ │ ├── UpgradePokemonMessage_pb2.py │ │ │ │ ├── UseIncenseMessage_pb2.py │ │ │ │ ├── UseItemCaptureMessage_pb2.py │ │ │ │ ├── UseItemEggIncubatorMessage_pb2.py │ │ │ │ ├── UseItemGymMessage_pb2.py │ │ │ │ ├── UseItemPotionMessage_pb2.py │ │ │ │ ├── UseItemReviveMessage_pb2.py │ │ │ │ ├── UseItemXpBoostMessage_pb2.py │ │ │ │ └── __init__.py │ │ │ ├── RequestType_pb2.py │ │ │ ├── Request_pb2.py │ │ │ └── __init__.py │ │ ├── Responses │ │ │ ├── AddFortModifierResponse_pb2.py │ │ │ ├── AttackGymResponse_pb2.py │ │ │ ├── CatchPokemonResponse_pb2.py │ │ │ ├── CheckAwardedBadgesResponse_pb2.py │ │ │ ├── CheckCodenameAvailableResponse_pb2.py │ │ │ ├── ClaimCodenameResponse_pb2.py │ │ │ ├── CollectDailyBonusResponse_pb2.py │ │ │ ├── CollectDailyDefenderBonusResponse_pb2.py │ │ │ ├── DiskEncounterResponse_pb2.py │ │ │ ├── DownloadItemTemplatesResponse_pb2.py │ │ │ ├── DownloadRemoteConfigVersionResponse_pb2.py │ │ │ ├── DownloadSettingsResponse_pb2.py │ │ │ ├── EchoResponse_pb2.py │ │ │ ├── EncounterResponse_pb2.py │ │ │ ├── EncounterTutorialCompleteResponse_pb2.py │ │ │ ├── EquipBadgeResponse_pb2.py │ │ │ ├── EvolvePokemonResponse_pb2.py │ │ │ ├── FortDeployPokemonResponse_pb2.py │ │ │ ├── FortDetailsResponse_pb2.py │ │ │ ├── FortRecallPokemonResponse_pb2.py │ │ │ ├── FortSearchResponse_pb2.py │ │ │ ├── GetAssetDigestResponse_pb2.py │ │ │ ├── GetDownloadUrlsResponse_pb2.py │ │ │ ├── GetGymDetailsResponse_pb2.py │ │ │ ├── GetHatchedEggsResponse_pb2.py │ │ │ ├── GetIncensePokemonResponse_pb2.py │ │ │ ├── GetInventoryResponse_pb2.py │ │ │ ├── GetMapObjectsResponse_pb2.py │ │ │ ├── GetPlayerProfileResponse_pb2.py │ │ │ ├── GetPlayerResponse_pb2.py │ │ │ ├── GetSuggestedCodenamesResponse_pb2.py │ │ │ ├── IncenseEncounterResponse_pb2.py │ │ │ ├── LevelUpRewardsResponse_pb2.py │ │ │ ├── MarkTutorialCompleteResponse_pb2.py │ │ │ ├── NicknamePokemonResponse_pb2.py │ │ │ ├── PlayerUpdateResponse_pb2.py │ │ │ ├── RecycleInventoryItemResponse_pb2.py │ │ │ ├── ReleasePokemonResponse_pb2.py │ │ │ ├── SetAvatarResponse_pb2.py │ │ │ ├── SetContactSettingsResponse_pb2.py │ │ │ ├── SetFavoritePokemonResponse_pb2.py │ │ │ ├── SetPlayerTeamResponse_pb2.py │ │ │ ├── SfidaActionLogResponse_pb2.py │ │ │ ├── StartGymBattleResponse_pb2.py │ │ │ ├── UpgradePokemonResponse_pb2.py │ │ │ ├── UseIncenseResponse_pb2.py │ │ │ ├── UseItemCaptureResponse_pb2.py │ │ │ ├── UseItemEggIncubatorResponse_pb2.py │ │ │ ├── UseItemGymResponse_pb2.py │ │ │ ├── UseItemPotionResponse_pb2.py │ │ │ ├── UseItemReviveResponse_pb2.py │ │ │ ├── UseItemXpBoostResponse_pb2.py │ │ │ └── __init__.py │ │ └── __init__.py │ ├── Settings │ │ ├── DownloadSettingsAction_pb2.py │ │ ├── FortSettings_pb2.py │ │ ├── GlobalSettings_pb2.py │ │ ├── InventorySettings_pb2.py │ │ ├── LevelSettings_pb2.py │ │ ├── MapSettings_pb2.py │ │ ├── Master │ │ │ ├── BadgeSettings_pb2.py │ │ │ ├── CameraSettings_pb2.py │ │ │ ├── EncounterSettings_pb2.py │ │ │ ├── EquippedBadgeSettings_pb2.py │ │ │ ├── GymBattleSettings_pb2.py │ │ │ ├── GymLevelSettings_pb2.py │ │ │ ├── IapItemDisplay_pb2.py │ │ │ ├── IapSettings_pb2.py │ │ │ ├── Item │ │ │ │ ├── BattleAttributes_pb2.py │ │ │ │ ├── EggIncubatorAttributes_pb2.py │ │ │ │ ├── ExperienceBoostAttributes_pb2.py │ │ │ │ ├── FoodAttributes_pb2.py │ │ │ │ ├── FortModifierAttributes_pb2.py │ │ │ │ ├── IncenseAttributes_pb2.py │ │ │ │ ├── InventoryUpgradeAttributes_pb2.py │ │ │ │ ├── PokeballAttributes_pb2.py │ │ │ │ ├── PotionAttributes_pb2.py │ │ │ │ ├── ReviveAttributes_pb2.py │ │ │ │ └── __init__.py │ │ │ ├── ItemSettings_pb2.py │ │ │ ├── MoveSequenceSettings_pb2.py │ │ │ ├── MoveSettings_pb2.py │ │ │ ├── PlayerLevelSettings_pb2.py │ │ │ ├── Pokemon │ │ │ │ ├── CameraAttributes_pb2.py │ │ │ │ ├── EncounterAttributes_pb2.py │ │ │ │ ├── StatsAttributes_pb2.py │ │ │ │ └── __init__.py │ │ │ ├── PokemonSettings_pb2.py │ │ │ ├── PokemonUpgradeSettings_pb2.py │ │ │ ├── TypeEffectiveSettings_pb2.py │ │ │ └── __init__.py │ │ └── __init__.py │ └── __init__.py ├── __init__.py ├── api.py ├── custom_exceptions.py ├── demo.py ├── inventory.py ├── location.py ├── pokedex.py ├── session.py ├── state.py └── util.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | dumps 2 | *.pyc 3 | venv -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/.gitmodules -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /PokeManager.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/PokeManager.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/compile.sh -------------------------------------------------------------------------------- /exceptions.config: -------------------------------------------------------------------------------- 1 | MEW 2 | MEWTWO 3 | DRAGONITE 4 | SNORLAX -------------------------------------------------------------------------------- /media/count_pokemon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/media/count_pokemon2.png -------------------------------------------------------------------------------- /media/main_menu3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/media/main_menu3.png -------------------------------------------------------------------------------- /media/rename_pokemon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/media/rename_pokemon.png -------------------------------------------------------------------------------- /media/transfer_pokemon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/media/transfer_pokemon2.png -------------------------------------------------------------------------------- /media/view_pokemon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/media/view_pokemon2.png -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/AssetDigestEntry_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Data/AssetDigestEntry_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/Battle/BattleActionType_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Data/Battle/BattleActionType_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/Battle/BattleAction_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Data/Battle/BattleAction_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/Battle/BattleLog_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Data/Battle/BattleLog_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/Battle/BattleParticipant_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Data/Battle/BattleParticipant_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/Battle/BattlePokemonInfo_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Data/Battle/BattlePokemonInfo_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/Battle/BattleResults_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Data/Battle/BattleResults_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/Battle/BattleState_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Data/Battle/BattleState_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/Battle/BattleType_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Data/Battle/BattleType_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/Battle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/Capture/CaptureAward_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Data/Capture/CaptureAward_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/Capture/CaptureProbability_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Data/Capture/CaptureProbability_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/Capture/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/DownloadUrlEntry_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Data/DownloadUrlEntry_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/Gym/GymMembership_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Data/Gym/GymMembership_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/Gym/GymState_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Data/Gym/GymState_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/Gym/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/Logs/ActionLogEntry_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Data/Logs/ActionLogEntry_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/Logs/CatchPokemonLogEntry_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Data/Logs/CatchPokemonLogEntry_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/Logs/FortSearchLogEntry_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Data/Logs/FortSearchLogEntry_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/Logs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/Player/ContactSettings_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Data/Player/ContactSettings_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/Player/Currency_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Data/Player/Currency_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/Player/DailyBonus_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Data/Player/DailyBonus_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/Player/EquippedBadge_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Data/Player/EquippedBadge_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/Player/PlayerAvatar_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Data/Player/PlayerAvatar_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/Player/PlayerCamera_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Data/Player/PlayerCamera_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/Player/PlayerCurrency_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Data/Player/PlayerCurrency_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/Player/PlayerPublicProfile_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Data/Player/PlayerPublicProfile_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/Player/PlayerStats_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Data/Player/PlayerStats_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/Player/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/PlayerBadge_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Data/PlayerBadge_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/PlayerData_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Data/PlayerData_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/PokedexEntry_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Data/PokedexEntry_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/PokemonData_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Data/PokemonData_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Data/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pogo/POGOProtos/Enums/ActivityType_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Enums/ActivityType_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Enums/BadgeType_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Enums/BadgeType_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Enums/CameraInterpolation_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Enums/CameraInterpolation_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Enums/CameraTarget_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Enums/CameraTarget_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Enums/Gender_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Enums/Gender_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Enums/IapItemCategory_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Enums/IapItemCategory_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Enums/ItemCategory_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Enums/ItemCategory_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Enums/ItemEffect_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Enums/ItemEffect_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Enums/Platform_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Enums/Platform_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Enums/PokemonClass_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Enums/PokemonClass_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Enums/PokemonFamilyId_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Enums/PokemonFamilyId_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Enums/PokemonId_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Enums/PokemonId_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Enums/PokemonMove_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Enums/PokemonMove_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Enums/PokemonMovementType_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Enums/PokemonMovementType_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Enums/PokemonRarity_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Enums/PokemonRarity_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Enums/PokemonType_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Enums/PokemonType_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Enums/TeamColor_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Enums/TeamColor_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Enums/TutorialState_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Enums/TutorialState_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Enums/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pogo/POGOProtos/Inventory/AppliedItem_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Inventory/AppliedItem_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Inventory/AppliedItems_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Inventory/AppliedItems_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Inventory/EggIncubatorType_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Inventory/EggIncubatorType_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Inventory/EggIncubator_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Inventory/EggIncubator_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Inventory/EggIncubators_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Inventory/EggIncubators_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Inventory/InventoryDelta_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Inventory/InventoryDelta_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Inventory/InventoryItemData_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Inventory/InventoryItemData_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Inventory/InventoryItem_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Inventory/InventoryItem_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Inventory/InventoryUpgradeType_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Inventory/InventoryUpgradeType_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Inventory/InventoryUpgrade_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Inventory/InventoryUpgrade_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Inventory/InventoryUpgrades_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Inventory/InventoryUpgrades_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Inventory/Item/ItemAward_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Inventory/Item/ItemAward_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Inventory/Item/ItemData_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Inventory/Item/ItemData_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Inventory/Item/ItemId_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Inventory/Item/ItemId_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Inventory/Item/ItemType_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Inventory/Item/ItemType_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Inventory/Item/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pogo/POGOProtos/Inventory/ItemAward_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Inventory/ItemAward_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Inventory/ItemId_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Inventory/ItemId_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Inventory/ItemType_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Inventory/ItemType_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Inventory/Item_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Inventory/Item_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Inventory/PokemonFamily_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Inventory/PokemonFamily_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Inventory/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pogo/POGOProtos/Map/Fort/FortData_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Map/Fort/FortData_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Map/Fort/FortLureInfo_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Map/Fort/FortLureInfo_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Map/Fort/FortModifier_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Map/Fort/FortModifier_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Map/Fort/FortRenderingType_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Map/Fort/FortRenderingType_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Map/Fort/FortSponsor_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Map/Fort/FortSponsor_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Map/Fort/FortSummary_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Map/Fort/FortSummary_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Map/Fort/FortType_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Map/Fort/FortType_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Map/Fort/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pogo/POGOProtos/Map/MapCell_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Map/MapCell_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Map/MapObjectsStatus_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Map/MapObjectsStatus_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Map/Pokemon/MapPokemon_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Map/Pokemon/MapPokemon_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Map/Pokemon/NearbyPokemon_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Map/Pokemon/NearbyPokemon_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Map/Pokemon/WildPokemon_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Map/Pokemon/WildPokemon_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Map/Pokemon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pogo/POGOProtos/Map/SpawnPoint_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Map/SpawnPoint_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Map/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Envelopes/AuthTicket_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Envelopes/AuthTicket_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Envelopes/RequestEnvelope_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Envelopes/RequestEnvelope_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Envelopes/ResponseEnvelope_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Envelopes/ResponseEnvelope_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Envelopes/Unknown6Response_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Envelopes/Unknown6Response_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Envelopes/Unknown6_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Envelopes/Unknown6_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Envelopes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/AddFortModifierMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/AddFortModifierMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/AttackGymMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/AttackGymMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/CatchPokemonMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/CatchPokemonMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/CheckAwardedBadgesMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/CheckAwardedBadgesMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/CheckCodenameAvailableMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/CheckCodenameAvailableMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/ClaimCodenameMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/ClaimCodenameMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/CollectDailyBonusMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/CollectDailyBonusMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/CollectDailyDefenderBonusMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/CollectDailyDefenderBonusMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/DiskEncounterMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/DiskEncounterMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/DownloadItemTemplatesMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/DownloadItemTemplatesMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/DownloadRemoteConfigVersionMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/DownloadRemoteConfigVersionMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/DownloadSettingsMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/DownloadSettingsMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/EchoMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/EchoMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/EncounterMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/EncounterMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/EncounterTutorialCompleteMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/EncounterTutorialCompleteMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/EquipBadgeMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/EquipBadgeMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/EvolvePokemonMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/EvolvePokemonMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/FortDeployPokemonMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/FortDeployPokemonMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/FortDetailsMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/FortDetailsMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/FortRecallPokemonMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/FortRecallPokemonMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/FortSearchMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/FortSearchMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/GetAssetDigestMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/GetAssetDigestMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/GetDownloadUrlsMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/GetDownloadUrlsMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/GetGymDetailsMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/GetGymDetailsMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/GetHatchedEggsMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/GetHatchedEggsMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/GetIncensePokemonMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/GetIncensePokemonMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/GetInventoryMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/GetInventoryMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/GetMapObjectsMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/GetMapObjectsMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/GetPlayerMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/GetPlayerMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/GetPlayerProfileMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/GetPlayerProfileMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/GetSuggestedCodenamesMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/GetSuggestedCodenamesMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/IncenseEncounterMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/IncenseEncounterMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/LevelUpRewardsMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/LevelUpRewardsMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/MarkTutorialCompleteMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/MarkTutorialCompleteMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/NicknamePokemonMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/NicknamePokemonMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/PlayerUpdateMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/PlayerUpdateMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/RecycleInventoryItemMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/RecycleInventoryItemMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/ReleasePokemonMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/ReleasePokemonMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/SetAvatarMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/SetAvatarMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/SetContactSettingsMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/SetContactSettingsMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/SetFavoritePokemonMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/SetFavoritePokemonMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/SetPlayerTeamMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/SetPlayerTeamMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/SfidaActionLogMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/SfidaActionLogMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/StartGymBattleMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/StartGymBattleMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/UpgradePokemonMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/UpgradePokemonMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/UseIncenseMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/UseIncenseMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/UseItemCaptureMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/UseItemCaptureMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/UseItemEggIncubatorMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/UseItemEggIncubatorMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/UseItemGymMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/UseItemGymMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/UseItemPotionMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/UseItemPotionMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/UseItemReviveMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/UseItemReviveMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/UseItemXpBoostMessage_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Messages/UseItemXpBoostMessage_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Messages/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/RequestType_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/RequestType_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/Request_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Requests/Request_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Requests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/AddFortModifierResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/AddFortModifierResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/AttackGymResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/AttackGymResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/CatchPokemonResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/CatchPokemonResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/CheckAwardedBadgesResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/CheckAwardedBadgesResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/CheckCodenameAvailableResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/CheckCodenameAvailableResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/ClaimCodenameResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/ClaimCodenameResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/CollectDailyBonusResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/CollectDailyBonusResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/CollectDailyDefenderBonusResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/CollectDailyDefenderBonusResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/DiskEncounterResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/DiskEncounterResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/DownloadItemTemplatesResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/DownloadItemTemplatesResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/DownloadRemoteConfigVersionResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/DownloadRemoteConfigVersionResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/DownloadSettingsResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/DownloadSettingsResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/EchoResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/EchoResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/EncounterResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/EncounterResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/EncounterTutorialCompleteResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/EncounterTutorialCompleteResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/EquipBadgeResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/EquipBadgeResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/EvolvePokemonResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/EvolvePokemonResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/FortDeployPokemonResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/FortDeployPokemonResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/FortDetailsResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/FortDetailsResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/FortRecallPokemonResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/FortRecallPokemonResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/FortSearchResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/FortSearchResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/GetAssetDigestResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/GetAssetDigestResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/GetDownloadUrlsResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/GetDownloadUrlsResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/GetGymDetailsResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/GetGymDetailsResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/GetHatchedEggsResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/GetHatchedEggsResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/GetIncensePokemonResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/GetIncensePokemonResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/GetInventoryResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/GetInventoryResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/GetMapObjectsResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/GetMapObjectsResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/GetPlayerProfileResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/GetPlayerProfileResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/GetPlayerResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/GetPlayerResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/GetSuggestedCodenamesResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/GetSuggestedCodenamesResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/IncenseEncounterResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/IncenseEncounterResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/LevelUpRewardsResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/LevelUpRewardsResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/MarkTutorialCompleteResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/MarkTutorialCompleteResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/NicknamePokemonResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/NicknamePokemonResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/PlayerUpdateResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/PlayerUpdateResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/RecycleInventoryItemResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/RecycleInventoryItemResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/ReleasePokemonResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/ReleasePokemonResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/SetAvatarResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/SetAvatarResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/SetContactSettingsResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/SetContactSettingsResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/SetFavoritePokemonResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/SetFavoritePokemonResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/SetPlayerTeamResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/SetPlayerTeamResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/SfidaActionLogResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/SfidaActionLogResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/StartGymBattleResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/StartGymBattleResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/UpgradePokemonResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/UpgradePokemonResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/UseIncenseResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/UseIncenseResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/UseItemCaptureResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/UseItemCaptureResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/UseItemEggIncubatorResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/UseItemEggIncubatorResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/UseItemGymResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/UseItemGymResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/UseItemPotionResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/UseItemPotionResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/UseItemReviveResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/UseItemReviveResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/UseItemXpBoostResponse_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Networking/Responses/UseItemXpBoostResponse_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/Responses/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pogo/POGOProtos/Networking/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/DownloadSettingsAction_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/DownloadSettingsAction_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/FortSettings_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/FortSettings_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/GlobalSettings_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/GlobalSettings_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/InventorySettings_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/InventorySettings_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/LevelSettings_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/LevelSettings_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/MapSettings_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/MapSettings_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/Master/BadgeSettings_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/Master/BadgeSettings_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/Master/CameraSettings_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/Master/CameraSettings_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/Master/EncounterSettings_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/Master/EncounterSettings_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/Master/EquippedBadgeSettings_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/Master/EquippedBadgeSettings_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/Master/GymBattleSettings_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/Master/GymBattleSettings_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/Master/GymLevelSettings_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/Master/GymLevelSettings_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/Master/IapItemDisplay_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/Master/IapItemDisplay_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/Master/IapSettings_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/Master/IapSettings_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/Master/Item/BattleAttributes_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/Master/Item/BattleAttributes_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/Master/Item/EggIncubatorAttributes_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/Master/Item/EggIncubatorAttributes_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/Master/Item/ExperienceBoostAttributes_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/Master/Item/ExperienceBoostAttributes_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/Master/Item/FoodAttributes_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/Master/Item/FoodAttributes_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/Master/Item/FortModifierAttributes_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/Master/Item/FortModifierAttributes_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/Master/Item/IncenseAttributes_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/Master/Item/IncenseAttributes_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/Master/Item/InventoryUpgradeAttributes_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/Master/Item/InventoryUpgradeAttributes_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/Master/Item/PokeballAttributes_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/Master/Item/PokeballAttributes_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/Master/Item/PotionAttributes_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/Master/Item/PotionAttributes_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/Master/Item/ReviveAttributes_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/Master/Item/ReviveAttributes_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/Master/Item/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/Master/ItemSettings_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/Master/ItemSettings_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/Master/MoveSequenceSettings_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/Master/MoveSequenceSettings_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/Master/MoveSettings_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/Master/MoveSettings_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/Master/PlayerLevelSettings_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/Master/PlayerLevelSettings_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/Master/Pokemon/CameraAttributes_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/Master/Pokemon/CameraAttributes_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/Master/Pokemon/EncounterAttributes_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/Master/Pokemon/EncounterAttributes_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/Master/Pokemon/StatsAttributes_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/Master/Pokemon/StatsAttributes_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/Master/Pokemon/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/Master/PokemonSettings_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/Master/PokemonSettings_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/Master/PokemonUpgradeSettings_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/Master/PokemonUpgradeSettings_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/Master/TypeEffectiveSettings_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/Settings/Master/TypeEffectiveSettings_pb2.py -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/Master/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pogo/POGOProtos/Settings/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pogo/POGOProtos/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/POGOProtos/__init__.py -------------------------------------------------------------------------------- /pogo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pogo/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/api.py -------------------------------------------------------------------------------- /pogo/custom_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/custom_exceptions.py -------------------------------------------------------------------------------- /pogo/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/demo.py -------------------------------------------------------------------------------- /pogo/inventory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/inventory.py -------------------------------------------------------------------------------- /pogo/location.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/location.py -------------------------------------------------------------------------------- /pogo/pokedex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/pokedex.py -------------------------------------------------------------------------------- /pogo/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/session.py -------------------------------------------------------------------------------- /pogo/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/state.py -------------------------------------------------------------------------------- /pogo/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/pogo/util.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cglatot/PokeManager/HEAD/requirements.txt --------------------------------------------------------------------------------