mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 13:19:18 -08:00
updated GRN spoiler and reprints
This commit is contained in:
parent
238774b244
commit
5773e49fcf
4 changed files with 46 additions and 18 deletions
|
|
@ -18,12 +18,12 @@ import mage.target.common.TargetCreaturePermanent;
|
|||
*
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class AssuranceAssociation extends SplitCard {
|
||||
public final class AssureAssemble extends SplitCard {
|
||||
|
||||
public AssuranceAssociation(UUID ownerId, CardSetInfo setInfo) {
|
||||
public AssureAssemble(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{G/W}{G/W}", "{4}{G}{W}", SpellAbilityType.SPLIT);
|
||||
|
||||
// Assurance
|
||||
// Assure
|
||||
// Put a +1/+1 counter on target creature. It gains indestructible until end of turn.
|
||||
this.getLeftHalfCard().getSpellAbility().addEffect(
|
||||
new AddCountersTargetEffect(CounterType.P1P1.createInstance())
|
||||
|
|
@ -38,19 +38,19 @@ public final class AssuranceAssociation extends SplitCard {
|
|||
new TargetCreaturePermanent()
|
||||
);
|
||||
|
||||
// Association
|
||||
// Assemble
|
||||
// Create three 2/2 green and white Elf Knight creature tokens with vigilance.
|
||||
this.getRightHalfCard().getSpellAbility().addEffect(
|
||||
new CreateTokenEffect(new ElfKnightToken(), 3)
|
||||
);
|
||||
}
|
||||
|
||||
public AssuranceAssociation(final AssuranceAssociation card) {
|
||||
public AssureAssemble(final AssureAssemble card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public AssuranceAssociation copy() {
|
||||
return new AssuranceAssociation(this);
|
||||
public AssureAssemble copy() {
|
||||
return new AssureAssemble(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package mage.cards.d;
|
||||
package mage.cards.c;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.abilities.effects.common.search.SearchLibraryPutInPlayEffect;
|
||||
|
|
@ -18,7 +18,7 @@ import mage.target.common.TargetCardInLibrary;
|
|||
*
|
||||
* @author TheElk801
|
||||
*/
|
||||
public final class Detour extends CardImpl {
|
||||
public final class CircuitousRoute extends CardImpl {
|
||||
|
||||
private static final FilterCard filter
|
||||
= new FilterCard("basic land cards and/or Gate cards");
|
||||
|
|
@ -32,7 +32,7 @@ public final class Detour extends CardImpl {
|
|||
));
|
||||
}
|
||||
|
||||
public Detour(UUID ownerId, CardSetInfo setInfo) {
|
||||
public CircuitousRoute(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{3}{G}");
|
||||
|
||||
// Search your library for up to two basic lands and/or Gates and put them onto the battlefield tapped.
|
||||
|
|
@ -41,12 +41,12 @@ public final class Detour extends CardImpl {
|
|||
));
|
||||
}
|
||||
|
||||
public Detour(final Detour card) {
|
||||
public CircuitousRoute(final CircuitousRoute card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Detour copy() {
|
||||
return new Detour(this);
|
||||
public CircuitousRoute copy() {
|
||||
return new CircuitousRoute(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -27,7 +27,7 @@ public final class GuildsOfRavnica extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Arclight Phoenix", 91, Rarity.MYTHIC, mage.cards.a.ArclightPhoenix.class));
|
||||
cards.add(new SetCardInfo("Artful Takedown", 151, Rarity.COMMON, mage.cards.a.ArtfulTakedown.class));
|
||||
cards.add(new SetCardInfo("Assassin's Trophy", 152, Rarity.RARE, mage.cards.a.AssassinsTrophy.class));
|
||||
cards.add(new SetCardInfo("Assurance // Association", 221, Rarity.RARE, mage.cards.a.AssuranceAssociation.class));
|
||||
cards.add(new SetCardInfo("Assure // Assemble", 221, Rarity.RARE, mage.cards.a.AssureAssemble.class));
|
||||
cards.add(new SetCardInfo("Attendant of Vraska", 271, Rarity.UNCOMMON, mage.cards.a.AttendantOfVraska.class));
|
||||
cards.add(new SetCardInfo("Aurelia, Exemplar of Justice", 153, Rarity.MYTHIC, mage.cards.a.AureliaExemplarOfJustice.class));
|
||||
cards.add(new SetCardInfo("Barging Sergeant", 92, Rarity.COMMON, mage.cards.b.BargingSergeant.class));
|
||||
|
|
@ -43,6 +43,7 @@ public final class GuildsOfRavnica extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Centaur Peacemaker", 158, Rarity.COMMON, mage.cards.c.CentaurPeacemaker.class));
|
||||
cards.add(new SetCardInfo("Chemister's Insight", 32, Rarity.UNCOMMON, mage.cards.c.ChemistersInsight.class));
|
||||
cards.add(new SetCardInfo("Chromatic Lantern", 233, Rarity.RARE, mage.cards.c.ChromaticLantern.class));
|
||||
cards.add(new SetCardInfo("Circuitous Route", 125, Rarity.UNCOMMON, mage.cards.c.CircuitousRoute.class));
|
||||
cards.add(new SetCardInfo("Citywatch Sphinx", 33, Rarity.UNCOMMON, mage.cards.c.CitywatchSphinx.class));
|
||||
cards.add(new SetCardInfo("Command the Storm", 94, Rarity.COMMON, mage.cards.c.CommandTheStorm.class));
|
||||
cards.add(new SetCardInfo("Conclave Guildmage", 162, Rarity.UNCOMMON, mage.cards.c.ConclaveGuildmage.class));
|
||||
|
|
@ -53,7 +54,6 @@ public final class GuildsOfRavnica extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Darkblade Agent", 164, Rarity.COMMON, mage.cards.d.DarkbladeAgent.class));
|
||||
cards.add(new SetCardInfo("Deadly Visit", 68, Rarity.COMMON, mage.cards.d.DeadlyVisit.class));
|
||||
cards.add(new SetCardInfo("Deafening Clarion", 165, Rarity.RARE, mage.cards.d.DeafeningClarion.class));
|
||||
cards.add(new SetCardInfo("Detour", 125, Rarity.UNCOMMON, mage.cards.d.Detour.class));
|
||||
cards.add(new SetCardInfo("Dimir Guildgate", 245, Rarity.COMMON, mage.cards.d.DimirGuildgate.class));
|
||||
cards.add(new SetCardInfo("Dimir Guildgate", 246, Rarity.COMMON, mage.cards.d.DimirGuildgate.class));
|
||||
cards.add(new SetCardInfo("Dimir Informant", 36, Rarity.COMMON, mage.cards.d.DimirInformant.class));
|
||||
|
|
@ -176,6 +176,7 @@ public final class GuildsOfRavnica extends ExpansionSet {
|
|||
cards.add(new SetCardInfo("Wary Okapi", 149, Rarity.COMMON, mage.cards.w.WaryOkapi.class));
|
||||
cards.add(new SetCardInfo("Watcher in the Mist", 59, Rarity.COMMON, mage.cards.w.WatcherInTheMist.class));
|
||||
cards.add(new SetCardInfo("Watery Grave", 259, Rarity.RARE, mage.cards.w.WateryGrave.class));
|
||||
cards.add(new SetCardInfo("Wee Dragonauts", 214, Rarity.UNCOMMON, mage.cards.w.WeeDragonauts.class));
|
||||
cards.add(new SetCardInfo("Whisper Agent", 220, Rarity.COMMON, mage.cards.w.WhisperAgent.class));
|
||||
cards.add(new SetCardInfo("Whispering Snitch", 90, Rarity.UNCOMMON, mage.cards.w.WhisperingSnitch.class));
|
||||
cards.add(new SetCardInfo("Wojek Bodyguard", 120, Rarity.COMMON, mage.cards.w.WojekBodyguard.class));
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue