-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjsonTemplates.py
87 lines (79 loc) · 3.35 KB
/
jsonTemplates.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
characterBackgroundTemplate = {
"firstName":"null",
"lastName":"null",
"age":"null",
"occupation":"null",
"backstory":"null",
"bias":"null",
"_connectionComments":"create a list of connections to the other characters, they should not be connected to everyone",
"connections":["victim", "null"]
}
storyTemplate = {
"game":{
"playing":"false",
"story":{
"year": storyYear,
"theme":storyTheme,
"synopsys":storyDescription,
"numberOfCharacters":5,
"evidence":{
"_wittnessesComment":"whitnesses should be a list of a sebset of all the characters",
"weapon":weapon,
"witnesses":"null"
}
},
"characters":{
"_comments":"fill this sections with several characters (this should match the numberOfCharacters value) that fit the story theme, only one person should be guilty",
"judge":{
"_comments":"the judge should never be guilty",
"guilty":"false",
"attributes":createCharacterAttributes(),
"background":createCharacterBackground(storyYear, storyTheme, characterBackgroundTemplate ),
"response":{
"responseSentiment":"null",
"responseText":"null"
}
},
"character1":{
"_comments":"the judge should never be guilty",
"guilty":"false",
"attributes":createCharacterAttributes(),
"background":createCharacterBackground(storyYear, storyTheme, characterBackgroundTemplate ),
"response":{
"responseSentiment":"null",
"responseText":"null"
}
},
"character2":{
"_comments":"the judge should never be guilty",
"guilty":"false",
"attributes":createCharacterAttributes(),
"background":createCharacterBackground(storyYear, storyTheme, characterBackgroundTemplate ),
"response":{
"responseSentiment":"null",
"responseText":"null"
}
},
"character3":{
"_comments":"the judge should never be guilty",
"guilty":"false",
"attributes":createCharacterAttributes(),
"background":createCharacterBackground(storyYear, storyTheme, characterBackgroundTemplate ),
"response":{
"responseSentiment":"null",
"responseText":"null"
}
},
"character4":{
"_comments":"the judge should never be guilty",
"guilty":"true",
"attributes":createCharacterAttributes(),
"background":createCharacterBackground(storyYear, storyTheme, characterBackgroundTemplate ),
"response":{
"responseSentiment":"null",
"responseText":"null"
}
}
}
}
}