mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
[DMU] Add missing types and cost to Karn's Sylex
This commit is contained in:
parent
2b652f6695
commit
dc573fdff7
1 changed files with 3 additions and 2 deletions
|
@ -26,7 +26,8 @@ import java.util.UUID;
|
||||||
*/
|
*/
|
||||||
public class KarnsSylex extends CardImpl {
|
public class KarnsSylex extends CardImpl {
|
||||||
public KarnsSylex(UUID ownerId, CardSetInfo setInfo) {
|
public KarnsSylex(UUID ownerId, CardSetInfo setInfo) {
|
||||||
super(ownerId, setInfo, new CardType[]{}, "");
|
super(ownerId, setInfo, new CardType[]{CardType.ARTIFACT}, "{3}");
|
||||||
|
addSuperType(SuperType.LEGENDARY);
|
||||||
|
|
||||||
// Karn’s Sylex
|
// Karn’s Sylex
|
||||||
this.addAbility(new EntersBattlefieldTappedAbility());
|
this.addAbility(new EntersBattlefieldTappedAbility());
|
||||||
|
@ -104,4 +105,4 @@ class KarnsSylexDestroyEffect extends OneShotEffect {
|
||||||
}
|
}
|
||||||
return destroyed;
|
return destroyed;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue