mirror of
https://github.com/magefree/mage.git
synced 2026-01-25 04:39:18 -08:00
more reward cards
This commit is contained in:
parent
f5e9ead285
commit
93f55ec2dc
17 changed files with 430 additions and 0 deletions
23
Mage.Sets/src/mage/sets/playerrewards/Blightning.java
Normal file
23
Mage.Sets/src/mage/sets/playerrewards/Blightning.java
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
package mage.sets.playerrewards;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author Loki
|
||||
*/
|
||||
public class Blightning extends mage.sets.shardsofalara.Blightning {
|
||||
public Blightning(UUID ownerId) {
|
||||
super(ownerId);
|
||||
this.cardNumber = 36;
|
||||
this.expansionSetCode = "MPR";
|
||||
}
|
||||
|
||||
public Blightning(final Blightning card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Blightning copy() {
|
||||
return new Blightning(this);
|
||||
}
|
||||
}
|
||||
23
Mage.Sets/src/mage/sets/playerrewards/Cancel.java
Normal file
23
Mage.Sets/src/mage/sets/playerrewards/Cancel.java
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
package mage.sets.playerrewards;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author Loki
|
||||
*/
|
||||
public class Cancel extends mage.sets.tenth.Cancel {
|
||||
public Cancel(UUID ownerId) {
|
||||
super(ownerId);
|
||||
this.cardNumber = 41;
|
||||
this.expansionSetCode = "MPR";
|
||||
}
|
||||
|
||||
public Cancel(final Cancel card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Cancel copy() {
|
||||
return new Cancel(this);
|
||||
}
|
||||
}
|
||||
23
Mage.Sets/src/mage/sets/playerrewards/Corrupt.java
Normal file
23
Mage.Sets/src/mage/sets/playerrewards/Corrupt.java
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
package mage.sets.playerrewards;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author Loki
|
||||
*/
|
||||
public class Corrupt extends mage.sets.magic2011.Corrupt {
|
||||
public Corrupt(UUID ownerId) {
|
||||
super(ownerId);
|
||||
this.cardNumber = 30;
|
||||
this.expansionSetCode = "MPR";
|
||||
}
|
||||
|
||||
public Corrupt(final Corrupt card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Corrupt copy() {
|
||||
return new Corrupt(this);
|
||||
}
|
||||
}
|
||||
23
Mage.Sets/src/mage/sets/playerrewards/DoomBlade.java
Normal file
23
Mage.Sets/src/mage/sets/playerrewards/DoomBlade.java
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
package mage.sets.playerrewards;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author Loki
|
||||
*/
|
||||
public class DoomBlade extends mage.sets.magic2010.DoomBlade {
|
||||
public DoomBlade(UUID ownerId) {
|
||||
super(ownerId);
|
||||
this.cardNumber = 51;
|
||||
this.expansionSetCode = "MPR";
|
||||
}
|
||||
|
||||
public DoomBlade(final DoomBlade card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public DoomBlade copy() {
|
||||
return new DoomBlade(this);
|
||||
}
|
||||
}
|
||||
23
Mage.Sets/src/mage/sets/playerrewards/FlameJavelin.java
Normal file
23
Mage.Sets/src/mage/sets/playerrewards/FlameJavelin.java
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
package mage.sets.playerrewards;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author Loki
|
||||
*/
|
||||
public class FlameJavelin extends mage.sets.shadowmoor.FlameJavelin {
|
||||
public FlameJavelin(UUID ownerId) {
|
||||
super(ownerId);
|
||||
this.cardNumber = 32;
|
||||
this.expansionSetCode = "MPR";
|
||||
}
|
||||
|
||||
public FlameJavelin(final FlameJavelin card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public FlameJavelin copy() {
|
||||
return new FlameJavelin(this);
|
||||
}
|
||||
}
|
||||
23
Mage.Sets/src/mage/sets/playerrewards/Infest.java
Normal file
23
Mage.Sets/src/mage/sets/playerrewards/Infest.java
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
package mage.sets.playerrewards;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author Loki
|
||||
*/
|
||||
public class Infest extends mage.sets.shardsofalara.Infest {
|
||||
public Infest(UUID ownerId) {
|
||||
super(ownerId);
|
||||
this.cardNumber = 43;
|
||||
this.expansionSetCode = "MPR";
|
||||
}
|
||||
|
||||
public Infest(final Infest card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Infest copy() {
|
||||
return new Infest(this);
|
||||
}
|
||||
}
|
||||
23
Mage.Sets/src/mage/sets/playerrewards/LightningBolt.java
Normal file
23
Mage.Sets/src/mage/sets/playerrewards/LightningBolt.java
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
package mage.sets.playerrewards;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author Loki
|
||||
*/
|
||||
public class LightningBolt extends mage.sets.magic2010.LightningBolt {
|
||||
public LightningBolt(UUID ownerId) {
|
||||
super(ownerId);
|
||||
this.cardNumber = 40;
|
||||
this.expansionSetCode = "MPR";
|
||||
}
|
||||
|
||||
public LightningBolt(final LightningBolt card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public LightningBolt copy() {
|
||||
return new LightningBolt(this);
|
||||
}
|
||||
}
|
||||
23
Mage.Sets/src/mage/sets/playerrewards/Negate.java
Normal file
23
Mage.Sets/src/mage/sets/playerrewards/Negate.java
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
package mage.sets.playerrewards;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author Loki
|
||||
*/
|
||||
public class Negate extends mage.sets.magic2010.Negate {
|
||||
public Negate(UUID ownerId) {
|
||||
super(ownerId);
|
||||
this.cardNumber = 38;
|
||||
this.expansionSetCode = "MPR";
|
||||
}
|
||||
|
||||
public Negate(final Negate card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Negate copy() {
|
||||
return new Negate(this);
|
||||
}
|
||||
}
|
||||
23
Mage.Sets/src/mage/sets/playerrewards/Ponder.java
Normal file
23
Mage.Sets/src/mage/sets/playerrewards/Ponder.java
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
package mage.sets.playerrewards;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author Loki
|
||||
*/
|
||||
public class Ponder extends mage.sets.magic2010.Ponder {
|
||||
public Ponder(UUID ownerId) {
|
||||
super(ownerId);
|
||||
this.cardNumber = 29;
|
||||
this.expansionSetCode = "MPR";
|
||||
}
|
||||
|
||||
public Ponder(final Ponder card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Ponder copy() {
|
||||
return new Ponder(this);
|
||||
}
|
||||
}
|
||||
23
Mage.Sets/src/mage/sets/playerrewards/RampantGrowth.java
Normal file
23
Mage.Sets/src/mage/sets/playerrewards/RampantGrowth.java
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
package mage.sets.playerrewards;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author Loki
|
||||
*/
|
||||
public class RampantGrowth extends mage.sets.magic2010.RampantGrowth {
|
||||
public RampantGrowth(UUID ownerId) {
|
||||
super(ownerId);
|
||||
this.cardNumber = 37;
|
||||
this.expansionSetCode = "MPR";
|
||||
}
|
||||
|
||||
public RampantGrowth(final RampantGrowth card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public RampantGrowth copy() {
|
||||
return new RampantGrowth(this);
|
||||
}
|
||||
}
|
||||
23
Mage.Sets/src/mage/sets/playerrewards/RemoveSoul.java
Normal file
23
Mage.Sets/src/mage/sets/playerrewards/RemoveSoul.java
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
package mage.sets.playerrewards;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author Loki
|
||||
*/
|
||||
public class RemoveSoul extends mage.sets.tenth.RemoveSoul {
|
||||
public RemoveSoul(UUID ownerId) {
|
||||
super(ownerId);
|
||||
this.cardNumber = 35;
|
||||
this.expansionSetCode = "MPR";
|
||||
}
|
||||
|
||||
public RemoveSoul(final RemoveSoul card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public RemoveSoul copy() {
|
||||
return new RemoveSoul(this);
|
||||
}
|
||||
}
|
||||
23
Mage.Sets/src/mage/sets/playerrewards/SearingBlaze.java
Normal file
23
Mage.Sets/src/mage/sets/playerrewards/SearingBlaze.java
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
package mage.sets.playerrewards;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author Loki
|
||||
*/
|
||||
public class SearingBlaze extends mage.sets.worldwake.SearingBlaze {
|
||||
public SearingBlaze(UUID ownerId) {
|
||||
super(ownerId);
|
||||
this.cardNumber = 52;
|
||||
this.expansionSetCode = "MPR";
|
||||
}
|
||||
|
||||
public SearingBlaze(final SearingBlaze card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SearingBlaze copy() {
|
||||
return new SearingBlaze(this);
|
||||
}
|
||||
}
|
||||
23
Mage.Sets/src/mage/sets/playerrewards/SignInBlood.java
Normal file
23
Mage.Sets/src/mage/sets/playerrewards/SignInBlood.java
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
package mage.sets.playerrewards;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author Loki
|
||||
*/
|
||||
public class SignInBlood extends mage.sets.magic2010.SignInBlood {
|
||||
public SignInBlood(UUID ownerId) {
|
||||
super(ownerId);
|
||||
this.cardNumber = 42;
|
||||
this.expansionSetCode = "MPR";
|
||||
}
|
||||
|
||||
public SignInBlood(final SignInBlood card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SignInBlood copy() {
|
||||
return new SignInBlood(this);
|
||||
}
|
||||
}
|
||||
23
Mage.Sets/src/mage/sets/playerrewards/Terminate.java
Normal file
23
Mage.Sets/src/mage/sets/playerrewards/Terminate.java
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
package mage.sets.playerrewards;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author Loki
|
||||
*/
|
||||
public class Terminate extends mage.sets.alarareborn.Terminate {
|
||||
public Terminate(UUID ownerId) {
|
||||
super(ownerId);
|
||||
this.cardNumber = 39;
|
||||
this.expansionSetCode = "MPR";
|
||||
}
|
||||
|
||||
public Terminate(final Terminate card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Terminate copy() {
|
||||
return new Terminate(this);
|
||||
}
|
||||
}
|
||||
23
Mage.Sets/src/mage/sets/playerrewards/Unmake.java
Normal file
23
Mage.Sets/src/mage/sets/playerrewards/Unmake.java
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
package mage.sets.playerrewards;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author Loki
|
||||
*/
|
||||
public class Unmake extends mage.sets.eventide.Unmake {
|
||||
public Unmake(UUID ownerId) {
|
||||
super(ownerId);
|
||||
this.cardNumber = 33;
|
||||
this.expansionSetCode = "MPR";
|
||||
}
|
||||
|
||||
public Unmake(final Unmake card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Unmake copy() {
|
||||
return new Unmake(this);
|
||||
}
|
||||
}
|
||||
23
Mage.Sets/src/mage/sets/playerrewards/VolcanicFallout.java
Normal file
23
Mage.Sets/src/mage/sets/playerrewards/VolcanicFallout.java
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
package mage.sets.playerrewards;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
* @author Loki
|
||||
*/
|
||||
public class VolcanicFallout extends mage.sets.conflux.VolcanicFallout {
|
||||
public VolcanicFallout(UUID ownerId) {
|
||||
super(ownerId);
|
||||
this.cardNumber = 44;
|
||||
this.expansionSetCode = "MPR";
|
||||
}
|
||||
|
||||
public VolcanicFallout(final VolcanicFallout card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public VolcanicFallout copy() {
|
||||
return new VolcanicFallout(this);
|
||||
}
|
||||
}
|
||||
62
Mage.Sets/src/mage/sets/shardsofalara/Infest.java
Normal file
62
Mage.Sets/src/mage/sets/shardsofalara/Infest.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.shardsofalara;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
import mage.Constants;
|
||||
import mage.Constants.CardType;
|
||||
import mage.Constants.Rarity;
|
||||
import mage.abilities.effects.common.continious.BoostAllEffect;
|
||||
import mage.cards.CardImpl;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Loki
|
||||
*/
|
||||
public class Infest extends CardImpl<Infest> {
|
||||
|
||||
public Infest(UUID ownerId) {
|
||||
super(ownerId, 80, "Infest", Rarity.UNCOMMON, new CardType[]{CardType.SORCERY}, "{1}{B}{B}");
|
||||
this.expansionSetCode = "ALA";
|
||||
|
||||
this.color.setBlack(true);
|
||||
|
||||
// All creatures get -2/-2 until end of turn.
|
||||
this.getSpellAbility().addEffect(new BoostAllEffect(-2, -2, Constants.Duration.EndOfTurn));
|
||||
}
|
||||
|
||||
public Infest(final Infest card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Infest copy() {
|
||||
return new Infest(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue