PokeAPI / pokeapi

The Pokémon API
https://pokeapi.co
BSD 3-Clause "New" or "Revised" License
4.05k stars 921 forks source link

Honey tree encounters #1070

Closed bgravanda closed 2 months ago

bgravanda commented 2 months ago

Honey tree encounters are done just need to get pulled into master Take a look and check if everything is up to standards Here is wat the link is http://127.0.0.1:8000/api/v2/honey-trees/ this is what the page looks like { "count": 7, "next": null, "previous": null, "results": [ { "pokemon": { "name": "wurmple", "url": "http://127.0.0.1:8000/api/v2/pokemon/265/" }, "rarity": "30%-chance" }, { "pokemon": { "name": "combee", "url": "http://127.0.0.1:8000/api/v2/pokemon/415/" }, "rarity": "20%-chance" }, { "pokemon": { "name": "aipom", "url": "http://127.0.0.1:8000/api/v2/pokemon/190/" }, "rarity": "15%-chance" }, { "pokemon": { "name": "burmy", "url": "http://127.0.0.1:8000/api/v2/pokemon/412/" }, "rarity": "15%-chance" }, { "pokemon": { "name": "cherubi", "url": "http://127.0.0.1:8000/api/v2/pokemon/420/" }, "rarity": "15%-chance" }, { "pokemon": { "name": "heracross", "url": "http://127.0.0.1:8000/api/v2/pokemon/214/" }, "rarity": "5%-chance" }, { "pokemon": { "name": "munchlax", "url": "http://127.0.0.1:8000/api/v2/pokemon/446/" }, "rarity": "random-based-on-SID" } ] }

bgravanda commented 2 months ago

opened by mistake