mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
MOM: Added card "Yargle and Multani" and its abilities and effects (#10027)
* MOM: Added card "Yargle and Multani" and its abilities and effects * added legendary type * added art variant --------- Co-authored-by: Daniel Eberhard <daniel.h.e@gmx.de> Co-authored-by: Evan Kranzler <theelk801@gmail.com>
This commit is contained in:
parent
1d91abbb33
commit
537e072024
2 changed files with 33 additions and 0 deletions
31
Mage.Sets/src/mage/cards/y/YargleAndMultani.java
Normal file
31
Mage.Sets/src/mage/cards/y/YargleAndMultani.java
Normal file
|
@ -0,0 +1,31 @@
|
|||
package mage.cards.y;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.constants.SubType;
|
||||
import mage.constants.SuperType;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
public class YargleAndMultani extends CardImpl {
|
||||
public YargleAndMultani(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{3}{B}{B}{G}");
|
||||
this.addSuperType(SuperType.LEGENDARY);
|
||||
this.addSubType(SubType.FROG);
|
||||
this.addSubType(SubType.SPIRIT);
|
||||
this.addSubType(SubType.ELEMENTAL);
|
||||
this.power = new MageInt(18);
|
||||
this.toughness = new MageInt(6);
|
||||
}
|
||||
|
||||
private YargleAndMultani(final YargleAndMultani card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public YargleAndMultani copy() {
|
||||
return new YargleAndMultani(this);
|
||||
}
|
||||
}
|
|
@ -42,6 +42,8 @@ public final class MarchOfTheMachine extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Tranquil Cove", 275, Rarity.COMMON, mage.cards.t.TranquilCove.class));
|
||||
cards.add(new SetCardInfo("Transcendent Message", 83, Rarity.RARE, mage.cards.t.TranscendentMessage.class));
|
||||
cards.add(new SetCardInfo("Wind-Scarred Crag", 276, Rarity.COMMON, mage.cards.w.WindScarredCrag.class));
|
||||
cards.add(new SetCardInfo("Yargle and Multani", 256, Rarity.RARE, mage.cards.y.YargleAndMultani.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Yargle and Multani", 317, Rarity.RARE, mage.cards.y.YargleAndMultani.class, NON_FULL_USE_VARIOUS));
|
||||
cards.add(new SetCardInfo("Zephyr Winder", 328, Rarity.COMMON, mage.cards.z.ZephyrWinder.class));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue