forked from External/mage
28 lines
722 B
Java
28 lines
722 B
Java
package mage.abilities.common;
|
|
|
|
import mage.abilities.StaticAbility;
|
|
import mage.abilities.effects.common.InfoEffect;
|
|
import mage.constants.Zone;
|
|
|
|
/**
|
|
* @author TheElk801
|
|
*/
|
|
public class CrewIncreasedPowerAbility extends StaticAbility {
|
|
|
|
public CrewIncreasedPowerAbility() {
|
|
this("{this}");
|
|
}
|
|
|
|
public CrewIncreasedPowerAbility(String selfName) {
|
|
super(Zone.BATTLEFIELD, new InfoEffect(selfName + " crews Vehicles as though its power were 2 greater."));
|
|
}
|
|
|
|
private CrewIncreasedPowerAbility(final CrewIncreasedPowerAbility ability) {
|
|
super(ability);
|
|
}
|
|
|
|
@Override
|
|
public CrewIncreasedPowerAbility copy() {
|
|
return new CrewIncreasedPowerAbility(this);
|
|
}
|
|
}
|