├── .clang-format ├── .codeclimate.yml ├── .current-version ├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── base ├── .clang-format ├── v0.29.0.proto ├── v0.29.3.proto ├── v0.31.0.proto ├── v0.33.0.proto ├── v0.35.0.proto ├── v0.37.0.proto ├── v0.39.0.proto ├── v0.41.2.proto ├── v0.43.3.proto ├── v0.43.4.proto ├── v0.45.0.proto ├── v0.47.1.proto ├── v0.49.1.proto ├── v0.51.0.proto ├── v0.53.1.proto ├── v0.55.0.proto ├── v0.57.2.proto ├── v0.59.1.proto ├── v0.61.0.proto ├── v0.63.1.proto ├── v0.67.1.proto ├── v0.67.2.proto ├── v0.69.0.proto ├── v0.69.1.proto └── v0.71.0.proto ├── compile.py ├── compile_single.py ├── helpers ├── __init__.py ├── compile_helper.py └── go_helper.py └── src ├── POGOProtos ├── Data │ ├── AssetDigestEntry.proto │ ├── Avatar │ │ ├── AvatarCustomization.proto │ │ └── AvatarItem.proto │ ├── BackgroundToken.proto │ ├── Badge │ │ ├── AwardedGymBadge.proto │ │ ├── BadgeCaptureReward.proto │ │ └── GymBadgeStats.proto │ ├── Battle │ │ ├── Battle.proto │ │ ├── BattleAction.proto │ │ ├── BattleActionType.proto │ │ ├── BattleLog.proto │ │ ├── BattleParticipant.proto │ │ ├── BattlePokemonInfo.proto │ │ ├── BattleResults.proto │ │ ├── BattleState.proto │ │ ├── BattleType.proto │ │ └── BattleUpdate.proto │ ├── BuddyPokemon.proto │ ├── Capture │ │ ├── CaptureAward.proto │ │ └── CaptureProbability.proto │ ├── ClientVersion.proto │ ├── DownloadUrlEntry.proto │ ├── FoodValue.proto │ ├── Gym │ │ ├── GymDefender.proto │ │ ├── GymMembership.proto │ │ ├── GymState.proto │ │ └── GymStatusAndDefenders.proto │ ├── Logs │ │ ├── ActionLogEntry.proto │ │ ├── BuddyPokemonLogEntry.proto │ │ ├── CatchPokemonLogEntry.proto │ │ ├── FortSearchLogEntry.proto │ │ └── RaidRewardsLogEntry.proto │ ├── Player │ │ ├── ContactSettings.proto │ │ ├── Currency.proto │ │ ├── DailyBonus.proto │ │ ├── EquippedBadge.proto │ │ ├── PlayerAvatar.proto │ │ ├── PlayerAvatarType.proto │ │ ├── PlayerCamera.proto │ │ ├── PlayerCurrency.proto │ │ ├── PlayerPublicProfile.proto │ │ └── PlayerStats.proto │ ├── PlayerBadge.proto │ ├── PlayerData.proto │ ├── PokedexEntry.proto │ ├── PokemonData.proto │ ├── PokemonDisplay.proto │ ├── Quests │ │ ├── DailyQuest.proto │ │ └── Quest.proto │ ├── Raid │ │ ├── EventInfo.proto │ │ ├── Lobby.proto │ │ ├── Participation.proto │ │ ├── PlayerRaidInfo.proto │ │ ├── Raid.proto │ │ ├── RaidEncounter.proto │ │ └── RaidInfo.proto │ ├── Redeem │ │ ├── PokeCandy.proto │ │ ├── RedeemedAvatarItem.proto │ │ └── RedeemedItem.proto │ └── RedeemPasscodeReward.proto ├── Enums │ ├── ActivityType.proto │ ├── BadgeType.proto │ ├── CameraInterpolation.proto │ ├── CameraTarget.proto │ ├── Costume.proto │ ├── EncounterType.proto │ ├── Filter.proto │ ├── Form.proto │ ├── Gender.proto │ ├── GymBadgeType.proto │ ├── IapItemCategory.proto │ ├── ItemCategory.proto │ ├── ItemEffect.proto │ ├── NotificationCategory.proto │ ├── NotificationState.proto │ ├── Platform.proto │ ├── PokemonFamilyId.proto │ ├── PokemonId.proto │ ├── PokemonMove.proto │ ├── PokemonMovementType.proto │ ├── PokemonRarity.proto │ ├── PokemonType.proto │ ├── QuestType.proto │ ├── RaidLevel.proto │ ├── Slot.proto │ ├── TeamColor.proto │ ├── TutorialState.proto │ └── VariableName.proto ├── Inventory │ ├── AppliedItem.proto │ ├── AppliedItems.proto │ ├── Candy.proto │ ├── EggIncubator.proto │ ├── EggIncubatorType.proto │ ├── EggIncubators.proto │ ├── ExclusiveTicketInfo.proto │ ├── InventoryDelta.proto │ ├── InventoryItem.proto │ ├── InventoryItemData.proto │ ├── InventoryKey.proto │ ├── InventoryUpgrade.proto │ ├── InventoryUpgradeType.proto │ ├── InventoryUpgrades.proto │ ├── Item │ │ ├── ItemAward.proto │ │ ├── ItemData.proto │ │ ├── ItemId.proto │ │ └── ItemType.proto │ ├── Loot.proto │ ├── LootItem.proto │ ├── RaidTicket.proto │ └── RaidTickets.proto ├── Map │ ├── Fort │ │ ├── FortData.proto │ │ ├── FortLureInfo.proto │ │ ├── FortModifier.proto │ │ ├── FortRenderingType.proto │ │ ├── FortSponsor.proto │ │ ├── FortSummary.proto │ │ ├── FortType.proto │ │ ├── GymDisplay.proto │ │ └── GymEvent.proto │ ├── MapCell.proto │ ├── MapObjectsStatus.proto │ ├── Pokemon │ │ ├── LobbyPokemon.proto │ │ ├── MapPokemon.proto │ │ ├── MotivatedPokemon.proto │ │ ├── NearbyPokemon.proto │ │ └── WildPokemon.proto │ └── SpawnPoint.proto ├── Networking │ ├── Envelopes │ │ ├── AuthTicket.proto │ │ ├── RequestEnvelope.proto │ │ ├── ResponseEnvelope.proto │ │ └── Signature.proto │ ├── Platform │ │ ├── PlatformRequestType.proto │ │ ├── Requests │ │ │ ├── BuyItemAndroidRequest.proto │ │ │ ├── BuyItemPokeCoinsRequest.proto │ │ │ ├── GetStoreItemsRequest.proto │ │ │ ├── SendEncryptedSignatureRequest.proto │ │ │ └── UnknownPtr8Request.proto │ │ └── Responses │ │ │ ├── BuyItemAndroidResponse.proto │ │ │ ├── BuyItemPokeCoinsResponse.proto │ │ │ ├── GetStoreItemsResponse.proto │ │ │ ├── SendEncryptedSignatureResponse.proto │ │ │ └── UnknownPtr8Response.proto │ ├── Requests │ │ ├── Messages │ │ │ ├── AddFortModifierMessage.proto │ │ │ ├── AttackGymMessage.proto │ │ │ ├── AwardFreeRaidTicketMessage.proto │ │ │ ├── CatchPokemonMessage.proto │ │ │ ├── CheckAwardedBadgesMessage.proto │ │ │ ├── CheckChallengeMessage.proto │ │ │ ├── ClaimCodenameMessage.proto │ │ │ ├── CollectDailyBonusMessage.proto │ │ │ ├── CollectDailyDefenderBonusMessage.proto │ │ │ ├── DiskEncounterMessage.proto │ │ │ ├── DownloadGmTemplatesMessage.proto │ │ │ ├── DownloadItemTemplatesMessage.proto │ │ │ ├── DownloadRemoteConfigVersionMessage.proto │ │ │ ├── DownloadSettingsMessage.proto │ │ │ ├── EchoMessage.proto │ │ │ ├── EncounterMessage.proto │ │ │ ├── EncounterTutorialCompleteMessage.proto │ │ │ ├── EquipBadgeMessage.proto │ │ │ ├── EvolvePokemonMessage.proto │ │ │ ├── FortDeployPokemonMessage.proto │ │ │ ├── FortDetailsMessage.proto │ │ │ ├── FortRecallPokemonMessage.proto │ │ │ ├── FortSearchMessage.proto │ │ │ ├── GetAssetDigestMessage.proto │ │ │ ├── GetBuddyWalkedMessage.proto │ │ │ ├── GetDownloadUrlsMessage.proto │ │ │ ├── GetGymBadgeDetailsMessage.proto │ │ │ ├── GetGymDetailsMessage.proto │ │ │ ├── GetHatchedEggsMessage.proto │ │ │ ├── GetHoloInventoryMessage.proto │ │ │ ├── GetInboxMessage.proto │ │ │ ├── GetIncensePokemonMessage.proto │ │ │ ├── GetInventoryMessage.proto │ │ │ ├── GetMapObjectsMessage.proto │ │ │ ├── GetPlayerMessage.proto │ │ │ ├── GetPlayerProfileMessage.proto │ │ │ ├── GetRaidDetailsMessage.proto │ │ │ ├── GymDeployMessage.proto │ │ │ ├── GymFeedPokemonMessage.proto │ │ │ ├── GymGetInfoMessage.proto │ │ │ ├── IncenseEncounterMessage.proto │ │ │ ├── LevelUpRewardsMessage.proto │ │ │ ├── ListAvatarCustomizationsMessage.proto │ │ │ ├── ListGymBadgesMessage.proto │ │ │ ├── MarkTutorialCompleteMessage.proto │ │ │ ├── NicknamePokemonMessage.proto │ │ │ ├── PlatformClientActionsMessage.proto │ │ │ ├── PushNotificationRegistryMessage.proto │ │ │ ├── README.txt │ │ │ ├── RecycleInventoryItemMessage.proto │ │ │ ├── RegisterBackgroundDeviceMessage.proto │ │ │ ├── ReleasePokemonMessage.proto │ │ │ ├── SetAvatarItemAsViewedMessage.proto │ │ │ ├── SetAvatarMessage.proto │ │ │ ├── SetBuddyPokemonMessage.proto │ │ │ ├── SetContactSettingsMessage.proto │ │ │ ├── SetFavoritePokemonMessage.proto │ │ │ ├── SetPlayerTeamMessage.proto │ │ │ ├── SfidaActionLogMessage.proto │ │ │ ├── SfidaRegistrationMessage.proto │ │ │ ├── StartGymBattleMessage.proto │ │ │ ├── UpdateNotificationMessage.proto │ │ │ ├── UpgradePokemonMessage.proto │ │ │ ├── UseIncenseMessage.proto │ │ │ ├── UseItemCaptureMessage.proto │ │ │ ├── UseItemEggIncubatorMessage.proto │ │ │ ├── UseItemEncounterMessage.proto │ │ │ ├── UseItemGymMessage.proto │ │ │ ├── UseItemMoveRerollMessage.proto │ │ │ ├── UseItemPotionMessage.proto │ │ │ ├── UseItemRareCandyMessage.proto │ │ │ ├── UseItemReviveMessage.proto │ │ │ ├── UseItemXpBoostMessage.proto │ │ │ └── VerifyChallengeMessage.proto │ │ ├── Request.proto │ │ └── RequestType.proto │ └── Responses │ │ ├── AddFortModifierResponse.proto │ │ ├── AttackGymResponse.proto │ │ ├── AwardFreeRaidTicketResponse.proto │ │ ├── CatchPokemonResponse.proto │ │ ├── CheckAwardedBadgesResponse.proto │ │ ├── CheckChallengeResponse.proto │ │ ├── ClaimCodenameResponse.proto │ │ ├── CollectDailyBonusResponse.proto │ │ ├── CollectDailyDefenderBonusResponse.proto │ │ ├── DiskEncounterResponse.proto │ │ ├── DownloadGmTemplatesResponse.proto │ │ ├── DownloadItemTemplatesResponse.proto │ │ ├── DownloadRemoteConfigVersionResponse.proto │ │ ├── DownloadSettingsResponse.proto │ │ ├── EchoResponse.proto │ │ ├── EncounterResponse.proto │ │ ├── EncounterTutorialCompleteResponse.proto │ │ ├── EquipBadgeResponse.proto │ │ ├── EvolvePokemonResponse.proto │ │ ├── FortDeployPokemonResponse.proto │ │ ├── FortDetailsResponse.proto │ │ ├── FortRecallPokemonResponse.proto │ │ ├── FortSearchResponse.proto │ │ ├── GetAssetDigestResponse.proto │ │ ├── GetBuddyWalkedResponse.proto │ │ ├── GetDownloadUrlsResponse.proto │ │ ├── GetGymBadgeDetailsResponse.proto │ │ ├── GetGymDetailsResponse.proto │ │ ├── GetHatchedEggsResponse.proto │ │ ├── GetHoloInventoryResponse.proto │ │ ├── GetInboxResponse.proto │ │ ├── GetIncensePokemonResponse.proto │ │ ├── GetInventoryResponse.proto │ │ ├── GetMapObjectsResponse.proto │ │ ├── GetPlayerProfileResponse.proto │ │ ├── GetPlayerResponse.proto │ │ ├── GetRaidDetailsResponse.proto │ │ ├── GymDeployResponse.proto │ │ ├── GymFeedPokemonResponse.proto │ │ ├── GymGetInfoResponse.proto │ │ ├── IncenseEncounterResponse.proto │ │ ├── LevelUpRewardsResponse.proto │ │ ├── ListAvatarCustomizationsResponse.proto │ │ ├── ListGymBadgesResponse.proto │ │ ├── MarkTutorialCompleteResponse.proto │ │ ├── NicknamePokemonResponse.proto │ │ ├── PlatformClientActionsResponse.proto │ │ ├── PushNotificationRegistryResponse.proto │ │ ├── README.txt │ │ ├── RecycleInventoryItemResponse.proto │ │ ├── RegisterBackgroundDeviceResponse.proto │ │ ├── ReleasePokemonResponse.proto │ │ ├── SetAvatarItemAsViewedResponse.proto │ │ ├── SetAvatarResponse.proto │ │ ├── SetBuddyPokemonResponse.proto │ │ ├── SetContactSettingsResponse.proto │ │ ├── SetFavoritePokemonResponse.proto │ │ ├── SetPlayerTeamResponse.proto │ │ ├── SfidaActionLogResponse.proto │ │ ├── SfidaRegistrationResponse.proto │ │ ├── StartGymBattleResponse.proto │ │ ├── UpdateNotificationResponse.proto │ │ ├── UpgradePokemonResponse.proto │ │ ├── UseIncenseResponse.proto │ │ ├── UseItemCaptureResponse.proto │ │ ├── UseItemEggIncubatorResponse.proto │ │ ├── UseItemEncounterResponse.proto │ │ ├── UseItemGymResponse.proto │ │ ├── UseItemMoveRerollResponse.proto │ │ ├── UseItemPotionResponse.proto │ │ ├── UseItemRareCandyResponse.proto │ │ ├── UseItemReviveResponse.proto │ │ ├── UseItemXpBoostResponse.proto │ │ └── VerifyChallengeResponse.proto └── Settings │ ├── DownloadSettingsAction.proto │ ├── EventSettings.proto │ ├── FestivalSettings.proto │ ├── FortSettings.proto │ ├── GlobalSettings.proto │ ├── GpsSettings.proto │ ├── InventorySettings.proto │ ├── LevelSettings.proto │ ├── MapSettings.proto │ ├── Master │ ├── AvatarCustomizationSettings.proto │ ├── BadgeSettings.proto │ ├── CameraSettings.proto │ ├── EncounterSettings.proto │ ├── EquippedBadgeSettings.proto │ ├── FormSettings.proto │ ├── GenderSettings.proto │ ├── GymBadgeGmtSettings.proto │ ├── GymBattleSettings.proto │ ├── GymLevelSettings.proto │ ├── IapItemDisplay.proto │ ├── IapSettings.proto │ ├── Item │ │ ├── BattleAttributes.proto │ │ ├── EggIncubatorAttributes.proto │ │ ├── ExperienceBoostAttributes.proto │ │ ├── FoodAttributes.proto │ │ ├── FortModifierAttributes.proto │ │ ├── IncenseAttributes.proto │ │ ├── InventoryUpgradeAttributes.proto │ │ ├── PokeballAttributes.proto │ │ ├── PotionAttributes.proto │ │ └── ReviveAttributes.proto │ ├── ItemSettings.proto │ ├── MoveSequenceSettings.proto │ ├── MoveSettings.proto │ ├── PlayerLevelSettings.proto │ ├── Pokemon │ │ ├── CameraAttributes.proto │ │ ├── EncounterAttributes.proto │ │ ├── EvolutionBranch.proto │ │ ├── PokemonGenderSettings.proto │ │ └── StatsAttributes.proto │ ├── PokemonSettings.proto │ ├── PokemonUpgradeSettings.proto │ ├── Quest │ │ └── DailyQuestSettings.proto │ ├── QuestSettings.proto │ └── TypeEffectiveSettings.proto │ ├── NewsSettings.proto │ ├── NotificationSettings.proto │ ├── PasscodeSettings.proto │ ├── SfidaSettings.proto │ └── TranslationSettings.proto └── assist.py /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/.clang-format -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.current-version: -------------------------------------------------------------------------------- 1 | 2.14.0 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/README.md -------------------------------------------------------------------------------- /base/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/base/.clang-format -------------------------------------------------------------------------------- /base/v0.29.0.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/base/v0.29.0.proto -------------------------------------------------------------------------------- /base/v0.29.3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/base/v0.29.3.proto -------------------------------------------------------------------------------- /base/v0.31.0.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/base/v0.31.0.proto -------------------------------------------------------------------------------- /base/v0.33.0.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/base/v0.33.0.proto -------------------------------------------------------------------------------- /base/v0.35.0.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/base/v0.35.0.proto -------------------------------------------------------------------------------- /base/v0.37.0.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/base/v0.37.0.proto -------------------------------------------------------------------------------- /base/v0.39.0.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/base/v0.39.0.proto -------------------------------------------------------------------------------- /base/v0.41.2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/base/v0.41.2.proto -------------------------------------------------------------------------------- /base/v0.43.3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/base/v0.43.3.proto -------------------------------------------------------------------------------- /base/v0.43.4.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/base/v0.43.4.proto -------------------------------------------------------------------------------- /base/v0.45.0.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/base/v0.45.0.proto -------------------------------------------------------------------------------- /base/v0.47.1.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/base/v0.47.1.proto -------------------------------------------------------------------------------- /base/v0.49.1.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/base/v0.49.1.proto -------------------------------------------------------------------------------- /base/v0.51.0.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/base/v0.51.0.proto -------------------------------------------------------------------------------- /base/v0.53.1.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/base/v0.53.1.proto -------------------------------------------------------------------------------- /base/v0.55.0.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/base/v0.55.0.proto -------------------------------------------------------------------------------- /base/v0.57.2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/base/v0.57.2.proto -------------------------------------------------------------------------------- /base/v0.59.1.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/base/v0.59.1.proto -------------------------------------------------------------------------------- /base/v0.61.0.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/base/v0.61.0.proto -------------------------------------------------------------------------------- /base/v0.63.1.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/base/v0.63.1.proto -------------------------------------------------------------------------------- /base/v0.67.1.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/base/v0.67.1.proto -------------------------------------------------------------------------------- /base/v0.67.2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/base/v0.67.2.proto -------------------------------------------------------------------------------- /base/v0.69.0.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/base/v0.69.0.proto -------------------------------------------------------------------------------- /base/v0.69.1.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/base/v0.69.1.proto -------------------------------------------------------------------------------- /base/v0.71.0.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/base/v0.71.0.proto -------------------------------------------------------------------------------- /compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/compile.py -------------------------------------------------------------------------------- /compile_single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/compile_single.py -------------------------------------------------------------------------------- /helpers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /helpers/compile_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/helpers/compile_helper.py -------------------------------------------------------------------------------- /helpers/go_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/helpers/go_helper.py -------------------------------------------------------------------------------- /src/POGOProtos/Data/AssetDigestEntry.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/AssetDigestEntry.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Avatar/AvatarCustomization.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Avatar/AvatarCustomization.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Avatar/AvatarItem.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Avatar/AvatarItem.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/BackgroundToken.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/BackgroundToken.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Badge/AwardedGymBadge.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Badge/AwardedGymBadge.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Badge/BadgeCaptureReward.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Badge/BadgeCaptureReward.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Badge/GymBadgeStats.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Badge/GymBadgeStats.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Battle/Battle.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Battle/Battle.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Battle/BattleAction.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Battle/BattleAction.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Battle/BattleActionType.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Battle/BattleActionType.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Battle/BattleLog.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Battle/BattleLog.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Battle/BattleParticipant.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Battle/BattleParticipant.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Battle/BattlePokemonInfo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Battle/BattlePokemonInfo.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Battle/BattleResults.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Battle/BattleResults.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Battle/BattleState.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Battle/BattleState.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Battle/BattleType.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Battle/BattleType.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Battle/BattleUpdate.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Battle/BattleUpdate.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/BuddyPokemon.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/BuddyPokemon.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Capture/CaptureAward.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Capture/CaptureAward.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Capture/CaptureProbability.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Capture/CaptureProbability.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/ClientVersion.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/ClientVersion.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/DownloadUrlEntry.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/DownloadUrlEntry.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/FoodValue.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/FoodValue.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Gym/GymDefender.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Gym/GymDefender.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Gym/GymMembership.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Gym/GymMembership.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Gym/GymState.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Gym/GymState.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Gym/GymStatusAndDefenders.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Gym/GymStatusAndDefenders.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Logs/ActionLogEntry.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Logs/ActionLogEntry.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Logs/BuddyPokemonLogEntry.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Logs/BuddyPokemonLogEntry.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Logs/CatchPokemonLogEntry.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Logs/CatchPokemonLogEntry.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Logs/FortSearchLogEntry.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Logs/FortSearchLogEntry.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Logs/RaidRewardsLogEntry.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Logs/RaidRewardsLogEntry.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Player/ContactSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Player/ContactSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Player/Currency.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Player/Currency.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Player/DailyBonus.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Player/DailyBonus.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Player/EquippedBadge.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Player/EquippedBadge.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Player/PlayerAvatar.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Player/PlayerAvatar.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Player/PlayerAvatarType.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Player/PlayerAvatarType.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Player/PlayerCamera.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Player/PlayerCamera.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Player/PlayerCurrency.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Player/PlayerCurrency.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Player/PlayerPublicProfile.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Player/PlayerPublicProfile.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Player/PlayerStats.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Player/PlayerStats.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/PlayerBadge.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/PlayerBadge.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/PlayerData.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/PlayerData.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/PokedexEntry.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/PokedexEntry.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/PokemonData.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/PokemonData.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/PokemonDisplay.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/PokemonDisplay.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Quests/DailyQuest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Quests/DailyQuest.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Quests/Quest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Quests/Quest.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Raid/EventInfo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Raid/EventInfo.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Raid/Lobby.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Raid/Lobby.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Raid/Participation.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Raid/Participation.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Raid/PlayerRaidInfo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Raid/PlayerRaidInfo.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Raid/Raid.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Raid/Raid.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Raid/RaidEncounter.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Raid/RaidEncounter.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Raid/RaidInfo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Raid/RaidInfo.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Redeem/PokeCandy.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Redeem/PokeCandy.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Redeem/RedeemedAvatarItem.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Redeem/RedeemedAvatarItem.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/Redeem/RedeemedItem.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/Redeem/RedeemedItem.proto -------------------------------------------------------------------------------- /src/POGOProtos/Data/RedeemPasscodeReward.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Data/RedeemPasscodeReward.proto -------------------------------------------------------------------------------- /src/POGOProtos/Enums/ActivityType.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Enums/ActivityType.proto -------------------------------------------------------------------------------- /src/POGOProtos/Enums/BadgeType.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Enums/BadgeType.proto -------------------------------------------------------------------------------- /src/POGOProtos/Enums/CameraInterpolation.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Enums/CameraInterpolation.proto -------------------------------------------------------------------------------- /src/POGOProtos/Enums/CameraTarget.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Enums/CameraTarget.proto -------------------------------------------------------------------------------- /src/POGOProtos/Enums/Costume.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Enums/Costume.proto -------------------------------------------------------------------------------- /src/POGOProtos/Enums/EncounterType.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Enums/EncounterType.proto -------------------------------------------------------------------------------- /src/POGOProtos/Enums/Filter.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Enums/Filter.proto -------------------------------------------------------------------------------- /src/POGOProtos/Enums/Form.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Enums/Form.proto -------------------------------------------------------------------------------- /src/POGOProtos/Enums/Gender.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Enums/Gender.proto -------------------------------------------------------------------------------- /src/POGOProtos/Enums/GymBadgeType.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Enums/GymBadgeType.proto -------------------------------------------------------------------------------- /src/POGOProtos/Enums/IapItemCategory.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Enums/IapItemCategory.proto -------------------------------------------------------------------------------- /src/POGOProtos/Enums/ItemCategory.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Enums/ItemCategory.proto -------------------------------------------------------------------------------- /src/POGOProtos/Enums/ItemEffect.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Enums/ItemEffect.proto -------------------------------------------------------------------------------- /src/POGOProtos/Enums/NotificationCategory.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Enums/NotificationCategory.proto -------------------------------------------------------------------------------- /src/POGOProtos/Enums/NotificationState.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Enums/NotificationState.proto -------------------------------------------------------------------------------- /src/POGOProtos/Enums/Platform.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Enums/Platform.proto -------------------------------------------------------------------------------- /src/POGOProtos/Enums/PokemonFamilyId.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Enums/PokemonFamilyId.proto -------------------------------------------------------------------------------- /src/POGOProtos/Enums/PokemonId.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Enums/PokemonId.proto -------------------------------------------------------------------------------- /src/POGOProtos/Enums/PokemonMove.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Enums/PokemonMove.proto -------------------------------------------------------------------------------- /src/POGOProtos/Enums/PokemonMovementType.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Enums/PokemonMovementType.proto -------------------------------------------------------------------------------- /src/POGOProtos/Enums/PokemonRarity.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Enums/PokemonRarity.proto -------------------------------------------------------------------------------- /src/POGOProtos/Enums/PokemonType.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Enums/PokemonType.proto -------------------------------------------------------------------------------- /src/POGOProtos/Enums/QuestType.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Enums/QuestType.proto -------------------------------------------------------------------------------- /src/POGOProtos/Enums/RaidLevel.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Enums/RaidLevel.proto -------------------------------------------------------------------------------- /src/POGOProtos/Enums/Slot.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Enums/Slot.proto -------------------------------------------------------------------------------- /src/POGOProtos/Enums/TeamColor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Enums/TeamColor.proto -------------------------------------------------------------------------------- /src/POGOProtos/Enums/TutorialState.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Enums/TutorialState.proto -------------------------------------------------------------------------------- /src/POGOProtos/Enums/VariableName.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Enums/VariableName.proto -------------------------------------------------------------------------------- /src/POGOProtos/Inventory/AppliedItem.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Inventory/AppliedItem.proto -------------------------------------------------------------------------------- /src/POGOProtos/Inventory/AppliedItems.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Inventory/AppliedItems.proto -------------------------------------------------------------------------------- /src/POGOProtos/Inventory/Candy.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Inventory/Candy.proto -------------------------------------------------------------------------------- /src/POGOProtos/Inventory/EggIncubator.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Inventory/EggIncubator.proto -------------------------------------------------------------------------------- /src/POGOProtos/Inventory/EggIncubatorType.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Inventory/EggIncubatorType.proto -------------------------------------------------------------------------------- /src/POGOProtos/Inventory/EggIncubators.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Inventory/EggIncubators.proto -------------------------------------------------------------------------------- /src/POGOProtos/Inventory/ExclusiveTicketInfo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Inventory/ExclusiveTicketInfo.proto -------------------------------------------------------------------------------- /src/POGOProtos/Inventory/InventoryDelta.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Inventory/InventoryDelta.proto -------------------------------------------------------------------------------- /src/POGOProtos/Inventory/InventoryItem.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Inventory/InventoryItem.proto -------------------------------------------------------------------------------- /src/POGOProtos/Inventory/InventoryItemData.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Inventory/InventoryItemData.proto -------------------------------------------------------------------------------- /src/POGOProtos/Inventory/InventoryKey.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Inventory/InventoryKey.proto -------------------------------------------------------------------------------- /src/POGOProtos/Inventory/InventoryUpgrade.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Inventory/InventoryUpgrade.proto -------------------------------------------------------------------------------- /src/POGOProtos/Inventory/InventoryUpgradeType.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Inventory/InventoryUpgradeType.proto -------------------------------------------------------------------------------- /src/POGOProtos/Inventory/InventoryUpgrades.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Inventory/InventoryUpgrades.proto -------------------------------------------------------------------------------- /src/POGOProtos/Inventory/Item/ItemAward.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Inventory/Item/ItemAward.proto -------------------------------------------------------------------------------- /src/POGOProtos/Inventory/Item/ItemData.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Inventory/Item/ItemData.proto -------------------------------------------------------------------------------- /src/POGOProtos/Inventory/Item/ItemId.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Inventory/Item/ItemId.proto -------------------------------------------------------------------------------- /src/POGOProtos/Inventory/Item/ItemType.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Inventory/Item/ItemType.proto -------------------------------------------------------------------------------- /src/POGOProtos/Inventory/Loot.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Inventory/Loot.proto -------------------------------------------------------------------------------- /src/POGOProtos/Inventory/LootItem.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Inventory/LootItem.proto -------------------------------------------------------------------------------- /src/POGOProtos/Inventory/RaidTicket.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Inventory/RaidTicket.proto -------------------------------------------------------------------------------- /src/POGOProtos/Inventory/RaidTickets.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Inventory/RaidTickets.proto -------------------------------------------------------------------------------- /src/POGOProtos/Map/Fort/FortData.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Map/Fort/FortData.proto -------------------------------------------------------------------------------- /src/POGOProtos/Map/Fort/FortLureInfo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Map/Fort/FortLureInfo.proto -------------------------------------------------------------------------------- /src/POGOProtos/Map/Fort/FortModifier.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Map/Fort/FortModifier.proto -------------------------------------------------------------------------------- /src/POGOProtos/Map/Fort/FortRenderingType.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Map/Fort/FortRenderingType.proto -------------------------------------------------------------------------------- /src/POGOProtos/Map/Fort/FortSponsor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Map/Fort/FortSponsor.proto -------------------------------------------------------------------------------- /src/POGOProtos/Map/Fort/FortSummary.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Map/Fort/FortSummary.proto -------------------------------------------------------------------------------- /src/POGOProtos/Map/Fort/FortType.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Map/Fort/FortType.proto -------------------------------------------------------------------------------- /src/POGOProtos/Map/Fort/GymDisplay.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Map/Fort/GymDisplay.proto -------------------------------------------------------------------------------- /src/POGOProtos/Map/Fort/GymEvent.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Map/Fort/GymEvent.proto -------------------------------------------------------------------------------- /src/POGOProtos/Map/MapCell.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Map/MapCell.proto -------------------------------------------------------------------------------- /src/POGOProtos/Map/MapObjectsStatus.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Map/MapObjectsStatus.proto -------------------------------------------------------------------------------- /src/POGOProtos/Map/Pokemon/LobbyPokemon.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Map/Pokemon/LobbyPokemon.proto -------------------------------------------------------------------------------- /src/POGOProtos/Map/Pokemon/MapPokemon.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Map/Pokemon/MapPokemon.proto -------------------------------------------------------------------------------- /src/POGOProtos/Map/Pokemon/MotivatedPokemon.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Map/Pokemon/MotivatedPokemon.proto -------------------------------------------------------------------------------- /src/POGOProtos/Map/Pokemon/NearbyPokemon.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Map/Pokemon/NearbyPokemon.proto -------------------------------------------------------------------------------- /src/POGOProtos/Map/Pokemon/WildPokemon.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Map/Pokemon/WildPokemon.proto -------------------------------------------------------------------------------- /src/POGOProtos/Map/SpawnPoint.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Map/SpawnPoint.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Envelopes/AuthTicket.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Envelopes/AuthTicket.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Envelopes/RequestEnvelope.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Envelopes/RequestEnvelope.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Envelopes/ResponseEnvelope.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Envelopes/ResponseEnvelope.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Envelopes/Signature.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Envelopes/Signature.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Platform/PlatformRequestType.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Platform/PlatformRequestType.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Platform/Requests/BuyItemAndroidRequest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Platform/Requests/BuyItemAndroidRequest.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Platform/Requests/BuyItemPokeCoinsRequest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Platform/Requests/BuyItemPokeCoinsRequest.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Platform/Requests/GetStoreItemsRequest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Platform/Requests/GetStoreItemsRequest.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Platform/Requests/SendEncryptedSignatureRequest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Platform/Requests/SendEncryptedSignatureRequest.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Platform/Requests/UnknownPtr8Request.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Platform/Requests/UnknownPtr8Request.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Platform/Responses/BuyItemAndroidResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Platform/Responses/BuyItemAndroidResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Platform/Responses/BuyItemPokeCoinsResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Platform/Responses/BuyItemPokeCoinsResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Platform/Responses/GetStoreItemsResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Platform/Responses/GetStoreItemsResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Platform/Responses/SendEncryptedSignatureResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Platform/Responses/SendEncryptedSignatureResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Platform/Responses/UnknownPtr8Response.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Platform/Responses/UnknownPtr8Response.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/AddFortModifierMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/AddFortModifierMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/AttackGymMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/AttackGymMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/AwardFreeRaidTicketMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/AwardFreeRaidTicketMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/CatchPokemonMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/CatchPokemonMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/CheckAwardedBadgesMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/CheckAwardedBadgesMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/CheckChallengeMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/CheckChallengeMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/ClaimCodenameMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/ClaimCodenameMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/CollectDailyBonusMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/CollectDailyBonusMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/CollectDailyDefenderBonusMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/CollectDailyDefenderBonusMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/DiskEncounterMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/DiskEncounterMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/DownloadGmTemplatesMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/DownloadGmTemplatesMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/DownloadItemTemplatesMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/DownloadItemTemplatesMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/DownloadRemoteConfigVersionMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/DownloadRemoteConfigVersionMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/DownloadSettingsMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/DownloadSettingsMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/EchoMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/EchoMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/EncounterMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/EncounterMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/EncounterTutorialCompleteMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/EncounterTutorialCompleteMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/EquipBadgeMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/EquipBadgeMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/EvolvePokemonMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/EvolvePokemonMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/FortDeployPokemonMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/FortDeployPokemonMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/FortDetailsMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/FortDetailsMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/FortRecallPokemonMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/FortRecallPokemonMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/FortSearchMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/FortSearchMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/GetAssetDigestMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/GetAssetDigestMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/GetBuddyWalkedMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/GetBuddyWalkedMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/GetDownloadUrlsMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/GetDownloadUrlsMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/GetGymBadgeDetailsMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/GetGymBadgeDetailsMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/GetGymDetailsMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/GetGymDetailsMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/GetHatchedEggsMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/GetHatchedEggsMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/GetHoloInventoryMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/GetHoloInventoryMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/GetInboxMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/GetInboxMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/GetIncensePokemonMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/GetIncensePokemonMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/GetInventoryMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/GetInventoryMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/GetMapObjectsMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/GetMapObjectsMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/GetPlayerMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/GetPlayerMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/GetPlayerProfileMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/GetPlayerProfileMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/GetRaidDetailsMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/GetRaidDetailsMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/GymDeployMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/GymDeployMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/GymFeedPokemonMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/GymFeedPokemonMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/GymGetInfoMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/GymGetInfoMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/IncenseEncounterMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/IncenseEncounterMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/LevelUpRewardsMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/LevelUpRewardsMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/ListAvatarCustomizationsMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/ListAvatarCustomizationsMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/ListGymBadgesMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/ListGymBadgesMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/MarkTutorialCompleteMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/MarkTutorialCompleteMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/NicknamePokemonMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/NicknamePokemonMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/PlatformClientActionsMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/PlatformClientActionsMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/PushNotificationRegistryMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/PushNotificationRegistryMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/README.txt -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/RecycleInventoryItemMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/RecycleInventoryItemMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/RegisterBackgroundDeviceMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/RegisterBackgroundDeviceMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/ReleasePokemonMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/ReleasePokemonMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/SetAvatarItemAsViewedMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/SetAvatarItemAsViewedMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/SetAvatarMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/SetAvatarMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/SetBuddyPokemonMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/SetBuddyPokemonMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/SetContactSettingsMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/SetContactSettingsMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/SetFavoritePokemonMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/SetFavoritePokemonMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/SetPlayerTeamMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/SetPlayerTeamMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/SfidaActionLogMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/SfidaActionLogMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/SfidaRegistrationMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/SfidaRegistrationMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/StartGymBattleMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/StartGymBattleMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/UpdateNotificationMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/UpdateNotificationMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/UpgradePokemonMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/UpgradePokemonMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/UseIncenseMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/UseIncenseMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/UseItemCaptureMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/UseItemCaptureMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/UseItemEggIncubatorMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/UseItemEggIncubatorMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/UseItemEncounterMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/UseItemEncounterMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/UseItemGymMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/UseItemGymMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/UseItemMoveRerollMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/UseItemMoveRerollMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/UseItemPotionMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/UseItemPotionMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/UseItemRareCandyMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/UseItemRareCandyMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/UseItemReviveMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/UseItemReviveMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/UseItemXpBoostMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/UseItemXpBoostMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Messages/VerifyChallengeMessage.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Messages/VerifyChallengeMessage.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/Request.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/Request.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Requests/RequestType.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Requests/RequestType.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/AddFortModifierResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/AddFortModifierResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/AttackGymResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/AttackGymResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/AwardFreeRaidTicketResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/AwardFreeRaidTicketResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/CatchPokemonResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/CatchPokemonResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/CheckAwardedBadgesResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/CheckAwardedBadgesResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/CheckChallengeResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/CheckChallengeResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/ClaimCodenameResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/ClaimCodenameResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/CollectDailyBonusResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/CollectDailyBonusResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/CollectDailyDefenderBonusResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/CollectDailyDefenderBonusResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/DiskEncounterResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/DiskEncounterResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/DownloadGmTemplatesResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/DownloadGmTemplatesResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/DownloadItemTemplatesResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/DownloadItemTemplatesResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/DownloadRemoteConfigVersionResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/DownloadRemoteConfigVersionResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/DownloadSettingsResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/DownloadSettingsResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/EchoResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/EchoResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/EncounterResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/EncounterResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/EncounterTutorialCompleteResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/EncounterTutorialCompleteResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/EquipBadgeResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/EquipBadgeResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/EvolvePokemonResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/EvolvePokemonResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/FortDeployPokemonResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/FortDeployPokemonResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/FortDetailsResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/FortDetailsResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/FortRecallPokemonResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/FortRecallPokemonResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/FortSearchResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/FortSearchResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/GetAssetDigestResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/GetAssetDigestResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/GetBuddyWalkedResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/GetBuddyWalkedResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/GetDownloadUrlsResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/GetDownloadUrlsResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/GetGymBadgeDetailsResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/GetGymBadgeDetailsResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/GetGymDetailsResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/GetGymDetailsResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/GetHatchedEggsResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/GetHatchedEggsResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/GetHoloInventoryResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/GetHoloInventoryResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/GetInboxResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/GetInboxResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/GetIncensePokemonResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/GetIncensePokemonResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/GetInventoryResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/GetInventoryResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/GetMapObjectsResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/GetMapObjectsResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/GetPlayerProfileResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/GetPlayerProfileResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/GetPlayerResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/GetPlayerResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/GetRaidDetailsResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/GetRaidDetailsResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/GymDeployResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/GymDeployResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/GymFeedPokemonResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/GymFeedPokemonResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/GymGetInfoResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/GymGetInfoResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/IncenseEncounterResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/IncenseEncounterResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/LevelUpRewardsResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/LevelUpRewardsResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/ListAvatarCustomizationsResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/ListAvatarCustomizationsResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/ListGymBadgesResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/ListGymBadgesResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/MarkTutorialCompleteResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/MarkTutorialCompleteResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/NicknamePokemonResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/NicknamePokemonResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/PlatformClientActionsResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/PlatformClientActionsResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/PushNotificationRegistryResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/PushNotificationRegistryResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/README.txt -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/RecycleInventoryItemResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/RecycleInventoryItemResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/RegisterBackgroundDeviceResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/RegisterBackgroundDeviceResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/ReleasePokemonResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/ReleasePokemonResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/SetAvatarItemAsViewedResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/SetAvatarItemAsViewedResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/SetAvatarResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/SetAvatarResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/SetBuddyPokemonResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/SetBuddyPokemonResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/SetContactSettingsResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/SetContactSettingsResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/SetFavoritePokemonResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/SetFavoritePokemonResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/SetPlayerTeamResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/SetPlayerTeamResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/SfidaActionLogResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/SfidaActionLogResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/SfidaRegistrationResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/SfidaRegistrationResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/StartGymBattleResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/StartGymBattleResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/UpdateNotificationResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/UpdateNotificationResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/UpgradePokemonResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/UpgradePokemonResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/UseIncenseResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/UseIncenseResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/UseItemCaptureResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/UseItemCaptureResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/UseItemEggIncubatorResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/UseItemEggIncubatorResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/UseItemEncounterResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/UseItemEncounterResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/UseItemGymResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/UseItemGymResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/UseItemMoveRerollResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/UseItemMoveRerollResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/UseItemPotionResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/UseItemPotionResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/UseItemRareCandyResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/UseItemRareCandyResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/UseItemReviveResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/UseItemReviveResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/UseItemXpBoostResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/UseItemXpBoostResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Networking/Responses/VerifyChallengeResponse.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Networking/Responses/VerifyChallengeResponse.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/DownloadSettingsAction.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/DownloadSettingsAction.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/EventSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/EventSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/FestivalSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/FestivalSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/FortSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/FortSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/GlobalSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/GlobalSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/GpsSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/GpsSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/InventorySettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/InventorySettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/LevelSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/LevelSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/MapSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/MapSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/AvatarCustomizationSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/AvatarCustomizationSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/BadgeSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/BadgeSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/CameraSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/CameraSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/EncounterSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/EncounterSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/EquippedBadgeSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/EquippedBadgeSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/FormSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/FormSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/GenderSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/GenderSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/GymBadgeGmtSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/GymBadgeGmtSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/GymBattleSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/GymBattleSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/GymLevelSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/GymLevelSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/IapItemDisplay.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/IapItemDisplay.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/IapSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/IapSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/Item/BattleAttributes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/Item/BattleAttributes.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/Item/EggIncubatorAttributes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/Item/EggIncubatorAttributes.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/Item/ExperienceBoostAttributes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/Item/ExperienceBoostAttributes.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/Item/FoodAttributes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/Item/FoodAttributes.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/Item/FortModifierAttributes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/Item/FortModifierAttributes.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/Item/IncenseAttributes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/Item/IncenseAttributes.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/Item/InventoryUpgradeAttributes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/Item/InventoryUpgradeAttributes.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/Item/PokeballAttributes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/Item/PokeballAttributes.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/Item/PotionAttributes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/Item/PotionAttributes.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/Item/ReviveAttributes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/Item/ReviveAttributes.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/ItemSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/ItemSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/MoveSequenceSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/MoveSequenceSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/MoveSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/MoveSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/PlayerLevelSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/PlayerLevelSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/Pokemon/CameraAttributes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/Pokemon/CameraAttributes.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/Pokemon/EncounterAttributes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/Pokemon/EncounterAttributes.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/Pokemon/EvolutionBranch.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/Pokemon/EvolutionBranch.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/Pokemon/PokemonGenderSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/Pokemon/PokemonGenderSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/Pokemon/StatsAttributes.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/Pokemon/StatsAttributes.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/PokemonSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/PokemonSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/PokemonUpgradeSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/PokemonUpgradeSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/Quest/DailyQuestSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/Quest/DailyQuestSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/QuestSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/QuestSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/Master/TypeEffectiveSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/Master/TypeEffectiveSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/NewsSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/NewsSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/NotificationSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/NotificationSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/PasscodeSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/PasscodeSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/SfidaSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/SfidaSettings.proto -------------------------------------------------------------------------------- /src/POGOProtos/Settings/TranslationSettings.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/POGOProtos/Settings/TranslationSettings.proto -------------------------------------------------------------------------------- /src/assist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AeonLucid/POGOProtos/HEAD/src/assist.py --------------------------------------------------------------------------------