mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
Merge
This commit is contained in:
commit
77fcd382ce
7 changed files with 182 additions and 9 deletions
|
@ -0,0 +1,35 @@
|
|||
//Created with Mage - www.magefree.com
|
||||
NAME:Path of Blight
|
||||
AUTHOR:WotC
|
||||
|
||||
# Creature
|
||||
2 [SOM:112] Blight Mamba
|
||||
2 [SOM:128] Tangle Angler
|
||||
1 [SOM:147] Corpse Cur
|
||||
2 [MBS:16] Priests of Norn
|
||||
2 [MBS:17] Tine Shrike
|
||||
1 [MBS:77] Blightwidow
|
||||
1 [MBS:85] Phyrexian Hydra
|
||||
2 [MBS:90] Rot Wolf
|
||||
1 [MBS:94] Viridian Corrupter
|
||||
1 [MBS:103] Core Prowler
|
||||
2 [MBS:120] Phyrexian Digester
|
||||
2 [MBS:121] Phyrexian Juggernaut
|
||||
2 [MBS:125] Plague Myr
|
||||
# Instant
|
||||
2 [MBS:3] Banishment Decree
|
||||
2 [MBS:4] Choking Fumes
|
||||
1 [MBS:86] Pistus Strike
|
||||
2 [MBS:93] Unnatural Predation
|
||||
1 [M11:22] Mighty Leap
|
||||
1 [M11:26] Safe Passage
|
||||
# Sorcery
|
||||
2 [M11:182] Hunters' Feast
|
||||
# Artifact
|
||||
2 [SOM:214] Trigon of Infestation
|
||||
1 [MBS:105] Decimator Web
|
||||
# Land
|
||||
6 [MBS:146] Plains
|
||||
5 [MBS:147] Plains
|
||||
7 [MBS:154] Forest
|
||||
7 [MBS:155] Forest
|
|
@ -37,7 +37,6 @@ import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
|||
import mage.abilities.effects.common.DamageTargetEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.target.common.TargetCreatureOrPlayer;
|
||||
import mage.target.common.TargetCreatureOrPlayerAmount;
|
||||
|
||||
/**
|
||||
*
|
||||
|
|
67
Mage.Sets/src/mage/sets/mirrodinbesieged/RotWolf.java
Normal file
67
Mage.Sets/src/mage/sets/mirrodinbesieged/RotWolf.java
Normal file
|
@ -0,0 +1,67 @@
|
|||
/*
|
||||
* 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.mirrodinbesieged;
|
||||
|
||||
import java.util.UUID;
|
||||
import mage.Constants.CardType;
|
||||
import mage.Constants.Rarity;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.common.DiesAndDealtDamageThisTurnTriggeredAbility;
|
||||
import mage.abilities.effects.common.DrawCardControllerEffect;
|
||||
import mage.abilities.keyword.InfectAbility;
|
||||
import mage.cards.CardImpl;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author North
|
||||
*/
|
||||
public class RotWolf extends CardImpl<RotWolf> {
|
||||
|
||||
public RotWolf(UUID ownerId) {
|
||||
super(ownerId, 90, "Rot Wolf", Rarity.COMMON, new CardType[]{CardType.CREATURE}, "{2}{G}");
|
||||
this.expansionSetCode = "MBS";
|
||||
this.subtype.add("Wolf");
|
||||
|
||||
this.color.setGreen(true);
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(2);
|
||||
|
||||
this.addAbility(InfectAbility.getInstance());
|
||||
// Whenever a creature dealt damage by Rot Wolf this turn dies, you may draw a card.
|
||||
this.addAbility(new DiesAndDealtDamageThisTurnTriggeredAbility(new DrawCardControllerEffect(1)));
|
||||
}
|
||||
|
||||
public RotWolf(final RotWolf card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public RotWolf copy() {
|
||||
return new RotWolf(this);
|
||||
}
|
||||
}
|
78
Mage.Sets/src/mage/sets/shardsofalara/BloodCultist.java
Normal file
78
Mage.Sets/src/mage/sets/shardsofalara/BloodCultist.java
Normal file
|
@ -0,0 +1,78 @@
|
|||
/*
|
||||
* 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.CardType;
|
||||
import mage.Constants.Rarity;
|
||||
import mage.Constants.Zone;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.DiesAndDealtDamageThisTurnTriggeredAbility;
|
||||
import mage.abilities.common.SimpleActivatedAbility;
|
||||
import mage.abilities.costs.common.TapSourceCost;
|
||||
import mage.abilities.effects.common.DamageTargetEffect;
|
||||
import mage.abilities.effects.common.counter.AddCountersSourceEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.counters.CounterType;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author North
|
||||
*/
|
||||
public class BloodCultist extends CardImpl<BloodCultist> {
|
||||
|
||||
public BloodCultist(UUID ownerId) {
|
||||
super(ownerId, 157, "Blood Cultist", Rarity.UNCOMMON, new CardType[]{CardType.CREATURE}, "{1}{B}{R}");
|
||||
this.expansionSetCode = "ALA";
|
||||
this.subtype.add("Human");
|
||||
this.subtype.add("Wizard");
|
||||
|
||||
this.color.setRed(true);
|
||||
this.color.setBlack(true);
|
||||
this.power = new MageInt(1);
|
||||
this.toughness = new MageInt(1);
|
||||
|
||||
// {tap}: Blood Cultist deals 1 damage to target creature.
|
||||
Ability ability = new SimpleActivatedAbility(Zone.BATTLEFIELD, new DamageTargetEffect(1), new TapSourceCost());
|
||||
ability.addTarget(new TargetCreaturePermanent());
|
||||
this.addAbility(ability);
|
||||
// Whenever a creature dealt damage by Blood Cultist this turn dies, put a +1/+1 counter on Blood Cultist.
|
||||
this.addAbility(new DiesAndDealtDamageThisTurnTriggeredAbility(new AddCountersSourceEffect(CounterType.P1P1.createInstance())));
|
||||
}
|
||||
|
||||
public BloodCultist(final BloodCultist card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BloodCultist copy() {
|
||||
return new BloodCultist(this);
|
||||
}
|
||||
}
|
|
@ -27,21 +27,14 @@
|
|||
*/
|
||||
package mage.sets.tenth;
|
||||
|
||||
import mage.Constants;
|
||||
import mage.Constants.CardType;
|
||||
import mage.Constants.Rarity;
|
||||
import mage.MageInt;
|
||||
import mage.abilities.TriggeredAbilityImpl;
|
||||
import mage.abilities.common.DiesAndDealtDamageThisTurnTriggeredAbility;
|
||||
import mage.abilities.effects.Effect;
|
||||
import mage.abilities.effects.common.counter.AddCountersSourceEffect;
|
||||
import mage.abilities.keyword.FlyingAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.counters.CounterType;
|
||||
import mage.game.Game;
|
||||
import mage.game.events.GameEvent;
|
||||
import mage.game.events.ZoneChangeEvent;
|
||||
import mage.game.permanent.Permanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ import mage.game.permanent.Permanent;
|
|||
import mage.watchers.Watcher;
|
||||
|
||||
/**
|
||||
* This ability depends on BloodthirstWather installed on source card
|
||||
*
|
||||
* @author Loki
|
||||
*/
|
||||
public class BloodthirstAbility extends EntersBattlefieldAbility {
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
Annihilator|number|
|
||||
Bloodthirst|number|
|
||||
Bushido|number|
|
||||
Soulshift|number|
|
||||
Basic landcycling|cost|
|
||||
|
|
Loading…
Reference in a new issue