mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
- Converted Giltspire Avenger to AF Destroy.
- Added Reciprocate.
This commit is contained in:
1
.gitattributes
vendored
1
.gitattributes
vendored
@@ -3705,6 +3705,7 @@ res/cardsfolder/reborn_hope.txt -text svneol=native#text/plain
|
|||||||
res/cardsfolder/rebuff_the_wicked.txt -text svneol=native#text/plain
|
res/cardsfolder/rebuff_the_wicked.txt -text svneol=native#text/plain
|
||||||
res/cardsfolder/rebuild.txt -text svneol=native#text/plain
|
res/cardsfolder/rebuild.txt -text svneol=native#text/plain
|
||||||
res/cardsfolder/recall.txt -text svneol=native#text/plain
|
res/cardsfolder/recall.txt -text svneol=native#text/plain
|
||||||
|
res/cardsfolder/reciprocate.txt -text svneol=native#text/plain
|
||||||
res/cardsfolder/reckless_abandon.txt -text svneol=native#text/plain
|
res/cardsfolder/reckless_abandon.txt -text svneol=native#text/plain
|
||||||
res/cardsfolder/reckless_assault.txt -text svneol=native#text/plain
|
res/cardsfolder/reckless_assault.txt -text svneol=native#text/plain
|
||||||
res/cardsfolder/reckless_charge.txt -text svneol=native#text/plain
|
res/cardsfolder/reckless_charge.txt -text svneol=native#text/plain
|
||||||
|
|||||||
@@ -4,6 +4,7 @@ Types:Creature Human Soldier
|
|||||||
Text:no text
|
Text:no text
|
||||||
PT:2/2
|
PT:2/2
|
||||||
K:Exalted
|
K:Exalted
|
||||||
|
A:AB$Destroy | Cost$ T | ValidTgts$ Creature.dealtDamageToYouThisTurn | TgtPrompt$ Select target creature that dealt damage to you this turn | SpellDescription$ Destroy target creature that dealt damage to you this turn.
|
||||||
SVar:Rarity:Rare
|
SVar:Rarity:Rare
|
||||||
SVar:Picture:http://www.wizards.com/global/images/magic/general/giltspire_avenger.jpg
|
SVar:Picture:http://www.wizards.com/global/images/magic/general/giltspire_avenger.jpg
|
||||||
SetInfo:CFX|Rare|http://magiccards.info/scans/en/cfx/108.jpg
|
SetInfo:CFX|Rare|http://magiccards.info/scans/en/cfx/108.jpg
|
||||||
|
|||||||
9
res/cardsfolder/reciprocate.txt
Normal file
9
res/cardsfolder/reciprocate.txt
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
Name:Reciprocate
|
||||||
|
ManaCost:W
|
||||||
|
Types:Instant
|
||||||
|
Text:no text
|
||||||
|
A:SP$Bounce | Cost$ W | ValidTgts$ Creature.dealtDamageToYouThisTurn | TgtPrompt$ Select target creature that dealt damage to you this turn | Destination$ Exile | SpellDescription$ Exile target creature that dealt damage to you this turn.
|
||||||
|
SVar:RemAIDeck:True
|
||||||
|
SVar:Rarity:Uncommon
|
||||||
|
SVar:Picture:http://www.wizards.com/global/images/magic/general/reciprocate.jpg
|
||||||
|
End
|
||||||
@@ -2443,6 +2443,8 @@ public class Card extends MyObservable {
|
|||||||
{ if(!isFaceDown()) return false;}
|
{ if(!isFaceDown()) return false;}
|
||||||
else if (Property.startsWith("enteredBattlefieldThisTurn"))
|
else if (Property.startsWith("enteredBattlefieldThisTurn"))
|
||||||
{ if(!(getTurnInZone() == AllZone.Phase.getTurn())) return false;}
|
{ if(!(getTurnInZone() == AllZone.Phase.getTurn())) return false;}
|
||||||
|
else if (Property.startsWith("dealtDamageToYouThisTurn"))
|
||||||
|
{ if(!(dealtDmgToOppThisTurn && !getController().isPlayer(sourceController))) return false;}
|
||||||
|
|
||||||
else if (Property.startsWith("enchanted"))
|
else if (Property.startsWith("enchanted"))
|
||||||
{ if(!isEnchanted()) return false;}
|
{ if(!isEnchanted()) return false;}
|
||||||
|
|||||||
@@ -5818,7 +5818,7 @@ public class CardFactory_Creatures {
|
|||||||
ability.setStackDescription(sb.toString());
|
ability.setStackDescription(sb.toString());
|
||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
|
||||||
|
/*keyworded
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
else if(cardName.equals("Giltspire Avenger")) {
|
else if(cardName.equals("Giltspire Avenger")) {
|
||||||
final Ability_Tap ability = new Ability_Tap(card) {
|
final Ability_Tap ability = new Ability_Tap(card) {
|
||||||
@@ -5872,7 +5872,7 @@ public class CardFactory_Creatures {
|
|||||||
ability.setDescription("tap: Destroy target creature that dealt damage to you this turn.");
|
ability.setDescription("tap: Destroy target creature that dealt damage to you this turn.");
|
||||||
ability.setBeforePayMana(target);
|
ability.setBeforePayMana(target);
|
||||||
}//*************** END ************ END **************************
|
}//*************** END ************ END **************************
|
||||||
|
*/
|
||||||
|
|
||||||
//*************** START *********** START **************************
|
//*************** START *********** START **************************
|
||||||
else if(cardName.equals("Vedalken Plotter")) {
|
else if(cardName.equals("Vedalken Plotter")) {
|
||||||
|
|||||||
Reference in New Issue
Block a user