forked from External/mage
Format Fix
This commit is contained in:
parent
891cf38a3b
commit
310ac060e2
2 changed files with 11 additions and 9 deletions
|
|
@ -1,5 +1,6 @@
|
|||
package mage.cards.a;
|
||||
|
||||
import mage.MageInt;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.keyword.DoubleStrikeAbility;
|
||||
import mage.abilities.keyword.EternalizeAbility;
|
||||
|
|
@ -9,13 +10,16 @@ import mage.constants.CardType;
|
|||
|
||||
import java.util.UUID;
|
||||
|
||||
public class AdornedPouncer extends CardImpl{
|
||||
public class AdornedPouncer extends CardImpl {
|
||||
|
||||
public AdornedPouncer(UUID ownerId, CardSetInfo cardSetInfo){
|
||||
public AdornedPouncer(UUID ownerId, CardSetInfo cardSetInfo) {
|
||||
super(ownerId, cardSetInfo, new CardType[]{CardType.CREATURE}, "{1}{W}");
|
||||
|
||||
subtype.add("Cat");
|
||||
|
||||
this.power = new MageInt(1);
|
||||
this.toughness = new MageInt(1);
|
||||
|
||||
//double strike
|
||||
addAbility(DoubleStrikeAbility.getInstance());
|
||||
|
||||
|
|
@ -23,11 +27,11 @@ public class AdornedPouncer extends CardImpl{
|
|||
addAbility(new EternalizeAbility(new ManaCostsImpl("{3}{W}{W}"), this));
|
||||
}
|
||||
|
||||
public AdornedPouncer(AdornedPouncer adornedPouncer){
|
||||
public AdornedPouncer(AdornedPouncer adornedPouncer) {
|
||||
super(adornedPouncer);
|
||||
}
|
||||
|
||||
public AdornedPouncer copy(){
|
||||
public AdornedPouncer copy() {
|
||||
return new AdornedPouncer(this);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@
|
|||
*/
|
||||
package mage.cards.b;
|
||||
|
||||
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.effects.common.search.SearchLibraryPutInPlayEffect;
|
||||
import mage.abilities.keyword.CyclingAbility;
|
||||
|
|
@ -24,12 +23,11 @@ import java.util.UUID;
|
|||
public class BeneathTheSands extends CardImpl {
|
||||
|
||||
public BeneathTheSands(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId,setInfo,new CardType[]{CardType.SORCERY},"{2}{G}");
|
||||
|
||||
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{2}{G}");
|
||||
|
||||
// Search your library for a basic land card, put it onto the battlefield tapped, then shuffle your library.
|
||||
this.getSpellAbility().addEffect(new SearchLibraryPutInPlayEffect(new TargetCardInLibrary(new FilterBasicLandCard()), true, true));
|
||||
|
||||
|
||||
// Cycling {2}
|
||||
this.addAbility(new CyclingAbility(new ManaCostsImpl("{2}")));
|
||||
}
|
||||
|
|
@ -42,4 +40,4 @@ public class BeneathTheSands extends CardImpl {
|
|||
public BeneathTheSands copy() {
|
||||
return new BeneathTheSands(this);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue