- AF_Damage can now use "Opponent" as a ValidTgt type.

- Updated Burning Fields.
This commit is contained in:
jendave
2011-08-06 13:01:08 +00:00
parent 1ce71a008c
commit a1cfdfd581
2 changed files with 2 additions and 3 deletions

View File

@@ -2,9 +2,8 @@ Name:Burning Fields
ManaCost:4 R
Types:Sorcery
Text:no text
K:spDamageTgtOpp:5:Burning Fields deals 5 damage to target opponent.:Burning Fields - deals 5 damage
A:SP$DealDamage | Cost$ 4 R | ValidTgts$ Opponent | NumDmg$ 5 | SpellDescription$ Burning Fields deals 5 damage to target opponent.
SVar:Rarity:Common
SVar:Picture:http://www.wizards.com/global/images/magic/general/burning_fields.jpg
SetInfo:POR|Common|http://magiccards.info/scans/en/p3k/103.jpg
SetInfo:PTK|Common|http://magiccards.info/scans/en/p3k/103.jpg
End

View File

@@ -160,7 +160,7 @@ public class Target {
// These below functions are quite limited to the damage classes, we should find a way to move them into AF_DealDamage
public boolean canTgtPlayer() {
for(String s: ValidTgts){
if (s.equals("Player"))
if (s.equals("Player") || s.equals("Opponent"))
return true;
}
return false;