-
Notifications
You must be signed in to change notification settings - Fork 10
/
types.pas
117 lines (91 loc) · 1.99 KB
/
types.pas
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
109
110
111
112
113
114
115
116
117
unit Types;
interface
uses
outputcolor;
type
TColorString = record
text: String;
color: String;
end;
TMultiLineColorText = array of TColorString;
TStat = record
value: Integer;
changed: Integer;
end;
THero = record
health: TStat;
energy: TStat;
alchohol: TStat;
tune: TStat;
vape: TStat;
strength: TStat;
intelligence: TStat;
fortune: TStat;
love: TStat;
happy: TStat;
ReputationInGroup: TStat;
ReputationInUnderworld: TStat;
end;
TEffect = record
name: String;
text: String;
value: Integer;
end;
TEffects = array of TEffect;
TCondition = record
name: String;
attribute: String;
value: Integer;
text: TColorString;
texts: TMultiLineColorText;
isMultiLine: Boolean;
end;
TConditions = array of TCondition;
TTransition = record
name: String;
text: TColorString;
texts: TMultiLineColorText;
isMultiLine: Boolean;
conditions: TConditions;
effects: TEffects;
toLocation: String;
toEvent: String;
end;
TTransitions = array of TTransition;
TCommand = record
name: TColorString;
text: TColorString;
texts: TMultiLineColorText;
isMultiLine: Boolean;
cmd: String;
conditions: TConditions;
transitions: TTransitions;
end;
TCommands = array of TCommand;
TEvent = record
name: TColorString;
text: TColorString;
texts: TMultiLineColorText;
isMultiLine: Boolean;
commands: TCommands;
end;
TEvents = array of TEvent;
TLocation = record
name: TColorString;
events: TEvents;
end;
TLocations = array of TLocation;
TStory = String;
TStories = array of TStory;
TPosition = record
location: TLocation;
event: TEvent;
end;
TStatus = record
hero: THero;
antiHero: THero;
currentPosition: TPosition;
isCredits: Boolean;
end;
implementation
end.