- Fixed the typo in "Prevent all combat damage that would be dealt by CARDNAME."

This commit is contained in:
jendave
2011-08-06 09:09:23 +00:00
parent 88047274fb
commit 51a2d28f49
2 changed files with 3 additions and 3 deletions

View File

@@ -3,7 +3,7 @@ ManaCost:2 B
Types:Enchantment Aura
Text:Enchanted creature can't attack.\r\nPrevent all combat damage that would be dealt by enchanted creature.
K:Enchant creature
K:enPumpCurse:HIDDEN CARDNAME can't attack. & HIDDEN Prevent all combat damage that would be dealt dealt by CARDNAME.
K:enPumpCurse:HIDDEN CARDNAME can't attack. & HIDDEN Prevent all combat damage that would be dealt by CARDNAME.
SVar:Rarity:Common
SVar:Picture:http://www.wizards.com/global/images/magic/general/demonic_torment.jpg
End

View File

@@ -3727,7 +3727,7 @@ public class GameAction {
//AllZone.GameAction.addDamage(c, crd , assignedDamageMap.get(crd));
if (source.getKeyword().contains("Prevent all combat damage that would be dealt to and dealt by CARDNAME.")
|| source.getKeyword().contains("Prevent all combat damage that would be dealt dealt by CARDNAME."))
|| source.getKeyword().contains("Prevent all combat damage that would be dealt by CARDNAME."))
damageToAdd = 0;
else {
if((source.getKeyword().contains("Wither") || source.getKeyword().contains("Infect")) && card.isCreature()) {
@@ -3857,7 +3857,7 @@ public class GameAction {
public void addCombatDamage(String player, Card source, int damage)
{
if (source.getKeyword().contains("Prevent all combat damage that would be dealt to and dealt by CARDNAME.")
|| source.getKeyword().contains("Prevent all combat damage that would be dealt dealt by CARDNAME."))
|| source.getKeyword().contains("Prevent all combat damage that would be dealt by CARDNAME."))
damage = 0;
//addDamage(player, source, damage);
if (source.getKeyword().contains("Infect"))