mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 20:28:00 +00:00
Merge branch 'master' into 'master'
Lantern of Undersight See merge request core-developers/forge!4108
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();
|
||||||
|
|
||||||
|
|||||||
6
forge-gui/res/cardsfolder/l/lantern_of_undersight.txt
Normal file
6
forge-gui/res/cardsfolder/l/lantern_of_undersight.txt
Normal 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.
|
||||||
Reference in New Issue
Block a user