mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 12:31:59 -08:00
Implemented Incubation // Incongruity
This commit is contained in:
parent
6d21ccb6fc
commit
20d5bfc3c9
4 changed files with 89 additions and 7 deletions
|
|
@ -9,9 +9,9 @@ import mage.MageInt;
|
|||
*
|
||||
* @author spjspj
|
||||
*/
|
||||
public final class RapidHybridizationToken extends TokenImpl {
|
||||
public final class FrogLizardToken extends TokenImpl {
|
||||
|
||||
public RapidHybridizationToken() {
|
||||
public FrogLizardToken() {
|
||||
super("Frog Lizard", "3/3 green Frog Lizard creature token");
|
||||
this.setOriginalExpansionSetCode("GTC");
|
||||
cardType.add(CardType.CREATURE);
|
||||
|
|
@ -25,11 +25,11 @@ public final class RapidHybridizationToken extends TokenImpl {
|
|||
toughness = new MageInt(3);
|
||||
}
|
||||
|
||||
public RapidHybridizationToken(final RapidHybridizationToken token) {
|
||||
public FrogLizardToken(final FrogLizardToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public RapidHybridizationToken copy() {
|
||||
return new RapidHybridizationToken(this);
|
||||
public FrogLizardToken copy() {
|
||||
return new FrogLizardToken(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue