One of the most challenging aspects of game development is balancing. It is very difficult to compile, yet alone change, your code every time you increase damage of a single ability, only to increase it further a second later. This becomes even a bigger issue if you are using C++. C++ is easy to program (you should learn it fully first), and fast to run but there is one huge problem: compilation time.
Use data files load everything that is numeric, textual or enumeration based. When you have a data manager that can fill in your data structures, there will be next to no programming overhead using data files. Trying to offload logic is not easy nor a good idea most cases.
An additional suggestion, but a keyword during development that will reload data files instantly, this might take some time to ensure it will not cause any serious issues but it will worth the effort.