PokeAPI/pokeapi

100% female pokemon sprites should be listed under front_female instead of front_default

Open

#271 aperta il 18 ott 2016

Vedi su GitHub
 (2 commenti) (1 reazione) (0 assegnatari)Python (1128 fork)user submission
help wanted

Metriche repository

Star
 (5191 star)
Metriche merge PR
 (Merge medio 5g 14h) (26 PR mergiate in 30 g)

Descrizione

There are some pokemon that have a 100% female gender rate. It would make more sense if their sprites were listed under the sprites/front_female URI. Right now they are listed under the sprites/front_default URI. For instance, the Jynx species is all female. Below is the sprite resource.

sprites: {
    back_female: null,
    back_shiny_female: null,
    back_default: "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/back/124.png",
    front_female: null,
    front_shiny_female: null,
    back_shiny: "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/back/shiny/124.png",
    front_default: "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/124.png",
    front_shiny: "https://raw.githubusercontent.com/PokeAPI/sprites/master/sprites/pokemon/shiny/124.png"
}

As you can see. The URL for front_female is null, which is where I believe the resource should be.

Guida contributor