mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 21:12:04 -08:00
[SNC] Implemented Jaxis, the Troublemaker
This commit is contained in:
parent
47726ebbea
commit
2b00797cff
5 changed files with 123 additions and 2 deletions
24
Mage/src/main/java/mage/abilities/keyword/BlitzAbility.java
Normal file
24
Mage/src/main/java/mage/abilities/keyword/BlitzAbility.java
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
package mage.abilities.keyword;
|
||||
|
||||
import mage.abilities.StaticAbility;
|
||||
import mage.constants.Zone;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public class BlitzAbility extends StaticAbility {
|
||||
|
||||
public BlitzAbility(String manaString) {
|
||||
// TODO: Implement this
|
||||
super(Zone.ALL, null);
|
||||
}
|
||||
|
||||
private BlitzAbility(final BlitzAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
@Override
|
||||
public BlitzAbility copy() {
|
||||
return new BlitzAbility(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue