Merge branch 'master' into 'master'

Lantern of Undersight

See merge request core-developers/forge!4108
This commit is contained in:
Michael Kamensky
2021-03-05 19:01:40 +00:00
2 changed files with 13 additions and 1 deletions

View File

@@ -1430,7 +1430,13 @@ public class Player extends GameEntity implements Comparable<Player> {
}
if (!library.isEmpty()) {
Card c = library.get(0);
Card c;
if (hasKeyword("You draw cards from the bottom of your library instead of the top of your library.")) {
c = library.get(library.size() - 1);
} else {
c = library.get(0);
}
List<Player> pList = Lists.newArrayList();

View File

@@ -0,0 +1,6 @@
Name:Lantern of Undersight
ManaCost:1
Types:Artifact
S:Mode$ Continuous | Affected$ You | AddKeyword$ You draw cards from the bottom of your library instead of the top of your library. | Description$ You draw cards from the bottom of your library instead of the top of your library.
AI:RemoveDeck:Random
Oracle:You draw cards from the bottom of your library instead of the top of your library.