mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 04:08:01 +00:00
- AF_Damage can now use "Opponent" as a ValidTgt type.
- Updated Burning Fields.
This commit is contained in:
@@ -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
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user