mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 21:02:08 -08:00
* Added a test.
This commit is contained in:
parent
768fd17d93
commit
5694f8aa8c
1 changed files with 17 additions and 0 deletions
|
|
@ -66,4 +66,21 @@ public class PreventRepeatedActionsTest extends CardTestPlayerBaseAI {
|
|||
Assert.assertEquals("AI should only used Equipment once", 2, tappedLands);
|
||||
}
|
||||
|
||||
/**
|
||||
* If the AI on a local server gets control of a Basalt Monolith it will
|
||||
* infinite loop taping for three mana and then using the mana to untap lol.
|
||||
* Seeing the computer durdle troll is quite the hillarious thing
|
||||
*/
|
||||
@Test
|
||||
public void testBasaltMonolith() {
|
||||
// Basalt Monolith doesn't untap during your untap step.
|
||||
// {T}: Add {3} to your mana pool.
|
||||
// {3}: Untap Basalt Monolith.
|
||||
addCard(Zone.BATTLEFIELD, playerA, "Basalt Monolith", 1);
|
||||
|
||||
setStopAt(1, PhaseStep.END_TURN);
|
||||
execute();
|
||||
|
||||
assertTapped("Basalt Monolith", false);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue