Instalar o Steam
Iniciar sessão
|
Idioma
简体中文 (Chinês Simplificado)
繁體中文 (Chinês Tradicional)
日本語 (Japonês)
한국어 (Coreano)
ไทย (Tailandês)
Български (Búlgaro)
Čeština (Checo)
Dansk (Dinamarquês)
Deutsch (Alemão)
English (Inglês)
Español-España (Espanhol de Espanha)
Español-Latinoamérica (Espanhol da América Latina)
Ελληνικά (Grego)
Français (Francês)
Italiano (Italiano)
Bahasa Indonesia (Indonésio)
Magyar (Húngaro)
Nederlands (Holandês)
Norsk (Norueguês)
Polski (Polaco)
Português (Brasil)
Română (Romeno)
Русский (Russo)
Suomi (Finlandês)
Svenska (Sueco)
Türkçe (Turco)
Tiếng Việt (Vietnamita)
Українська (Ucraniano)
Relatar problema de tradução
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?