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:
Merlingilb 2023-03-30 23:55:51 +02:00 committed by GitHub
parent 1d91abbb33
commit 537e072024
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 0 deletions

View 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);
}
}

View file

@ -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));
}