-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclasses.json
108 lines (86 loc) · 2.17 KB
/
classes.json
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
106
107
108
{
"values": {
"BULLET_SPEED_MIN": 200,
"BULLET_SPEED_MIN": 350,
"BULLET_SPEED_AVg": ["*BULLET_SPEED_MIN", "*BULLET_SPEED_MIN"],
"BULLET_SPEED_MULT_MIN": 3,
"BULLET_SPEED_MULT_MAX": 3.5,
"SHOTGUN_PELLET_COUNT": [6, 8],
"SHOTGUN_DAMAGE_DIVIDER": 2,
"SHOTGUN_STOPPING_POWER_DIVIDER": 2
},
"classes": {
"Class_Paper": {
"weight": 2,
"name": "Paper",
"texture": "paper"
},
"Class_Message": {
"Inherits": ["Class_Paper"],
"importance": 1,
"name": "Note from a friend"
},
"Class_Item_Diploma": {
"Inherits": ["Class_Paper"],
"importance": 50,
"name": "Diploma",
"description": "A paper to show you're moving on up."
},
"Class_Item_Bachelor_Degree": {
"Inherits": ["Class_Item_Diploma"],
"name": "A Bachelor's Disploma",
"importance": 100
},
"Class_Item_Masters_Degree": {
"Inherits": ["Class_Item_Diploma"],
"name": "A Master's Diploma",
"importance": 300
},
"Class_BodyPart": {
"blood": 50,
"texture": "flesh"
},
"Class_Arm": {
"Inherits": ["Class_BodyPart"],
"actions": ["grab", "punch"]
},
"Class_Leg": {
"Inherits": ["Class_BodyPart"],
"actions": ["kick", "run"]
},
"Class_LeftLeg": { "Inherits": ["Class_Leg"], "$_side": "left" },
"Class_RightLeg": { "Inherits": ["Class_Leg"], "$_side": "right" },
"Class_RightArm": { "Inherits": ["Class_Arm"], "$_side": "right" },
"Class_LeftArm": { "Inherits": ["Class_Arm"], "$_side": "left" },
"Class_Heart": {
"blood": 1000,
"sensitive": "yes"
},
"Class_BodyTorso": {
"Inherits": ["Class_Heart"]
},
"Class_Limbs": {
"Inherits": ["Class_LeftLeg", "Class_RightLeg", "Class_RightArm", "Class_LeftArm"]
},
"Class_HumanBeing": {
"name": "Genericus",
"description": "A regular person",
"Inherits": ["Class_BodyTorso", "Class_Limbs"]
},
"Class_Backpack": {
"inventory": [],
"weight": 50
},
"Class_StudentBackPack": {
"Inherits": ["Class_Backpack"],
"inventory": [
{ "Inherits": ["Class_Item_Masters_Degree"] },
{ "Inherits": ["Class_Message"] }
]
},
"Class_Student": {
"Inherits": ["Class_HumanBeing", "Class_StudentBackPack"],
"name": "Studentius Maximus"
}
}
}