From 65b80f98ae637e5ec91c3dbf4642d8902cb1522b Mon Sep 17 00:00:00 2001 From: camille lechauve Date: Fri, 1 Sep 2023 23:41:44 +0200 Subject: [PATCH] add: config example --- config.json.example | 50 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) create mode 100644 config.json.example diff --git a/config.json.example b/config.json.example new file mode 100644 index 0000000..1fad963 --- /dev/null +++ b/config.json.example @@ -0,0 +1,50 @@ +{ + "diseases": [ + { + "name": "diary", + "symbtoms_by_stages": [ + [ + { + "name": "burp", + "level": 1, + "delay": 150, + }, + { + "name": "fart", + "level": 1, + "delay": 250, + } + ], + [ + { + "name": "burp", + "level": 1, + "delay": 50, + }, + { + "name": "fart", + "level": 1, + "delay": 150, + }, + { + "name": "vomit", + "level": 0.5, + "delay": 500, + } + ] + ], + "contaminations_methode": [ + "contact", + "food", + ], + "transmissions_zone_by_stages": [ + 3, + 5 + ], + "stages_durations": [ + 20000, + 40000, + ] + } + ] +} \ No newline at end of file