Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
Once you have a csv file you can use jq to convert it to json. jq runs on windows and linux at least. There are plent of guides out there.
Using the story template linked to in the post, this will convert 'story.csv' to 'story.json':
jq -R '[inputs | split(",") | {
ID: .[0],
Group: .[1],
EventName: .[2],
ChoiceName: .[3],
OutcomeName: .[4],
ChangeGroup: .[5],
ChangeCards: .[6],
ChoiceName1: .[7],
OutcomeName1: .[8],
ChangeGroup1: .[9],
ChangeCards1: .[10]
}]' < story.csv
just wrap it in a script and redirect to story.json
I think the redirects would work in windows, but i havent touched windows in years, so you might have to fiddle a bit
I was excited until I saw that you need to be online to make a spreadsheet playable. Aren't there other methods to create json files without the internet?