(cls, move, stat=None, change=1)
| 1158 | |
| 1159 | @classmethod |
| 1160 | def setup_move_stat_change_data(cls, move, stat=None, change=1): |
| 1161 | stat = stat or cls.setup_stat_data(name="stt for mv") |
| 1162 | |
| 1163 | move_stat_change = MoveMetaStatChange.objects.create( |
| 1164 | move=move, stat=stat, change=change |
| 1165 | ) |
| 1166 | move_stat_change.save() |
| 1167 | |
| 1168 | return move_stat_change |
| 1169 | |
| 1170 | @classmethod |
| 1171 | def setup_pokeathlon_stat_data(cls, name="pkathln stt"): |
no test coverage detected