Kakoen / valheim-save-tools

Exports Valheim save data (maps and characters) to JSON and back, and processes them.
75 stars 8 forks source link

Skill codes? #9

Closed genehynson closed 3 years ago

genehynson commented 3 years ago

I noticed the skill keys are codes rather than "run" or "bows" or "jump" or whatever. Do you know of a way to convert these codes into what they represent?

    "skills" : {
      "102" : {
        "level" : 38.80513,
        "accumulator" : 104.39973
      },
      "100" : {
        "level" : 28.900082,
        "accumulator" : 54.5
      },
      "11" : {
        "level" : 8.606367,
        "accumulator" : 6.5
      },
      "103" : {
        "level" : 13.091787,
        "accumulator" : 14.550003
      },
      "3" : {
        "level" : 4.088865,
        "accumulator" : 0.0
      },
      "6" : {
        "level" : 7.2975364,
        "accumulator" : 8.75
      },
      "8" : {
        "level" : 20.63859,
        "accumulator" : 20.25
      },
      "101" : {
        "level" : 7.737179,
        "accumulator" : 3.825
      },
      "7" : {
        "level" : 11.408714,
        "accumulator" : 17.5
      },
...

Thanks!

Kakoen commented 3 years ago

@genehynson I could find the following skills:

1 = Swords 2 = Knives 3 = Clubs 4 = Polearms 5 = Spears 6 = Blocking 7 = Axes 8 = Bows 9 = FireMagic 10 = FrostMagic 11 = Unarmed 12 = Pickaxes 13 = WoodCutting 100 = Jump 101 = Sneak 102 = Run 103 = Swim

Hope that helps!

genehynson commented 3 years ago

Exactly what I was looking for, thanks!