forked from External/mage
'merge'
This commit is contained in:
commit
900fde090f
2 changed files with 7 additions and 1 deletions
|
|
@ -87,10 +87,15 @@ class HeroOfBladeholdEffect extends OneShotEffect<HeroOfBladeholdEffect> {
|
|||
SoldierToken token = new SoldierToken();
|
||||
Player player = game.getPlayer(source.getControllerId());
|
||||
if (player != null) {
|
||||
token.putOntoBattlefield(2, game, source.getId(), source.getControllerId());
|
||||
token.putOntoBattlefield(1, game, source.getId(), source.getControllerId());
|
||||
Permanent p = game.getPermanent(token.getLastAddedToken());
|
||||
game.getCombat().declareAttacker(p.getId(), game.getCombat().getDefendingPlayer(source.getSourceId()), game);
|
||||
p.setTapped(true);
|
||||
|
||||
token.putOntoBattlefield(1, game, source.getId(), source.getControllerId());
|
||||
p = game.getPermanent(token.getLastAddedToken());
|
||||
game.getCombat().declareAttacker(p.getId(), game.getCombat().getDefendingPlayer(source.getSourceId()), game);
|
||||
p.setTapped(true);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -55,6 +55,7 @@ public class BladeOfTheBloodchief extends CardImpl<BladeOfTheBloodchief> {
|
|||
public BladeOfTheBloodchief ( UUID ownerId ) {
|
||||
super(ownerId, 196, "Blade of the Bloodchief", Rarity.RARE, new CardType[]{CardType.ARTIFACT}, "{1}");
|
||||
this.expansionSetCode = "ZEN";
|
||||
this.getSubtype().add("Equipment");
|
||||
|
||||
this.addAbility(new EquipAbility(Constants.Outcome.AddAbility, new GenericManaCost(1)));
|
||||
this.addAbility(new BladeOfTheBloodChiefTriggeredAbility());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue