The version information guaranteed to exist in any version is limited to these items:
- str
- con
- dex
- int
- wis
- cha
- A currency info type that will be set to a long string (that should be ignored).
No defense information is guaranteed to exist, no mods, no hp or proficiency or anything
as per the server code:
statRepository.save(Stat("str"+version.version, "str", "Strength", "Strength", version.version, false))
statRepository.save(Stat("con"+version.version, "con", "Constitution", "Constitution", version.version, false))
statRepository.save(Stat("dex"+version.version, "dex", "Dexterity","Dexterity", version.version, false))
statRepository.save(Stat("int"+version.version, "int", "Intelligence","Intelligence", version.version, false))
statRepository.save(Stat("wis"+version.version, "wis", "Wisdom", "Wisdom", version.version, false))
statRepository.save(Stat("cha"+version.version, "cha", "Charisma","Charisma", version.version, false))
versionInfoRepository.save(VersionInfo("currency"+ version.version, version.version, "currency", "currency", "Replace this with the versions currency" ))
Now, we can increase the minimum working information by changing the server code a bit but I think we should limit that so that we can include any arbitrary version
The version information guaranteed to exist in any version is limited to these items:
No defense information is guaranteed to exist, no mods, no hp or proficiency or anything
as per the server code:
Now, we can increase the minimum working information by changing the server code a bit but I think we should limit that so that we can include any arbitrary version