i oversimplified things, my bad (and made it into something else)
the way it is in coding seems to be it will figure out how much quanta to generate
for each SC/SS in play going
one by one until it find no more SC/SS to calculate
simple algorithm :-
1 SS: calculate for the first SS and adds 3
2 SS: sees ^, sees the 2nd and then multiplied for the 2nd and adds 6
3 SS: sees ^^, sees ^, sees 3rd and then multiplied for the 3rd and adds 9
...
6 SS: sees 1, 2, 3, 4, 5, mutiplied for each and then multiplied for the last SC and adds 18
they stack but the wrong way due to coding
the way it supposed to be is
1 SS: death trigger sees 1 SS in play and adds 3
2 SS: sees 2 SS and adds 6
3 SS: sees 3 SS and adds 9
...
6 SS: sees 6, 3x6 = 18 and adds 18
(not going into full pseudocode not to confuse people some more)