- Jan 6, 2018
- 64
- 104
Well, you can't really get more is the sad and short truth without rewriting the CombineTrait code. You are rolling basically a 1/20 shot to get 6 traits. Also, with the addition of some new stuff, I can imagine we will be getting even more traits down the line.There is 7 traits in the game but I've never reached to get all 7 on one monster. I'm stuck at 5 traits atm:
View attachment 4368970
Here is the relevant code section, btw.
C:
int num = Ut.GetRandomIndexFromChanceList(new float[]
{
40f,
30f,
15f,
10f,
5f
}) + 1;
Edit: The simple solution is just to make int num = list.count, btw. Or just delete the section entirely and replace the one instance of num with list.count in the while loop.