mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 11:18:01 +00:00
- Added Phyrexian Furnace.
This commit is contained in:
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -6884,6 +6884,7 @@ res/cardsfolder/p/phyrexian_digester.txt svneol=native#text/plain
|
|||||||
res/cardsfolder/p/phyrexian_dreadnought.txt svneol=native#text/plain
|
res/cardsfolder/p/phyrexian_dreadnought.txt svneol=native#text/plain
|
||||||
res/cardsfolder/p/phyrexian_driver.txt svneol=native#text/plain
|
res/cardsfolder/p/phyrexian_driver.txt svneol=native#text/plain
|
||||||
res/cardsfolder/p/phyrexian_etchings.txt -text
|
res/cardsfolder/p/phyrexian_etchings.txt -text
|
||||||
|
res/cardsfolder/p/phyrexian_furnace.txt -text
|
||||||
res/cardsfolder/p/phyrexian_gargantua.txt svneol=native#text/plain
|
res/cardsfolder/p/phyrexian_gargantua.txt svneol=native#text/plain
|
||||||
res/cardsfolder/p/phyrexian_ghoul.txt svneol=native#text/plain
|
res/cardsfolder/p/phyrexian_ghoul.txt svneol=native#text/plain
|
||||||
res/cardsfolder/p/phyrexian_gremlins.txt svneol=native#text/plain
|
res/cardsfolder/p/phyrexian_gremlins.txt svneol=native#text/plain
|
||||||
|
|||||||
13
res/cardsfolder/p/phyrexian_furnace.txt
Normal file
13
res/cardsfolder/p/phyrexian_furnace.txt
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
Name:Phyrexian Furnace
|
||||||
|
ManaCost:1
|
||||||
|
Types:Artifact
|
||||||
|
Text:no text
|
||||||
|
A:AB$ ChangeZoneAll | Cost$ T | ValidTgts$ Player | TgtPrompt$ Select target player | ChangeType$ Card.BottomGraveyard | Origin$ Graveyard | Destination$ Exile | SpellDescription$ Exile the bottom card of target player's graveyard.
|
||||||
|
A:AB$ ChangeZone | Cost$ 1 Sac<1/CARDNAME> | Origin$ Graveyard | Destination$ Exile | TgtPrompt$ Choose target card in a graveyard | ValidTgts$ Card | SubAbility$ DBDraw | SpellDescription$ Exile target card from a graveyard. Draw a card.
|
||||||
|
SVar:DBDraw:DB$Draw | NumCards$ 1
|
||||||
|
SVar:RemRandomDeck:True
|
||||||
|
SVar:Rarity:Uncommon
|
||||||
|
SVar:Picture:http://www.wizards.com/global/images/magic/general/phyrexian_furnace.jpg
|
||||||
|
SetInfo:WTH|Uncommon|http://magiccards.info/scans/en/wl/155.jpg
|
||||||
|
Oracle:{T}: Exile the bottom card of target player's graveyard.\n{1}, Sacrifice Phyrexian Furnace: Exile target card from a graveyard. Draw a card.
|
||||||
|
End
|
||||||
@@ -6653,6 +6653,11 @@ public class Card extends GameEntity implements Comparable<Card> {
|
|||||||
if (list.isEmpty() || !this.equals(list.get(0))) {
|
if (list.isEmpty() || !this.equals(list.get(0))) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
} else if (property.startsWith("BottomGraveyard")) {
|
||||||
|
final CardList list = this.getOwner().getCardsIn(ZoneType.Graveyard);
|
||||||
|
if (list.isEmpty() || !this.equals(list.get(0))) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
} else if (property.startsWith("TopLibrary")) {
|
} else if (property.startsWith("TopLibrary")) {
|
||||||
final CardList list = this.getOwner().getCardsIn(ZoneType.Library);
|
final CardList list = this.getOwner().getCardsIn(ZoneType.Library);
|
||||||
if (list.isEmpty() || !this.equals(list.get(0))) {
|
if (list.isEmpty() || !this.equals(list.get(0))) {
|
||||||
|
|||||||
Reference in New Issue
Block a user