Hey RPG makers, thanks for reading this thread!
I'm still quite new to RPGMaker and have been experimenting with using Javascript in combination with Yanfly plugins to create various skill effects, to various levels of succes haha. (RPG Maker MV)
Right now Im trying to create a skill called gut punch that does the following:
Target an enemy,
Deal X damage to that enemy
if the enemy is poisoned: poison all other enemies.
The idea is that the target vomits over the other enemies spreading his disease to them.
I've tried to write something that I thought would maybe work:
I'm quite certain that all the functions I'm using are correct except for the one I try to change the target with:
target = $gameTroop.aliveMembers();
I know how I would be able to apply poison to the main target, but I don't know how to switch targets at some point in the skill phases to then apply poison to the new targets (being all enemies).
If someone could help me out, that would mean the world to me

.
Thanks in advance,
Cubicle