forked from External/mage
Refactoring
See github line by line comments in 'File changed'
This commit is contained in:
parent
01bb9572e9
commit
c0cf22bbf7
31 changed files with 51 additions and 53 deletions
|
|
@ -28,6 +28,8 @@
|
|||
package mage.game.permanent.token;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.Collections;
|
||||
|
||||
import mage.constants.CardType;
|
||||
|
||||
/**
|
||||
|
|
@ -38,7 +40,7 @@ public class EwokToken extends Token {
|
|||
|
||||
public EwokToken() {
|
||||
super("Ewok", "1/1 green Ewok creature tokens", 1, 1);
|
||||
availableImageSetCodes.addAll(Arrays.asList("SWS"));
|
||||
availableImageSetCodes.addAll(Collections.singletonList("SWS"));
|
||||
|
||||
cardType.add(CardType.CREATURE);
|
||||
subtype.add("Ewok");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue