mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 03:08:02 +00:00
removed keyword CARDNAME can't be blocked by red creatures
This commit is contained in:
@@ -2,7 +2,7 @@ Name:Elder Spawn
|
||||
ManaCost:4 U U U
|
||||
Types:Creature Spawn
|
||||
PT:6/6
|
||||
K:CARDNAME can't be blocked by red creatures.
|
||||
K:CantBeBlockedBy Creature.Red
|
||||
T:Mode$ Phase | Phase$ Upkeep | ValidPlayer$ You | Execute$ TrigElderSpawnSacrifice | TriggerZones$ Battlefield | TriggerDescription$ At the beginning of your upkeep, unless you sacrifice an Island, sacrifice CARDNAME and it deals 6 damage to you. CARDNAME can't be blocked by red creatures.
|
||||
SVar:TrigElderSpawnSacrifice:AB$ Sacrifice | Cost$ 0 | SacValid$ Island | Optional$ True | RememberSacrificed$ True | SubAbility$ DBElderSpawnSacrificeMe
|
||||
SVar:DBElderSpawnSacrificeMe:DB$ Sacrifice | Defined$ Self | ConditionDefined$ Remembered | ConditionPresent$ Island | ConditionCompare$ EQ0 | SubAbility$ DBElderSpawnDamage
|
||||
|
||||
@@ -3,7 +3,7 @@ ManaCost:W
|
||||
Types:Enchantment Aura
|
||||
K:Enchant creature
|
||||
A:SP$ Attach | Cost$ W | ValidTgts$ Creature | AILogic$ Pump
|
||||
S:Mode$ Continuous | Affected$ Creature.EnchantedBy | AddHiddenKeyword$ CARDNAME can't be blocked by red creatures. | Description$ Enchanted creature can't be blocked by red creatures.
|
||||
S:Mode$ Continuous | Affected$ Creature.EnchantedBy | AddHiddenKeyword$ CantBeBlockedBy Creature.Red | Description$ Enchanted creature can't be blocked by red creatures.
|
||||
S:Mode$ Continuous | Affected$ Creature.EnchantedBy | AddPower$ 2 | AddToughness$ 2 | CheckSVar$ X | SVarCompare$ GE1 | References$ X | Description$ Enchanted creature gets +2/+2 as long as an opponent controls a red permanent.
|
||||
SVar:X:Count$Valid Permanent.Red+OppCtrl
|
||||
SVar:RemRandomDeck:True
|
||||
|
||||
@@ -689,9 +689,6 @@ public class CombatUtil {
|
||||
if (attacker.hasKeyword("CARDNAME can't be blocked by green creatures.") && blocker.isGreen()) {
|
||||
return false;
|
||||
}
|
||||
if (attacker.hasKeyword("CARDNAME can't be blocked by red creatures.") && blocker.isRed()) {
|
||||
return false;
|
||||
}
|
||||
if (attacker.hasKeyword("CARDNAME can't be blocked by white creatures.") && blocker.isWhite()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user