[C16] Added Vial Smasher the Fierce and a partners ability without function.

This commit is contained in:
LevelX2 2016-10-30 19:53:54 +01:00
parent acbb3800a9
commit 59f09dbf0c
3 changed files with 207 additions and 0 deletions

View file

@ -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;
}
}