/ trials = [1-8=noreplace(a,b)]
means sample trials a and b in equal proportions. You'll end up with 4 a-trials and 4-b-trials in random order. With
/ trials = [1-9=noreplace(a,a,b)]
you'll end up with twice as many a-trials compared to b-trials; there'll be 6 x a and only 3 x b, again in random order.
The same applies to your situation: You ought to enter trials in the selection pool in the proportions you need. You'll also find this covered in the documentation topic for the /trials attribute and its examples:
The following block randomly selects either testtrial or distractortrial for each of its 12 trials. The testtrial is run exactly 8 time and distractortrial is run 4 times.
<block myblock>
/ trials=[1-12=noreplace(testtrial, testtrial, distractortrial)]
</block>