|
|
@@ -43,18 +43,15 @@ namespace DCGO.CardEffects.EX11
|
|
|
if (validHandCard || validDigivolutionCard)
|
|
|
{
|
|
|
List<SelectionElement<int>> selectionElements = new List<SelectionElement<int>>();
|
|
|
- int index = 0;
|
|
|
if (validHandCard)
|
|
|
{
|
|
|
- selectionElements.Add(new (message: $"Link Maquinamon from hand", value : 1, spriteIndex: index));
|
|
|
- index++;
|
|
|
+ selectionElements.Add(new (message: $"Link Maquinamon from hand", value : 1, spriteIndex: 0));
|
|
|
}
|
|
|
if (validDigivolutionCard)
|
|
|
{
|
|
|
- selectionElements.Add(new (message: $"Link Maquinamon from this Digimon's Digivolution Cards", value : 2, spriteIndex: index));
|
|
|
- index++;
|
|
|
+ selectionElements.Add(new (message: $"Link Maquinamon from this Digimon's Digivolution Cards", value : 2, spriteIndex: 0));
|
|
|
};
|
|
|
- selectionElements.Add(new (message: $"Don't link", value: 3, spriteIndex: index));
|
|
|
+ selectionElements.Add(new (message: $"Don't link", value: 3, spriteIndex: 1));
|
|
|
|
|
|
string selectPlayerMessage = "Will you link a Maquinamon?";
|
|
|
string notSelectPlayerMessage = "The opponent is choosing from which area to select a card.";
|