Просмотр исходного кода

EX8_061 ess text fix

Fixing the wording on the selection message for the ESS

https://discord.com/channels/1095717982522585098/1229224709007343687/1407097652578881697
skikklesman 1 год назад
Родитель
Сommit
eabb7c8be0
1 измененных файлов с 4 добавлено и 2 удалено
  1. 4 2
      Assets/CardEffect/EX8/Purple/EX8_061.cs

+ 4 - 2
Assets/CardEffect/EX8/Purple/EX8_061.cs

@@ -189,7 +189,7 @@ namespace DCGO.CardEffects.EX8
                         canNoSelect: () => true,
                         selectCardCoroutine: SelectCardCoroutine,
                         afterSelectCardCoroutine: null,
-                        message: "Select 1 digivolution card to play.",
+                        message: "Select 1 level 4 or lower Digimon card to play.",
                         maxCount: 1,
                         canEndNotMax: false,
                         isShowOpponent: true,
@@ -200,7 +200,9 @@ namespace DCGO.CardEffects.EX8
                         selectPlayer: card.Owner,
                         cardEffect: activateClass);
 
-                    selectCardEffect.SetUpCustomMessage("Select 1 digivolution card to play.", "The opponent is selecting card to play.");
+                    selectCardEffect.SetUpCustomMessage(
+                        "Select 1 level 4 or lower Digimon card to play.",
+                        "The opponent is selecting 1 level 4 or lower Digimon card to play.");
                     selectCardEffect.SetUpCustomMessage_ShowCard("Played Card");
 
                     yield return StartCoroutine(selectCardEffect.Activate());