mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 18:58:00 +00:00
- Minor cleanup and updating CHANGES.txt.
This commit is contained in:
@@ -504,8 +504,7 @@ public class AttachAi extends SpellAbilityAi {
|
|||||||
// TODO : Skip this one if triggers on combat damage only?
|
// TODO : Skip this one if triggers on combat damage only?
|
||||||
for (SpellAbility sa2 : card.getSpellAbilities()) {
|
for (SpellAbility sa2 : card.getSpellAbilities()) {
|
||||||
if ((sa2.getApi().equals(ApiType.DealDamage))
|
if ((sa2.getApi().equals(ApiType.DealDamage))
|
||||||
&& (sa2.getTargetRestrictions().canTgtPlayer())
|
&& (sa2.getTargetRestrictions().canTgtPlayer())) {
|
||||||
) {
|
|
||||||
thisprio += 300;
|
thisprio += 300;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -209,9 +209,8 @@ public class CounterAi extends SpellAbilityAi {
|
|||||||
if (sa.isAbility()
|
if (sa.isAbility()
|
||||||
&& (!sa.getPayCosts().hasSpecificCostType(CostDiscard.class))
|
&& (!sa.getPayCosts().hasSpecificCostType(CostDiscard.class))
|
||||||
&& (!sa.getPayCosts().hasSpecificCostType(CostSacrifice.class))
|
&& (!sa.getPayCosts().hasSpecificCostType(CostSacrifice.class))
|
||||||
&& (!sa.getPayCosts().hasSpecificCostType(CostExile.class))
|
&& (!sa.getPayCosts().hasSpecificCostType(CostExile.class))) {
|
||||||
// maybe also disallow CostPayLife?
|
// TODO: maybe also disallow CostPayLife?
|
||||||
) {
|
|
||||||
dontCounter = false;
|
dontCounter = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -13,6 +13,9 @@ Support for several boxed sets has been added, namely, Anthologies (ATH), Battle
|
|||||||
- MTGO Sets -
|
- MTGO Sets -
|
||||||
Five new sets are available which are indexed by Scryfall and which are MTGO exclusive are now supported in Forge: Commander Theme Decks (TD0), Magic Online Deck Series (TD1), Duel Decks: Mirrodin Pure vs. New Phyrexia (TD2), Legendary Cube (PZ1), and Treasure Chests (PZ2)
|
Five new sets are available which are indexed by Scryfall and which are MTGO exclusive are now supported in Forge: Commander Theme Decks (TD0), Magic Online Deck Series (TD1), Duel Decks: Mirrodin Pure vs. New Phyrexia (TD2), Legendary Cube (PZ1), and Treasure Chests (PZ2)
|
||||||
|
|
||||||
|
- Option to foil cards in deck editor (Desktop Forge) -
|
||||||
|
A new set of context menu commands has been added to the deck editor which allows to foil the cards in deck ("Foil card", "Foil 4 copies of card", "Foil X copies of card"). This option is currently only available in desktop Forge.
|
||||||
|
|
||||||
- Download Pictures -
|
- Download Pictures -
|
||||||
Improvements to Download Pictures and Auto fetcher
|
Improvements to Download Pictures and Auto fetcher
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user