mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-15 10:18:01 +00:00
- Added Skullscorch.
This commit is contained in:
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -8598,6 +8598,7 @@ res/cardsfolder/s/skullclamp.txt svneol=native#text/plain
|
||||
res/cardsfolder/s/skullmane_baku.txt -text
|
||||
res/cardsfolder/s/skullmead_cauldron.txt svneol=native#text/plain
|
||||
res/cardsfolder/s/skullmulcher.txt svneol=native#text/plain
|
||||
res/cardsfolder/s/skullscorch.txt -text
|
||||
res/cardsfolder/s/skullsnatcher.txt svneol=native#text/plain
|
||||
res/cardsfolder/s/skulltap.txt svneol=native#text/plain
|
||||
res/cardsfolder/s/sky_diamond.txt svneol=native#text/plain
|
||||
|
||||
@@ -3,7 +3,7 @@ ManaCost:3 R
|
||||
Types:Creature Dwarf
|
||||
Text:no text
|
||||
PT:2/2
|
||||
A:AB$ Destroy | Cost$ T | ValidTgts$ Land | TgtPrompt$ Select target land | UnlessCost$ DamageYou<2> | SpellDescription$ Destroy target land unless its controller has Dwarven Driller deal 2 damage to him or her.
|
||||
A:AB$ Destroy | Cost$ T | ValidTgts$ Land | TgtPrompt$ Select target land | UnlessCost$ DamageYou<2> | SpellDescription$ Destroy target land unless its controller has CARDNAME deal 2 damage to him or her.
|
||||
SVar:Rarity:Uncommon
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/dwarven_driller.jpg
|
||||
SetInfo:JUD|Uncommon|http://magiccards.info/scans/en/ju/85.jpg
|
||||
|
||||
@@ -4,4 +4,5 @@ Types:Creature Avatar
|
||||
Text:no text
|
||||
PT:6/6
|
||||
SetInfo:ISD|Mythic|http://magiccards.info/scans/en/isd/178.jpg
|
||||
Oracle:Creatures you control enter the battlefield as a copy of Essence of the Wild.
|
||||
End
|
||||
10
res/cardsfolder/s/skullscorch.txt
Normal file
10
res/cardsfolder/s/skullscorch.txt
Normal file
@@ -0,0 +1,10 @@
|
||||
Name:Skullscorch
|
||||
ManaCost:R R
|
||||
Types:Sorcery
|
||||
Text:no text
|
||||
A:SP$ Discard | Cost$ R R | ValidTgts$ Player | NumCards$ 2 | Mode$ Random | UnlessCost$ DamageYou<4> | UnlessPayer$ Targeted | SpellDescription$ Target player discards two cards at random unless that player has CARDNAME deal 4 damage to him or her.
|
||||
SVar:Rarity:Rare
|
||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/skullscorch.jpg
|
||||
SetInfo:TOR|Rare|http://magiccards.info/scans/en/tr/114.jpg
|
||||
Oracle:Target player discards two cards at random unless that player has Skullscorch deal 4 damage to him or her.
|
||||
End
|
||||
@@ -160,6 +160,9 @@ public class CostUtil {
|
||||
&& computer.canLoseLife()) {
|
||||
return false;
|
||||
}
|
||||
if (source.getName().equals("Skullscorch") && computer.getCardsIn(ZoneType.Hand).size() < 2) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user