|
|
@@ -29,7 +29,7 @@ namespace DCGO.CardEffects.BT25
|
|
|
#endregion
|
|
|
|
|
|
#region Reduce Link Cost
|
|
|
- if (timing == EffectTiming.BeforePayCost)
|
|
|
+ if (timing == EffectTiming.WhenWouldLink)
|
|
|
{
|
|
|
ActivateClass activateClass = new ();
|
|
|
activateClass.SetUpICardEffect("May reduce Link cost by 1", CanUseCondition, card);
|
|
|
@@ -67,28 +67,6 @@ namespace DCGO.CardEffects.BT25
|
|
|
}
|
|
|
#endregion
|
|
|
|
|
|
- #region Reduce Link cost - Not Shown
|
|
|
- if (timing == EffectTiming.None)
|
|
|
- {
|
|
|
- cardEffects.Add(CardEffectFactory.ReduceLinkCostClass(
|
|
|
- card: card,
|
|
|
- canUseCondition: CanUseCondition,
|
|
|
- isInheritedEffect: true,
|
|
|
- isOptional: true,
|
|
|
- reducedCost: 1,
|
|
|
- cardSourceCondition: CardCondition,
|
|
|
- permanentCondition: PermanentCondition,
|
|
|
- rootCondition: RootCondition
|
|
|
- ));
|
|
|
-
|
|
|
- bool CanUseCondition(Hashtable hashtable)
|
|
|
- {
|
|
|
- return CardEffectCommons.IsExistOnBattleArea(card)
|
|
|
- && CardEffectCommons.IsOwnerTurn(card);
|
|
|
- }
|
|
|
- }
|
|
|
- #endregion
|
|
|
-
|
|
|
return cardEffects;
|
|
|
}
|
|
|
}
|