Hello.
I'm trying to come up with what I would call the foundation of a turn-based combat system. Specifically one that deals with multiple enemies and even multiple of the same sprite. Unfortunately I'm not entirely sure how to go about it.
Let me describe my issue with some comparison. When it comes to dealing with sprites in Construct, it's very easy to interact with and affect a unique sprite via built in features such as collision or mouse click. Those choices are easily implemented in combination with "Pick by unique ID".
But when it comes to a typical RPG turn-based setup, how would I be able to implement a dynamic cycle of highlighted choices based on the spawned enemy sprites (which enemy to attack)? Is it possible to create some sort of temporary list of stored values that includes the sprite's unique ID? I imagine then you could set up some kind of comparison to the list and easily highlight the targetted sprite (and interact with it).
I'm really hoping someone can show me how to handle a bunch of unique sprites without any visible interaction (e.g. sprite collision or mouse click).