ThauEx / ffrk-proxy

Proxy for Final Fantasy Record Keeper written in node.js
GNU Lesser General Public License v3.0
39 stars 21 forks source link

Stat Changes #45

Closed Paravir closed 8 years ago

Paravir commented 8 years ago

I was wondering: what number or line of code do I have to put in for this language to leave stats unchanged?

Like enemy atk/def/mag/res/etc, and same thing with buddy/supporter. I want to enjoy the challenge but do enjoy the luxury of not having to grind for ability hones.

ThauEx commented 8 years ago

Have a look her: https://github.com/ThauEx/ffrk-proxy#proxy-configuration

Paravir commented 8 years ago

I understand where the file and configuration is to change these, guess I should be more clear.

I was more talking about how to return the normal stats in the line of code: buddy: { stats: { atk: { doc: 'atk of buddy', format: Number, default: 9999, }, def: { doc: 'def of buddy', format: Number, default: 9999, }, matk: { doc: 'matk of buddy', format: Number, default: 9999, }, mdef: { doc: 'mdef of buddy', format: Number, default: 9999, }, mnd: { doc: 'mnd of buddy', format: Number, default: 9999, }, acc: { doc: 'acc of buddy', format: Number, default: 9999, }, eva: { doc: 'eva of buddy', format: Number, default: 9999, }, spd: { doc: 'spd of buddy', format: Number, default: 9999, }, },

and the line of code:

enemy: { stats: { atk: { doc: 'atk of enemy', format: Number, default: 1, }, def: { doc: 'def of enemy', format: Number, default: 1, }, matk: { doc: 'matk of enemy', format: Number, default: 1, }, mdef: { doc: 'mdef of enemy', format: Number, default: 1, }, mnd: { doc: 'mnd of enemy', format: Number, default: 1, }, acc: { doc: 'acc of enemy', format: Number, default: 1, }, eva: { doc: 'eva of enemy', format: Number, default: 1, }, spd: { doc: 'spd of enemy', format: Number, default: 1, }, }, I.E. The 9999 in buddy stats and the 1 in enemy stats. I just copied and pasted this over from the config file, and I know it's not properly formatted in this post.

ThauEx commented 8 years ago

Normal buddy stats: https://github.com/ThauEx/ffrk-proxy/blob/master/config/default.buddy-normal-stats.example.yml Normal enemy stats: https://github.com/ThauEx/ffrk-proxy/blob/master/config/default.enemy-normal-stats.example.yml

Just merge these two files and put the content in config/default.yml

Paravir commented 8 years ago

Awesome thank you!

And keep up the good work, quite impressive what you've all managed to do! :+1:

Also, thank you for the quick responses. :smiley: