Skip to content

Commit

Permalink
Merge pull request #50 from gseitz/angelic_benediction_fix
Browse files Browse the repository at this point in the history
Angelic Benediction: Adhere to the 'may' in the card text.
  • Loading branch information
MedeaMelana committed Jun 24, 2014
2 parents 404bd48 + 8d616c8 commit 138b6ee
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Magic-Cards/src/Magic/M13.hs
Expand Up @@ -85,7 +85,9 @@ angelicBenediction = mkCard $ do
mkTapTriggerObject :: PlayerRef -> Magic ()
mkTapTriggerObject p = do
ts <- askTarget p targetCreature
mkTargetTrigger p ts (will . TapPermanent)
mkTargetTrigger p ts $ \t -> do
shouldTap <- askYesNo p "Do you want to tap target creature?"
when shouldTap $ will (TapPermanent t)

attendedKnight :: Card
attendedKnight = mkCard $ do
Expand Down Expand Up @@ -364,8 +366,7 @@ warPriestOfThune = mkCard $ do
ench <- askTarget you targetEnchantment
mkTargetTrigger you ench $ \ref -> do
shouldDestroy <- askYesNo you "Destroy target enchantment?"
when shouldDestroy $
will $ DestroyPermanent ref True
when shouldDestroy $ will (DestroyPermanent ref True)


-- BLUE
Expand Down

0 comments on commit 138b6ee

Please sign in to comment.