|
|
@@ -36,7 +36,7 @@ namespace DCGO.CardEffects.BT17
|
|
|
|
|
|
bool IsLevel5orLowerArgomon(CardSource source)
|
|
|
{
|
|
|
- if (source.IsDigimon)
|
|
|
+ if (source.IsDigimon || source.IsDigiEgg)
|
|
|
{
|
|
|
if (source.HasLevel && source.Level <= 5)
|
|
|
{
|
|
|
@@ -94,7 +94,7 @@ namespace DCGO.CardEffects.BT17
|
|
|
{
|
|
|
if (CardEffectCommons.HasMatchConditionOwnersCardInTrash(card, IsLevel5orLowerArgomon))
|
|
|
{
|
|
|
- int maxCount = Math.Min(1, CardEffectCommons.MatchConditionOpponentsCardCountInTrash(card,IsLevel5orLowerArgomon));
|
|
|
+ int maxCount = Math.Min(4, CardEffectCommons.MatchConditionOpponentsCardCountInTrash(card,IsLevel5orLowerArgomon));
|
|
|
|
|
|
SelectCardEffect selectCardEffect = GManager.instance.GetComponent<SelectCardEffect>();
|
|
|
|
|
|
@@ -107,7 +107,7 @@ namespace DCGO.CardEffects.BT17
|
|
|
afterSelectCardCoroutine: AfterSelectCardCoroutine,
|
|
|
message: "Select cards to place as the bottom digivolution sources",
|
|
|
maxCount: maxCount,
|
|
|
- canEndNotMax: false,
|
|
|
+ canEndNotMax: true,
|
|
|
isShowOpponent: false,
|
|
|
mode: SelectCardEffect.Mode.Custom,
|
|
|
root: SelectCardEffect.Root.Trash,
|
|
|
@@ -222,7 +222,7 @@ namespace DCGO.CardEffects.BT17
|
|
|
{
|
|
|
if (CardEffectCommons.HasMatchConditionOwnersCardInTrash(card, IsLevel5orLowerArgomon))
|
|
|
{
|
|
|
- int maxCount = Math.Min(1, CardEffectCommons.MatchConditionOpponentsCardCountInTrash(card, IsLevel5orLowerArgomon));
|
|
|
+ int maxCount = Math.Min(4, CardEffectCommons.MatchConditionOpponentsCardCountInTrash(card, IsLevel5orLowerArgomon));
|
|
|
|
|
|
SelectCardEffect selectCardEffect = GManager.instance.GetComponent<SelectCardEffect>();
|
|
|
|
|
|
@@ -235,7 +235,7 @@ namespace DCGO.CardEffects.BT17
|
|
|
afterSelectCardCoroutine: AfterSelectCardCoroutine,
|
|
|
message: "Select cards to place as the bottom digivolution sources",
|
|
|
maxCount: maxCount,
|
|
|
- canEndNotMax: false,
|
|
|
+ canEndNotMax: true,
|
|
|
isShowOpponent: false,
|
|
|
mode: SelectCardEffect.Mode.Custom,
|
|
|
root: SelectCardEffect.Root.Trash,
|
|
|
@@ -333,13 +333,8 @@ namespace DCGO.CardEffects.BT17
|
|
|
|
|
|
bool Condition()
|
|
|
{
|
|
|
- if (CardEffectCommons.IsOwnerTurn(card))
|
|
|
- {
|
|
|
- if (count() >= 1)
|
|
|
- {
|
|
|
- return true;
|
|
|
- }
|
|
|
- }
|
|
|
+ if (count() >= 1)
|
|
|
+ return true;
|
|
|
|
|
|
return false;
|
|
|
}
|