id,name,description
-1,None,No damage
-2,Physical,"Physical damage, controlled by Attack and Defense"
-3,Special,"Special damage, controlled by Special Attack and Special Defense"
+1,non-damaging,No damage
+2,physical,"Physical damage, controlled by Attack and Defense"
+3,special,"Special damage, controlled by Special Attack and Special Defense"
__tablename__ = 'move_damage_classes'
id = Column(Integer, primary_key=True, nullable=False,
info=dict(description="A numeric ID"))
- name = Column(Unicode(8), nullable=False,
+ name = Column(Unicode(16), nullable=False,
info=dict(description="An English name of the class", format='plaintext'))
description = Column(Unicode(64), nullable=False,
info=dict(description="An English description of the class", format='plaintext'))