elthran / RPG-Game

0 stars 1 forks source link

Need to clean up abilities.csv #323

Open elthran opened 6 years ago

elthran commented 6 years ago

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.

klondikemarlen commented 6 years ago

I would make the 'current' and 'next' values a @propery value. I'll take a look at the other stuff too.