Are there any attributes that should be in a different table in their design?
In the 'Gods' table, I suggest moving the 'First_Ability', 'Second_Ability', 'Third_Ability', and 'Ultimate' into an 'Ability' table. Then, to make the proper 1:M relationship with 'God', you would want to make a join table, possibly called 'God_Ability', that contains the PK from 'Gods' and 'Ability'.
Identify what NF you think each table is in.
Are there any attributes that should be in a different table in their design?
Do they have any partial dependencies?
Do they have any transitive dependencies?