mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 12:31:59 -08:00
Implemented Conqueror's Galleon/Foothold
This commit is contained in:
parent
601e7cba9b
commit
fce99fa182
6 changed files with 186 additions and 15 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue