public async Task<CatchPokemonResponse> CatchPokemon(ulong encounterId, string spawnPointGuid, double pokemonLat, double pokemonLng, MiscEnums.Item pokeball) { var customRequest = new Request.Types.CatchPokemonRequest { EncounterId = encounterId, Pokeball = (int) pokeball, SpawnPointGuid = spawnPointGuid, HitPokemon = 1, NormalizedReticleSize = Utils.FloatAsUlong(1.950), SpinModifier = Utils.FloatAsUlong(1), NormalizedHitPosition = Utils.FloatAsUlong(1) }; var catchPokemonRequest = RequestBuilder.GetRequest(_unknownAuth, CurrentLat, CurrentLng, CurrentAltitude, new Request.Types.Requests { Type = (int) RequestType.CATCH_POKEMON, Message = customRequest.ToByteString() }); return await _httpClient.PostProtoPayload<Request, CatchPokemonResponse>($"https://{_apiUrl}/rpc", catchPokemonRequest); }
public async Task<int> GetItemAmountByType(MiscEnums.Item type) { var pokeballs = await GetItems(); return pokeballs.FirstOrDefault(i => (MiscEnums.Item)i.Item_ == type)?.Count ?? 0; }