mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Merge the fem_sprite columns into has_gender_differences. #363
Chimecho does not have gender differences; its Platinum and HG/SS second- frame female backsprites have one hand posed a little differently, but no actual design differences. Torchic does count even though the only difference is a single-pixel dark speck on the male's rear; the speck was carried over into B/W even though the backsprites were entirely redone, so I'm guessing it either was deliberate or has ascended into canon via "let's throw it in anyway."
This commit is contained in:
parent
7e0cd75d29
commit
50d39ec2b6
2 changed files with 670 additions and 672 deletions
File diff suppressed because it is too large
Load diff
|
@ -838,10 +838,8 @@ class Pokemon(TableBase):
|
||||||
info=dict(description=u"True iff the Pokémon is a baby, i.e. a lowest-stage Pokémon that cannot breed but whose evolved form can."))
|
info=dict(description=u"True iff the Pokémon is a baby, i.e. a lowest-stage Pokémon that cannot breed but whose evolved form can."))
|
||||||
hatch_counter = Column(Integer, nullable=False,
|
hatch_counter = Column(Integer, nullable=False,
|
||||||
info=dict(description=u"Initial hatch counter: one must walk 255 × (hatch_counter + 1) steps before this Pokémon's egg hatches, unless utilizing bonuses like Flame Body's"))
|
info=dict(description=u"Initial hatch counter: one must walk 255 × (hatch_counter + 1) steps before this Pokémon's egg hatches, unless utilizing bonuses like Flame Body's"))
|
||||||
has_gen4_fem_sprite = Column(Boolean, nullable=False,
|
has_gender_differences = Column(Boolean, nullable=False,
|
||||||
info=dict(description=u"Set iff the species' female front sprite is different from the male's in generation IV"))
|
info=dict(description=u"Set iff the species exhibits enough sexual dimorphism to have separate sets of sprites in Gen IV and beyond."))
|
||||||
has_gen4_fem_back_sprite = Column(Boolean, nullable=False,
|
|
||||||
info=dict(description=u"Set iff the species' female back sprite is different from the male's in generation IV"))
|
|
||||||
order = Column(Integer, nullable=False, index=True,
|
order = Column(Integer, nullable=False, index=True,
|
||||||
info=dict(description=u"Order for sorting. Almost national order, except families and forms are grouped together."))
|
info=dict(description=u"Order for sorting. Almost national order, except families and forms are grouped together."))
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue