mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 04:08:01 +00:00
Merge pull request #4082 from tool4ever/raptor
Support for Blue, Loyal Raptor
This commit is contained in:
@@ -433,12 +433,21 @@ public class CountersPutEffect extends SpellAbilityEffect {
|
||||
for (Card c : AbilityUtils.getDefinedCards(card, sa.getParam("EachFromSource"), sa)) {
|
||||
for (Entry<CounterType, Integer> cti : c.getCounters().entrySet()) {
|
||||
if (gameCard != null) {
|
||||
gameCard.addCounter(cti.getKey(), cti.getValue(), placer, table);
|
||||
if (!sa.hasParam("CounterNum")) {
|
||||
// default is all
|
||||
counterAmount = cti.getValue();
|
||||
}
|
||||
if (etbcounter) {
|
||||
gameCard.addEtbCounter(cti.getKey(), counterAmount, placer);
|
||||
} else {
|
||||
gameCard.addCounter(cti.getKey(), counterAmount, placer, table);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
continue;
|
||||
}
|
||||
|
||||
if (sa.hasParam("CounterTypePerDefined") || sa.hasParam("UniqueType")) {
|
||||
counterType = chooseTypeFromList(sa, sa.getParam("CounterType"), obj, pc);
|
||||
if (counterType == null) continue;
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
Name:Fires of Invention
|
||||
ManaCost:3 R
|
||||
Types:Enchantment
|
||||
S:Mode$ CantBeCast | Caster$ You.NonActive | NumLimitEachTurn$ 2 | Description$ You can cast spells only during your turn and you can cast no more than two spells each turn.
|
||||
S:Mode$ CantBeCast | Caster$ You.NonActive | Description$ You can cast spells only during your turn and you can cast no more than two spells each turn.
|
||||
S:Mode$ CantBeCast | NumLimitEachTurn$ 2 | Caster$ You | Secondary$ True | Description$ You can cast spells only during your turn and you can cast no more than two spells each turn.
|
||||
S:Mode$ Continuous | Affected$ Card.nonLand+cmcLEX | MayPlay$ True | MayPlayWithoutManaCost$ True | AffectedZone$ Hand,Graveyard,Exile,Command,Library | MayPlayDontGrantZonePermissions$ True | Description$ You may cast spells with mana value less than or equal to the number of lands you control without paying their mana costs.
|
||||
SVar:X:Count$Valid Land.YouCtrl
|
||||
AI:RemoveDeck:Random
|
||||
|
||||
@@ -1,7 +1,8 @@
|
||||
Name:A-Fires of Invention
|
||||
ManaCost:4 R
|
||||
Types:Enchantment
|
||||
S:Mode$ CantBeCast | Caster$ You.NonActive | NumLimitEachTurn$ 2 | Description$ You can cast spells only during your turn and you can cast no more than two spells each turn.
|
||||
S:Mode$ CantBeCast | Caster$ You.NonActive | Description$ You can cast spells only during your turn and you can cast no more than two spells each turn.
|
||||
S:Mode$ CantBeCast | NumLimitEachTurn$ 2 | Caster$ You | Secondary$ True | Description$ You can cast spells only during your turn and you can cast no more than two spells each turn.
|
||||
S:Mode$ Continuous | Affected$ Card.nonLand+cmcLEX | MayPlay$ True | MayPlayWithoutManaCost$ True | AffectedZone$ Hand,Graveyard,Exile,Command,Library | MayPlayDontGrantZonePermissions$ True | Description$ You may cast spells with mana value less than or equal to the number of lands you control without paying their mana costs.
|
||||
SVar:X:Count$Valid Land.YouCtrl
|
||||
AI:RemoveDeck:Random
|
||||
|
||||
Reference in New Issue
Block a user