mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
- Added Rix Maadi Guildmage.
This commit is contained in:
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -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
|
||||
|
||||
12
res/cardsfolder/r/rix_maadi_guildmage.txt
Normal file
12
res/cardsfolder/r/rix_maadi_guildmage.txt
Normal 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
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user