This breaks skills from playing events when used, the same translation issue that's been talked about before in this thread.
In order for the associated events in CommonEvents.json to play, the translated skill names need to match.
There are currently 231 different events in version 1.09 for a bit less than 231 skills (a couple skills have multiple possible events.)
In the CommonEvents.json file,
the name inside the single-quotes needs to match the skill name from Skills.json:
Code:
use.isSkill() && use.object().name == 'skill name here'
A regex filter can be used to list only the name that needs to be changed:
This basically means that skill names need to be translated twice:
Once in Skills.json and then again in CommonEvents.json