Replies: 1 comment 1 reply
-
|
Regarding the CSV problem I will investigate. Feel free to post a snippet of it here (first 10 lines) or send it to me via Discord 😄 You can also just build your Data Source from the JSON. A data source is essentially 2 files (example: https://github.com/BigJk/snd-open5e/tree/main/BigJk_Open5e%20Weapons) meta.jsonJust the basic infos entries.jsonYou entries as a array. Objects need a unique [
{
"id":"open5e/club",
"name":"Club",
"data": {
// YOUR DATA HERE
}
},
{
"id":"open5e/dagger",
"name":"Dagger",
"data":{
// YOUR DATA HERE
}
}
]Then you can just import the folder EDIT: found the CSV bug and the fix is in the latest release. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hey there! I've got a large list of spells I would love to import as a data source. I compiled it into a json format, then was able to create a csv file following the example. I believe the issue is that the number of columns in the csv far exceeds the 4 in the example? I'm having a difficult time importing it as a data source and I receive the error "header for values not present (record on line 3: wrong number of fields)".
Has anyone had this issue and been able to remedy it?
Beta Was this translation helpful? Give feedback.
All reactions