From: adrianna Date: Sat, 17 May 2014 22:57:36 +0000 (+0200) Subject: swapped msb and health/bits in wording to make clear that msb takes precedence X-Git-Tag: 0.1~10^2~5 X-Git-Url: https://git.ctpug.org.za/?p=naja.git;a=commitdiff_plain;h=30bddf48c6a8efd56c0a9e966cc388a57f3595dc swapped msb and health/bits in wording to make clear that msb takes precedence --- diff --git a/naja/actions.py b/naja/actions.py index e1ec1e0..08d6369 100644 --- a/naja/actions.py +++ b/naja/actions.py @@ -94,7 +94,7 @@ class DoNothing(LocationAction): class LoseHealthOrMSB(LocationAction): - TEXT = "Lose {HEALTH} or {MSB}." + TEXT = "Lose {MSB} or {HEALTH}." MSB_GLYPH = ACTION_GLYPHS.DAMAGE def perform_action(self, board, location): @@ -233,7 +233,7 @@ class ShiftBits(LocationAction): 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 @@ -276,7 +276,7 @@ class GainHealth(LocationAction): 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