mirror of
https://github.com/magefree/mage.git
synced 2025-12-26 21:42:07 -08:00
[KHM] Implemented Fearless Liberator
This commit is contained in:
parent
3d1820f82c
commit
14651c1816
9 changed files with 66 additions and 35 deletions
|
|
@ -3,6 +3,7 @@ package mage.abilities.keyword;
|
|||
import mage.abilities.ActivatedAbilityImpl;
|
||||
import mage.abilities.condition.common.BoastCondition;
|
||||
import mage.abilities.costs.Cost;
|
||||
import mage.abilities.costs.mana.ManaCostsImpl;
|
||||
import mage.abilities.effects.Effect;
|
||||
import mage.abilities.hint.common.BoastHint;
|
||||
import mage.constants.Zone;
|
||||
|
|
@ -14,6 +15,10 @@ import mage.watchers.common.AttackedThisTurnWatcher;
|
|||
*/
|
||||
public class BoastAbility extends ActivatedAbilityImpl {
|
||||
|
||||
public BoastAbility(Effect effect, String manaString) {
|
||||
this(effect, new ManaCostsImpl<>(manaString));
|
||||
}
|
||||
|
||||
public BoastAbility(Effect effect, Cost cost) {
|
||||
super(Zone.BATTLEFIELD, effect, cost);
|
||||
this.maxActivationsPerTurn = 1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue