mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 13:19:18 -08:00
created mana added event
This commit is contained in:
parent
b7d2079ac0
commit
89d1850493
6 changed files with 20 additions and 14 deletions
|
|
@ -165,27 +165,27 @@ class VorinclexEffect extends ManaEffect<VorinclexEffect> {
|
|||
else
|
||||
player.choose(outcome, choice, game);
|
||||
if (choice.getChoice().equals("Black")) {
|
||||
player.getManaPool().changeMana(Mana.BlackMana);
|
||||
player.getManaPool().changeMana(Mana.BlackMana, game, source);
|
||||
return true;
|
||||
}
|
||||
else if (choice.getChoice().equals("Blue")) {
|
||||
player.getManaPool().changeMana(Mana.BlueMana);
|
||||
player.getManaPool().changeMana(Mana.BlueMana, game, source);
|
||||
return true;
|
||||
}
|
||||
else if (choice.getChoice().equals("Red")) {
|
||||
player.getManaPool().changeMana(Mana.RedMana);
|
||||
player.getManaPool().changeMana(Mana.RedMana, game, source);
|
||||
return true;
|
||||
}
|
||||
else if (choice.getChoice().equals("Green")) {
|
||||
player.getManaPool().changeMana(Mana.GreenMana);
|
||||
player.getManaPool().changeMana(Mana.GreenMana, game, source);
|
||||
return true;
|
||||
}
|
||||
else if (choice.getChoice().equals("White")) {
|
||||
player.getManaPool().changeMana(Mana.WhiteMana);
|
||||
player.getManaPool().changeMana(Mana.WhiteMana, game, source);
|
||||
return true;
|
||||
}
|
||||
else if (choice.getChoice().equals("Colorless")) {
|
||||
player.getManaPool().changeMana(Mana.ColorlessMana);
|
||||
player.getManaPool().changeMana(Mana.ColorlessMana, game, source);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue