This repository was archived by the owner on Jun 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdefault_config.json
More file actions
105 lines (105 loc) · 2.71 KB
/
default_config.json
File metadata and controls
105 lines (105 loc) · 2.71 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"names": {
"first_names": {
"male": [
"Monte",
"Jack"
],
"female": [
"Evie",
"Izzy",
"Courtney"
],
"gender_neutral": [
"Alex"
]
},
"last_names": [
"Hellawell",
"Dalton",
"Gibbons",
"Scutt",
"Maltby",
"Kostyszyn"
]
},
"events": {
"primary": {
"baby": [
{
"text": "{actor} ({gender}) was born happy and healthy",
"type": "birth"
},
{
"text": "A child pops out, their name is {actor} ({gender})",
"type": "birth"
},
{
"text": "{actor} ({gender}) was born underweight",
"type": "birth"
},
{
"text": "{actor} ({gender}) was born obese",
"type": "birth"
}
],
"toddler": [
{
"text": "You learnt to ride a bike",
"type": "hobby"
},
{
"text": "You kick around a football",
"type": "hobby"
},
{
"text": "You cried because you lost your favourite toy",
"type": "play"
},
{
"text": "You found out about farmers",
"type": "learn"
}
],
"teen": [],
"late-teens": [],
"adult": [],
"elderly": []
},
"meta": {
"tiers": [
{
"key": "baby",
"ages": [0, 0],
"start": true
},
{
"key": "toddler",
"ages": [1, 12]
},
{
"key": "teen",
"ages": [13, 15]
},
{
"key": "late-teens",
"ages": [16, 19]
},
{
"key": "adult",
"ages": [20, 64]
},
{
"key": "elderly",
"ages": [65, 300]
}
],
"types": [
{
"type": "birth",
"limit": 1
}
]
}
}
}