mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 12:31:59 -08:00
[40K] Implemented Vanguard Suppressor (with dummy squad ability)
This commit is contained in:
parent
7434a64ea4
commit
1cc00630dd
4 changed files with 88 additions and 0 deletions
30
Mage/src/main/java/mage/abilities/keyword/SquadAbility.java
Normal file
30
Mage/src/main/java/mage/abilities/keyword/SquadAbility.java
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
package mage.abilities.keyword;
|
||||
|
||||
import mage.abilities.StaticAbility;
|
||||
import mage.abilities.costs.Cost;
|
||||
import mage.constants.Zone;
|
||||
|
||||
/**
|
||||
* @author TheElk801
|
||||
*/
|
||||
public class SquadAbility extends StaticAbility {
|
||||
|
||||
public SquadAbility(Cost cost) {
|
||||
super(Zone.STACK, null);
|
||||
// TODO: implement this
|
||||
}
|
||||
|
||||
private SquadAbility(final SquadAbility ability) {
|
||||
super(ability);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SquadAbility copy() {
|
||||
return new SquadAbility(this);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getRule() {
|
||||
return "Squad";
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue