mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 20:28:00 +00:00
- Fixed the typo in "Prevent all combat damage that would be dealt by CARDNAME."
This commit is contained in:
@@ -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
|
||||
@@ -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"))
|
||||
|
||||
Reference in New Issue
Block a user