Implemented Conqueror's Galleon/Foothold

This commit is contained in:
Evan Kranzler 2017-09-05 19:39:04 -04:00
parent 601e7cba9b
commit fce99fa182
6 changed files with 186 additions and 15 deletions

View file

@ -4,7 +4,7 @@ package mage.abilities;
* Created by IGOUDT on 5-3-2017.
*/
public enum Gender {
MALE("his", "him"), FEMALE("her", "her");
MALE("his", "him"), FEMALE("her", "her"), NEUTRAL("its", "it");
String personalPronoun;
String possesivePronoun;
@ -22,5 +22,4 @@ public enum Gender {
return possesivePronoun;
}
}

View file

@ -23,9 +23,12 @@ import mage.players.Player;
*/
public class ExileAndReturnTransformedSourceEffect extends OneShotEffect {
protected Effect additionalEffect;
public ExileAndReturnTransformedSourceEffect() {
this(Gender.NEUTRAL);
}
public ExileAndReturnTransformedSourceEffect(Gender gender) {
this(gender, null);
}