class LoseHealthOrMSB(LocationAction):
- TEXT = "Lose {HEALTH} or {MSB}."
+ TEXT = "Lose {MSB} or {HEALTH}."
MSB_GLYPH = ACTION_GLYPHS.DAMAGE
def perform_action(self, board, location):
class LoseHealthOrMSBAndSetBits(LocationAction):
- TEXT = "Lose {HEALTH} or {MSB}, then set %(location_bits)s."
+ TEXT = "Lose {MSB} or {HEALTH}, then set %(location_bits)s."
GLYPHS = (ACTION_GLYPHS.SET_BITS,)
MSB_GLYPH = ACTION_GLYPHS.DAMAGE
class GainHealthAndClearBitsOrMSB(LocationAction):
- TEXT = "Gain {HEALTH}, then clear %(location_bits)s or {MSB}."
+ TEXT = "Gain {HEALTH}, then clear {MSB} or %(location_bits)s."
GLYPHS = (ACTION_GLYPHS.HEAL,)
MSB_GLYPH = ACTION_GLYPHS.CLEAR_BITS