mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 12:02:01 -08:00
some requested changes
This commit is contained in:
parent
32ef46553c
commit
f79435ca76
2 changed files with 6 additions and 2 deletions
|
|
@ -6,6 +6,7 @@ import mage.abilities.costs.mana.GenericManaCost;
|
|||
import mage.abilities.effects.common.continuous.BoostEquippedEffect;
|
||||
import mage.abilities.effects.common.continuous.GainAbilityAttachedEffect;
|
||||
import mage.abilities.keyword.EquipAbility;
|
||||
import mage.abilities.keyword.HasteAbility;
|
||||
import mage.abilities.keyword.WardAbility;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
|
|
@ -29,8 +30,10 @@ public final class LavaspurBoots extends CardImpl {
|
|||
// Equipped creature gets +1/+0 and has haste and ward {1}.
|
||||
Ability ability = new SimpleStaticAbility(new BoostEquippedEffect(1, 0));
|
||||
ability.addEffect(new GainAbilityAttachedEffect(
|
||||
new WardAbility(new GenericManaCost(1)),
|
||||
AttachmentType.EQUIPMENT, Duration.WhileOnBattlefield
|
||||
HasteAbility.getInstance(), AttachmentType.EQUIPMENT, Duration.WhileOnBattlefield
|
||||
).setText("and has haste"));
|
||||
ability.addEffect(new GainAbilityAttachedEffect(
|
||||
new WardAbility(new GenericManaCost(1)), AttachmentType.EQUIPMENT, Duration.WhileOnBattlefield
|
||||
).setText("and ward {1}"));
|
||||
this.addAbility(ability);
|
||||
|
||||
|
|
|
|||
|
|
@ -12,6 +12,7 @@ import java.util.List;
|
|||
*/
|
||||
public final class OutlawsOfThunderJunction extends ExpansionSet {
|
||||
|
||||
// This is a list of cards with the plot mechanic, it will be removed when the mechanic is implemented
|
||||
private static final List<String> unfinished = Arrays.asList("Aloe Alchemist", "Aven Interrupter", "Cunning Coyote", "Fblthp, Lost on the Range", "Jace Reawakened", "Loan Shark", "Make Your Own Luck", "Outcaster Trailblazer", "Plan the Heist", "Rictus Robber", "Slickshot Lockpicker", "Slickshot Show-Off", "Step Between Worlds", "Unscrupulous Contractor");
|
||||
private static final OutlawsOfThunderJunction instance = new OutlawsOfThunderJunction();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue