mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Fix the card number of Relic Seeker
This commit is contained in:
parent
aaef4b7caf
commit
a027a4d190
1 changed files with 4 additions and 4 deletions
|
@ -45,16 +45,16 @@ import mage.target.common.TargetCardInLibrary;
|
|||
* @author LevelX2
|
||||
*/
|
||||
public class RelicSeeker extends CardImpl {
|
||||
|
||||
|
||||
private static final FilterCard filter = new FilterCard("an Equipment card");
|
||||
|
||||
static {
|
||||
filter.add(new CardTypePredicate(CardType.ARTIFACT));
|
||||
filter.add(new SubtypePredicate("Equipment"));
|
||||
}
|
||||
|
||||
|
||||
public RelicSeeker(UUID ownerId) {
|
||||
super(ownerId, 107, "Relic Seeker", Rarity.SPECIAL, new CardType[]{CardType.CREATURE}, "{1}{W}");
|
||||
super(ownerId, 29, "Relic Seeker", Rarity.SPECIAL, new CardType[]{CardType.CREATURE}, "{1}{W}");
|
||||
this.expansionSetCode = "ORI";
|
||||
this.subtype.add("Human");
|
||||
this.subtype.add("Soldier");
|
||||
|
@ -63,7 +63,7 @@ public class RelicSeeker extends CardImpl {
|
|||
|
||||
// Renown 1
|
||||
this.addAbility(new RenownAbility(1));
|
||||
|
||||
|
||||
// When Relic Seeker becomes renowned, you may search your library for an Equipment card, reveal it, put it into your hand, then shuffle your library.
|
||||
TargetCardInLibrary target = new TargetCardInLibrary(1, 1, filter);
|
||||
this.addAbility(new BecomesRenownSourceTriggeredAbility(new SearchLibraryPutInHandEffect(target, true, true), true));
|
||||
|
|
Loading…
Reference in a new issue