- Added Rix Maadi Guildmage.

This commit is contained in:
Sloth
2012-09-30 19:38:45 +00:00
parent 05bc332c76
commit 5cdbf41595
3 changed files with 18 additions and 1 deletions

1
.gitattributes vendored
View File

@@ -7993,6 +7993,7 @@ res/cardsfolder/r/river_of_tears.txt -text
res/cardsfolder/r/riverfall_mimic.txt svneol=native#text/plain
res/cardsfolder/r/rivers_grasp.txt -text
res/cardsfolder/r/rix_maadi_dungeon_palace.txt svneol=native#text/plain
res/cardsfolder/r/rix_maadi_guildmage.txt -text
res/cardsfolder/r/roar_of_jukai.txt -text
res/cardsfolder/r/roar_of_reclamation.txt svneol=native#text/plain
res/cardsfolder/r/roar_of_the_crowd.txt svneol=native#text/plain

View File

@@ -0,0 +1,12 @@
Name:Rix Maadi Guildmage
ManaCost:B R
Types:Creature Human Shaman
Text:no text
PT:2/2
A:AB$ LoseLife | Cost$ B R | ValidTgts$ Player.LostLifeThisTurn | TgtPrompt$ Select target player who lost life this turn | LifeAmount$ 1 | SpellDescription$ Target player who lost life this turn loses 1 life.
A:AB$ Pump | Cost$ B R | NumAtt$ -1 | NumDef$ -1 | ValidTgts$ Creature.blocking | TgtPrompt$ Select target blocking creature | IsCurse$ True | SpellDescription$ Target blocking creature gets -1/-1 until end of turn.
SVar:Rarity:Uncommon
SVar:Picture:http://www.wizards.com/global/images/magic/general/rix_maadi_guildmage.jpg
SetInfo:RTR|Uncommon|http://magiccards.info/scans/en/rtr/192.jpg
Oracle:{B}{R}: Target blocking creature gets -1/-1 until end of turn.\n{B}{R}: Target player who lost life this turn loses 1 life.
End

View File

@@ -2427,10 +2427,14 @@ public abstract class Player extends GameEntity implements Comparable<Player> {
if (this.isComputer() && !source.getDamageHistory().getDealtDmgToComputerThisGame()) {
return false;
}
} else if (property.startsWith("wasDealtDamageThisTurn")) {
} else if (property.startsWith("wasDealtDamageThisTurn")) {
if (this.assignedDamage.isEmpty()) {
return false;
}
} else if (property.startsWith("LostLifeThisTurn")) {
if (this.lifeLostThisTurn <= 0) {
return false;
}
} else if (property.equals("IsRemembered")) {
if (!source.getRemembered().contains(this)) {
return false;