mirror of
https://github.com/veekun/pokedex.git
synced 2024-08-20 18:16:34 +00:00
Shorten some over-long move effect changelog entries.
I couldn't really shorten Dig and Fly's bug descriptions to 255 characters, so I also gave the column more space.
This commit is contained in:
parent
4a71461720
commit
edc222bbb6
2 changed files with 4 additions and 10 deletions
|
@ -5,9 +5,7 @@ effect_id,changed_in_version_group_id,effect
|
||||||
38,8,Works while asleep through [Sleep Talk]{move} if not at full health.
|
38,8,Works while asleep through [Sleep Talk]{move} if not at full health.
|
||||||
46,3,"If this move misses, the user takes 1 point of damage in recoil."
|
46,3,"If this move misses, the user takes 1 point of damage in recoil."
|
||||||
46,11,"If this move misses, the user takes half of the damage it would have inflicted in recoil."
|
46,11,"If this move misses, the user takes half of the damage it would have inflicted in recoil."
|
||||||
82,3,"Locks the user into this move.
|
82,3,"Locks the user into this move. Due to a bug, if this move misses, its [accuracy]{mechanic} drops to 1/256 as long as the user is still locked in."
|
||||||
|
|
||||||
Bug: If this move misses, [accuracy]{mechanic} for subsequent hits is changed to 1/256."
|
|
||||||
84,3,Can call any move except for [Struggle]{move} and itself.
|
84,3,Can call any move except for [Struggle]{move} and itself.
|
||||||
109,3,Does not interact with [Stomp]{move}.
|
109,3,Does not interact with [Stomp]{move}.
|
||||||
109,11,Raises [evasion]{mechanic} by one stage.
|
109,11,Raises [evasion]{mechanic} by one stage.
|
||||||
|
@ -17,15 +15,11 @@ Bug: If this move misses, [accuracy]{mechanic} for subsequent hits is changed to
|
||||||
151,3,Does not interact with [Minimize]{move}.
|
151,3,Does not interact with [Minimize]{move}.
|
||||||
153,3,Does not hit Pokémon under the effects of [Fly]{move}.
|
153,3,Does not hit Pokémon under the effects of [Fly]{move}.
|
||||||
155,11,Determines damage using each participant's base [Attack]{mechanic} and the opponent's base [Defense]{mechanic} in place of calculated stats.
|
155,11,Determines damage using each participant's base [Attack]{mechanic} and the opponent's base [Defense]{mechanic} in place of calculated stats.
|
||||||
156,3,"Can only be hit by [Swift]{move} while in the air.
|
156,3,"[Swift]{move} can hit the user while in the air, and no other moves can. Due to a bug, if the user fails to carry out the move's second turn, e.g. due to [paralysis]{mechanic}, it remains in the air until it switches out or uses Fly again successfully. It can act as if it were on the ground in the meantime, but moves still miss it."
|
||||||
|
|
||||||
Bug: If the user fails to attack on the second turn (e.g. due to confusion or paralysis), it remains in the air and immune to attack indefinitely, but can act normally on subsequent turns. This effect only ends if the user leaves the field or attempts [Fly]{move} again and succeeds."
|
|
||||||
161,8,Does not raise [Defense]{mechanic} or [Special Defense]{mechanic}.
|
161,8,Does not raise [Defense]{mechanic} or [Special Defense]{mechanic}.
|
||||||
175,8,Does not raise the user's [Special Defense]{mechanic}.
|
175,8,Does not raise the user's [Special Defense]{mechanic}.
|
||||||
180,11,Heals replacement Pokémon by half of their max HP.
|
180,11,Heals replacement Pokémon by half of their max HP.
|
||||||
255,3,Inflicts [normal]{type}-type damage and the user receives 1/2 of damage dealt in recoil.
|
255,3,Inflicts [normal]{type}-type damage and the user receives 1/2 of damage dealt in recoil.
|
||||||
257,3,"Can only be hit by [Swift]{move} while underground.
|
257,3,"[Swift]{move} can hit the user while underground, and no other moves can. Due to a bug, if the user fails to carry out the move's second turn, e.g. due to [paralysis]{mechanic}, it remains underground until it switches out or uses Dig again successfully. It can act as if it were aboveground in the meantime, but moves still miss it."
|
||||||
|
|
||||||
Bug: If the user fails to attack on the second turn (e.g. due to confusion or paralysis), it remains underground and immune to attack indefinitely, but can act normally on subsequent turns. This effect only ends if the user leaves the field or attempts [Dig]{move} again and succeeds."
|
|
||||||
261,8,Does not interact with [Hail]{move}.
|
261,8,Does not interact with [Hail]{move}.
|
||||||
274,11,Ignores [Wonder Guard]{ability}.
|
274,11,Ignores [Wonder Guard]{ability}.
|
||||||
|
|
|
|
@ -590,7 +590,7 @@ class MoveEffectChangelog(TableBase):
|
||||||
info=dict(description="The ID of the effect that changed"))
|
info=dict(description="The ID of the effect that changed"))
|
||||||
changed_in_version_group_id = Column(Integer, ForeignKey('version_groups.id'), primary_key=True, nullable=False,
|
changed_in_version_group_id = Column(Integer, ForeignKey('version_groups.id'), primary_key=True, nullable=False,
|
||||||
info=dict(description="The ID of the version group in which the effect changed"))
|
info=dict(description="The ID of the version group in which the effect changed"))
|
||||||
effect = Column(markdown.MarkdownColumn(255), nullable=False,
|
effect = Column(markdown.MarkdownColumn(512), nullable=False,
|
||||||
info=dict(description="A description of the old behavior", format='markdown'))
|
info=dict(description="A description of the old behavior", format='markdown'))
|
||||||
|
|
||||||
class MoveFlag(TableBase):
|
class MoveFlag(TableBase):
|
||||||
|
|
Loading…
Reference in a new issue