mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 02:38:02 +00:00
CMB1: Lantern of Undersight
This commit is contained in:
@@ -1430,7 +1430,13 @@ public class Player extends GameEntity implements Comparable<Player> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!library.isEmpty()) {
|
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();
|
List<Player> pList = Lists.newArrayList();
|
||||||
|
|
||||||
|
|||||||
5
forge-gui/res/cardsfolder/l/lantern_of_undersight.txt
Normal file
5
forge-gui/res/cardsfolder/l/lantern_of_undersight.txt
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
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.
|
||||||
|
Oracle:You draw cards from the bottom of your library instead of the top of your library.
|
||||||
Reference in New Issue
Block a user