|
|
@@ -45,9 +45,9 @@ namespace DCGO.CardEffects.EX6
|
|
|
return true;
|
|
|
}
|
|
|
|
|
|
- bool HasSevelGreatDemonLordsTrait(CardSource cardSource)
|
|
|
+ bool HasSevenGreatDemonLordsTrait(CardSource cardSource)
|
|
|
{
|
|
|
- if (cardSource.IsDigimon)
|
|
|
+ if (cardSource.IsDigimon || cardSource.IsOption)
|
|
|
{
|
|
|
return cardSource.ContainsTraits("Seven Great Demon Lords");
|
|
|
}
|
|
|
@@ -68,7 +68,7 @@ namespace DCGO.CardEffects.EX6
|
|
|
|
|
|
bool CanSelectTrashCardCondition(CardSource cardSource)
|
|
|
{
|
|
|
- if (HasSevelGreatDemonLordsTrait(cardSource))
|
|
|
+ if (HasSevenGreatDemonLordsTrait(cardSource))
|
|
|
{
|
|
|
if (digivolutionCards.Count((filteredCard) => filteredCard.CardNames.Concat(cardSource.CardNames).Distinct().ToList().Count > 0) == 0)
|
|
|
{
|
|
|
@@ -343,7 +343,7 @@ namespace DCGO.CardEffects.EX6
|
|
|
{
|
|
|
if (CardEffectCommons.IsExistOnBattleAreaDigimon(card))
|
|
|
{
|
|
|
- if(card.PermanentOfThisCard().cardSources.Count(HasSevelGreatDemonLordsTrait) >= 7)
|
|
|
+ if(card.PermanentOfThisCard().cardSources.Count(HasSevenGreatDemonLordsTrait) >= 7)
|
|
|
{
|
|
|
return true;
|
|
|
}
|
|
|
@@ -362,7 +362,7 @@ namespace DCGO.CardEffects.EX6
|
|
|
SelectCardEffect selectCardEffect = GManager.instance.GetComponent<SelectCardEffect>();
|
|
|
|
|
|
selectCardEffect.SetUp(
|
|
|
- canTargetCondition: HasSevelGreatDemonLordsTrait,
|
|
|
+ canTargetCondition: HasSevenGreatDemonLordsTrait,
|
|
|
canTargetCondition_ByPreSelecetedList: null,
|
|
|
canEndSelectCondition: null,
|
|
|
canNoSelect: () => true,
|