From 96a23d42cc9738cdb9fde078f2d78491abda1dbb Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Wed, 22 Apr 2015 22:23:52 +0200 Subject: [PATCH] * Added missing creature types not appearing on type lines of cards. Removed wrong creature type Forest. --- .../mage/cards/repository/CardRepository.java | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/Mage/src/mage/cards/repository/CardRepository.java b/Mage/src/mage/cards/repository/CardRepository.java index 47716a79447..291c7f7fed9 100644 --- a/Mage/src/mage/cards/repository/CardRepository.java +++ b/Mage/src/mage/cards/repository/CardRepository.java @@ -219,8 +219,30 @@ public enum CardRepository { for (CardInfo card : results) { subtypes.addAll(card.getSubTypes()); } + // Removing Forest because of Dryad Arbor + subtypes.remove("Forest"); // Some creature types are not directly included in card types and are added here manually subtypes.add("Blinkmoth"); + subtypes.add("Camarid"); + subtypes.add("Caribou"); + subtypes.add("Citizen"); + subtypes.add("Coward"); + subtypes.add("Deserter"); + subtypes.add("Germ"); + subtypes.add("Graveborn"); + subtypes.add("Orb"); + subtypes.add("Pentavite"); + subtypes.add("Pincher"); + subtypes.add("Prism"); + subtypes.add("Reflection"); + subtypes.add("Sand"); + subtypes.add("Saproling"); + subtypes.add("Serf"); + subtypes.add("Splinter"); + subtypes.add("Survivor"); + subtypes.add("Tetravite"); + subtypes.add("Triskelavite"); + } catch (SQLException ex) { } return subtypes;