There is quite a bit of redundancy and messiness the csv file. Firstly, I'm not sure how to pass in null Profs. Most abilities just have one prof (such as relentless which increases your health prof). But some will have two. Currently I just put a dummy prof in for the second one (understanding) and set it to 0. But I want to pass in None or null.
Next, the "Current" and "Next" columns are always going to be identical except with the same minor change (current is current level and next is always current level + 1). These should be combined into one column and our code should just add the +1 adjustment.
There is quite a bit of redundancy and messiness the csv file. Firstly, I'm not sure how to pass in null Profs. Most abilities just have one prof (such as relentless which increases your health prof). But some will have two. Currently I just put a dummy prof in for the second one (understanding) and set it to 0. But I want to pass in None or null.
Next, the "Current" and "Next" columns are always going to be identical except with the same minor change (current is current level and next is always current level + 1). These should be combined into one column and our code should just add the +1 adjustment.