mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
Unmake (Eventide)
This commit is contained in:
parent
90ae07d014
commit
f37f2d8b63
6 changed files with 91 additions and 2 deletions
|
@ -25,7 +25,7 @@ public class ManaSymbols {
|
|||
|
||||
private static final String[] sets = {"DIS", "GPT", "RAV", "MRD",
|
||||
"10E", "HOP", "ALA", "CFX", "ARB", "ZEN", "WWK", "ROE", "SOM", "M10", "M11",
|
||||
"MBS", "DDF", "DST"};
|
||||
"MBS", "DDF", "DST", "EVE"};
|
||||
|
||||
|
||||
static public void loadImages() {
|
||||
|
|
|
@ -12,7 +12,7 @@ import static org.mage.plugins.card.dl.DownloadJob.toFile;
|
|||
|
||||
public class GathererSets implements Iterable<DownloadJob> {
|
||||
private static final File outDir = new File("plugins/images/sets");
|
||||
private static final String[] symbols = {"DIS", "DST", "GPT", "RAV", "MRD", "10E", "HOP"};
|
||||
private static final String[] symbols = {"DIS", "DST", "GPT", "RAV", "MRD", "10E", "HOP", "EVE"};
|
||||
private static final String[] withMythics = {"ALA", "CFX", "ARB", "ZEN", "WWK", "ROE", "SOM", "M10", "M11", "DDF", "MBS"};
|
||||
|
||||
@Override
|
||||
|
|
25
Mage.Sets/src/mage/sets/Eventide.java
Normal file
25
Mage.Sets/src/mage/sets/Eventide.java
Normal file
|
@ -0,0 +1,25 @@
|
|||
package mage.sets;
|
||||
|
||||
import mage.Constants;
|
||||
import mage.cards.ExpansionSet;
|
||||
|
||||
import java.util.GregorianCalendar;
|
||||
|
||||
public class Eventide extends ExpansionSet {
|
||||
private static final Eventide fINSTANCE = new Eventide();
|
||||
|
||||
public static Eventide getInstance() {
|
||||
return fINSTANCE;
|
||||
}
|
||||
|
||||
private Eventide() {
|
||||
super("Eventide", "EVE", "", "mage.sets.eventide", new GregorianCalendar(2008, 5, 25).getTime(), Constants.SetType.EXPANSION);
|
||||
this.blockName = "Shadowmoor";
|
||||
this.hasBoosters = true;
|
||||
this.numBoosterLands = 1;
|
||||
this.numBoosterCommon = 10;
|
||||
this.numBoosterUncommon = 3;
|
||||
this.numBoosterRare = 1;
|
||||
this.ratioBoosterMythic = 0;
|
||||
}
|
||||
}
|
|
@ -69,6 +69,7 @@ public class Sets extends HashMap<String, ExpansionSet> {
|
|||
this.addSet(Darksteel.getInstance());
|
||||
this.addSet(Dissension.getInstance());
|
||||
this.addSet(ElspethvsTezzeret.getInstance());
|
||||
this.addSet(Eventide.getInstance());
|
||||
this.addSet(Guildpact.getInstance());
|
||||
this.addSet(Guru.getInstance());
|
||||
this.addSet(Magic2010.getInstance());
|
||||
|
|
62
Mage.Sets/src/mage/sets/eventide/Unmake.java
Normal file
62
Mage.Sets/src/mage/sets/eventide/Unmake.java
Normal file
|
@ -0,0 +1,62 @@
|
|||
/*
|
||||
* Copyright 2010 BetaSteward_at_googlemail.com. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without modification, are
|
||||
* permitted provided that the following conditions are met:
|
||||
*
|
||||
* 1. Redistributions of source code must retain the above copyright notice, this list of
|
||||
* conditions and the following disclaimer.
|
||||
*
|
||||
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
|
||||
* of conditions and the following disclaimer in the documentation and/or other materials
|
||||
* provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY BetaSteward_at_googlemail.com ``AS IS'' AND ANY EXPRESS OR IMPLIED
|
||||
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
||||
* FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL BetaSteward_at_googlemail.com OR
|
||||
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
||||
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
||||
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
|
||||
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
||||
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
|
||||
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*
|
||||
* The views and conclusions contained in the software and documentation are those of the
|
||||
* authors and should not be interpreted as representing official policies, either expressed
|
||||
* or implied, of BetaSteward_at_googlemail.com.
|
||||
*/
|
||||
|
||||
package mage.sets.eventide;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.Constants.CardType;
|
||||
import mage.Constants.Rarity;
|
||||
import mage.abilities.effects.common.ExileTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Loki
|
||||
*/
|
||||
public class Unmake extends CardImpl<Unmake> {
|
||||
|
||||
public Unmake (UUID ownerId) {
|
||||
super(ownerId, 96, "Unmake", Rarity.COMMON, new CardType[]{CardType.INSTANT}, "{W/B}{W/B}{W/B}");
|
||||
this.expansionSetCode = "EVE";
|
||||
this.getColor().setBlack(true);
|
||||
this.getColor().setWhite(true);
|
||||
this.getSpellAbility().addEffect(new ExileTargetEffect());
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||
}
|
||||
|
||||
public Unmake (final Unmake card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Unmake copy() {
|
||||
return new Unmake(this);
|
||||
}
|
||||
|
||||
}
|
|
@ -216,6 +216,7 @@ my %knownSets;
|
|||
$knownSets{'ARB'} = 'alarareborn';
|
||||
$knownSets{'CON'} = 'conflux';
|
||||
$knownSets{'DST'} = 'darksteel';
|
||||
$knownSets{'EVE'} = 'eventide';
|
||||
$knownSets{'M10'} = 'magic2010';
|
||||
$knownSets{'M11'} = 'magic2011';
|
||||
$knownSets{'HOP'} = 'planechase';
|
||||
|
|
Loading…
Reference in a new issue