mirror of
https://github.com/correl/mage.git
synced 2024-11-16 03:00:12 +00:00
Fixed minor problem of Volrath's Laboratory.
This commit is contained in:
parent
923f4a1bb5
commit
68464198dc
1 changed files with 2 additions and 2 deletions
|
@ -59,9 +59,9 @@ public class VolrathsLaboratory extends CardImpl {
|
||||||
|
|
||||||
// As Volrath's Laboratory enters the battlefield, choose a color and a creature type.
|
// As Volrath's Laboratory enters the battlefield, choose a color and a creature type.
|
||||||
Ability ability = new EntersBattlefieldAbility(new ChooseColorEffect(Outcome.Neutral));
|
Ability ability = new EntersBattlefieldAbility(new ChooseColorEffect(Outcome.Neutral));
|
||||||
Effect effect = new ChooseColorEffect(Outcome.Neutral);
|
Effect effect = new ChooseCreatureTypeEffect(Outcome.Neutral);
|
||||||
effect.setText("and a creature type");
|
effect.setText("and a creature type");
|
||||||
ability.addEffect(new ChooseCreatureTypeEffect(Outcome.Neutral));
|
ability.addEffect(effect);
|
||||||
this.addAbility(ability);
|
this.addAbility(ability);
|
||||||
|
|
||||||
// {5}, {T}: Put a 2/2 creature token of the chosen color and type onto the battlefield.
|
// {5}, {T}: Put a 2/2 creature token of the chosen color and type onto the battlefield.
|
||||||
|
|
Loading…
Reference in a new issue