mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
Saved Coal Stoker file...
This commit is contained in:
parent
1d17ced174
commit
91edab2ae8
1 changed files with 3 additions and 1 deletions
|
@ -29,10 +29,12 @@ package mage.sets.sorinvstibalt;
|
|||
|
||||
import java.util.UUID;
|
||||
import mage.MageInt;
|
||||
import mage.Mana;
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.EntersBattlefieldTriggeredAbility;
|
||||
import mage.abilities.condition.common.CastFromHandCondition;
|
||||
import mage.abilities.decorator.ConditionalOneShotEffect;
|
||||
import mage.abilities.effects.common.BasicManaEffect;
|
||||
import mage.abilities.effects.common.ExileAllEffect;
|
||||
import mage.cards.CardImpl;
|
||||
import mage.constants.CardType;
|
||||
|
@ -55,7 +57,7 @@ public class CoalStoker extends CardImpl {
|
|||
|
||||
// When Coal Stoker enters the battlefield, if you cast it from your hand, add {R}{R}{R} to your mana pool.
|
||||
Ability ability = new EntersBattlefieldTriggeredAbility(
|
||||
new ConditionalOneShotEffect(, new CastFromHandCondition(),
|
||||
new ConditionalOneShotEffect(new BasicManaEffect(new Mana(3, 0, 0, 0, 0, 0, 0)), new CastFromHandCondition(),
|
||||
" if you cast it from your hand, add {R}{R}{R} to your mana pool."));
|
||||
this.addAbility(ability, new CastFromHandWatcher());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue