From 949e861efdb509aa0357d5ed2105977fceb7edd2 Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Fri, 20 Sep 2013 19:35:51 +0200 Subject: [PATCH] Updated Card Repository version. --- .../mage/abilities/keyword/IntimidateAbility.java | 13 +++++++++++++ Mage/src/mage/cards/repository/CardRepository.java | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/Mage/src/mage/abilities/keyword/IntimidateAbility.java b/Mage/src/mage/abilities/keyword/IntimidateAbility.java index 298d9b14635..90441ab593e 100644 --- a/Mage/src/mage/abilities/keyword/IntimidateAbility.java +++ b/Mage/src/mage/abilities/keyword/IntimidateAbility.java @@ -9,6 +9,19 @@ import mage.constants.Duration; import mage.game.Game; import mage.game.permanent.Permanent; +/** + * 702.13. Intimidate # + * + * 702.13a Intimidate is an evasion ability. + * + * 702.13b A creature with intimidate can't be blocked except by artifact creatures + * and/or creatures that share a color with it. (See rule 509, "Declare Blockers Step.") # + * + * 702.13c Multiple instances of intimidate on the same creature are redundant. + * + * + * + */ public class IntimidateAbility extends EvasionAbility implements MageSingleton { private static final IntimidateAbility fInstance = new IntimidateAbility(); diff --git a/Mage/src/mage/cards/repository/CardRepository.java b/Mage/src/mage/cards/repository/CardRepository.java index 47f62d225fb..b3de243f822 100644 --- a/Mage/src/mage/cards/repository/CardRepository.java +++ b/Mage/src/mage/cards/repository/CardRepository.java @@ -55,7 +55,7 @@ public enum CardRepository { private static final String JDBC_URL = "jdbc:sqlite:db/cards.db"; private static final String VERSION_ENTITY_NAME = "card"; - private static final long CARD_DB_VERSION = 14; + private static final long CARD_DB_VERSION = 15; private Random random = new Random(); private Dao cardDao;