Currently, if you want to assign a series of commands to be executed for each given value of a property, it is necessary to define a trigger action for each of the values that the property can assume.
A possible improvement could be represented by a kind of "switch trigger action" which should work according to the following structure:
Switch trigger
Case 0:
command 1;
command 2;
...
command n.
Case 1 :
command 1;
command 2;
...
command n.
Case 2 :
command 1;
command 2;
...
command n.
It's possible?
