mirror of
https://github.com/magefree/mage.git
synced 2025-12-21 02:52:02 -08:00
Fix infect insect token not appearing with ONC image
This commit is contained in:
parent
d5e74dd710
commit
aef71f20a4
1 changed files with 3 additions and 1 deletions
|
|
@ -5,6 +5,8 @@ import mage.abilities.keyword.InfectAbility;
|
||||||
import mage.constants.CardType;
|
import mage.constants.CardType;
|
||||||
import mage.constants.SubType;
|
import mage.constants.SubType;
|
||||||
|
|
||||||
|
import java.util.Arrays;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author nantuko
|
* @author nantuko
|
||||||
*/
|
*/
|
||||||
|
|
@ -19,7 +21,7 @@ public final class InsectInfectToken extends TokenImpl {
|
||||||
power = new MageInt(1);
|
power = new MageInt(1);
|
||||||
toughness = new MageInt(1);
|
toughness = new MageInt(1);
|
||||||
addAbility(InfectAbility.getInstance());
|
addAbility(InfectAbility.getInstance());
|
||||||
setOriginalExpansionSetCode("SOM");
|
availableImageSetCodes = Arrays.asList("SOM", "ONC");
|
||||||
}
|
}
|
||||||
|
|
||||||
public InsectInfectToken(final InsectInfectToken token) {
|
public InsectInfectToken(final InsectInfectToken token) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue