mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
[C16] Added Vial Smasher the Fierce and a partners ability without function.
This commit is contained in:
parent
acbb3800a9
commit
59f09dbf0c
3 changed files with 207 additions and 0 deletions
|
|
@ -0,0 +1,43 @@
|
|||
/*
|
||||
* To change this license header, choose License Headers in Project Properties.
|
||||
* To change this template file, choose Tools | Templates
|
||||
* and open the template in the editor.
|
||||
*/
|
||||
package mage.abilities.keyword;
|
||||
|
||||
import java.io.ObjectStreamException;
|
||||
import mage.abilities.MageSingleton;
|
||||
import mage.abilities.StaticAbility;
|
||||
import mage.constants.Zone;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author LevelX2
|
||||
*/
|
||||
public class PartnerAbility extends StaticAbility implements MageSingleton {
|
||||
|
||||
private static final PartnerAbility fINSTANCE = new PartnerAbility();
|
||||
|
||||
private Object readResolve() throws ObjectStreamException {
|
||||
return fINSTANCE;
|
||||
}
|
||||
|
||||
public static PartnerAbility getInstance() {
|
||||
return fINSTANCE;
|
||||
}
|
||||
|
||||
private PartnerAbility() {
|
||||
super(Zone.BATTLEFIELD, null);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getRule() {
|
||||
return "Partner <i>(You can have two commanders if both have partner.)</i>";
|
||||
}
|
||||
|
||||
@Override
|
||||
public PartnerAbility copy() {
|
||||
return fINSTANCE;
|
||||
}
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue