Describe the enemy saucer flying overhead.
| 257 | |
| 258 | |
| 259 | class SaucerGlyph(EnemyGlyph): |
| 260 | """Describe the enemy saucer flying overhead.""" |
| 261 | |
| 262 | __mapper_args__ = {"polymorphic_identity": "saucer"} |
| 263 | |
| 264 | def glyph_for_state(self, coord, state): |
| 265 | if state["flip"] == 0: |
| 266 | return self.alt_data |
| 267 | else: |
| 268 | return self.data |
| 269 | |
| 270 | |
| 271 | class MessageGlyph(Glyph): |