-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.json
172 lines (165 loc) · 5.7 KB
/
functions.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
{
"dropNamespace": false,
"definedFunctions": [
{
"name": "incrementSegment",
"path": "Time_Tools/incrementSegment.mts",
"description": "Increment time by one segment",
"summary": "",
"ignoreOutput": false,
"sameScope": false
},
{
"name": "incrementMinute",
"path": "Time_Tools/incrementMinute.mts",
"description": "This macro has most of the code for changing the time. All of the others eventually come here.",
"summary": "Increment time by one minute",
"ignoreOutput": false,
"sameScope": false
},
{
"name": "incrementRound",
"path": "Time_Tools/incrementRound",
"description": "Calls incrementMinute to actually change the time",
"summary": "Increment time by one round",
"ignoreOutput": false,
"sameScope": false
},
{
"name": "incrementTurn",
"path": "Time_Tools/incrementTurn",
"description": "Uses incrementMinute to advance time by ten minutes",
"summary": "Increment time by one turn",
"ignoreOutput": false,
"sameScope": false
},
{
"name": "incrementYearDate",
"path": "Time_Tools/incrementYearDate",
"description": "Takes care of beginning/end of year, etc.",
"summary": "Changes the yearDate",
"ignoreOutput": false,
"sameScope": false
},
{
"name": "incrementYear",
"path": "Time_Tools/incrementYear",
"description": "Changes the Year",
"summary": "Changes the Year number",
"ignoreOutput": false,
"sameScope": false
},
{
"name": "moons",
"path": "Time_Tools/moons",
"description": "Calculates phase for the moons",
"summary": "Moon calculations",
"ignoreOutput": false,
"sameScope": false
},
{
"name": "weather",
"path": "weather/weather",
"description": "Generates weather from a table",
"summary": "Generates weather",
"ignoreOutput": false,
"sameScope": false
},
{
"name": "getDate",
"path": "Time_Tools/getDate",
"description": "Calculates the date, month, and year from various data",
"summary": "Returns the exact date",
"ignoreOutput": false,
"sameScope": false
},
{
"name": "getTime",
"path": "Time_Tools/getTime",
"description": "Calculates the time from a string number",
"summary": "Returns the current time",
"ignoreOutput": false,
"sameScope": false
},
{
"name": "getYear",
"path": "Time_Tools/getYear",
"description": "Pulls the current year from the data store",
"summary": "Returns the current year",
"ignoreOutput": false,
"sameScope": false
},
{
"name": "getYearDate",
"path": "Time_Tools/getYearDate",
"description": "Pulls the current yearDate from the data store",
"summary": "Returns the current yearDate",
"ignoreOutput": false,
"sameScope": false
},
{
"name": "stardate",
"path": "Time_Tools/yearDateFromDate",
"description": "Calculates a yearDate from day month year.",
"summary": "Returns a date in yearDate format",
"ignoreOutput": false,
"sameScope": false
},
{
"name": "today",
"path": "Time_Tools/today",
"description": "Most of the work is done by getDate",
"summary": "Returns today's date, nicely formatted.",
"ignoreOutput": false,
"sameScope": false
},
{
"name": "timeandtemp",
"path": "Time_Tools/Time_and_Temperature",
"description": "Opens a panel showing the current date, time, and weather conditions. Also, whether anyone has a birthday.",
"summary": "Time and Temperature frame",
"ignoreOutput": false,
"sameScope": false
},
{
"name": "birthdays",
"path": "Time_Tools/Birthdays",
"description": "Scrolls through tokens present and looks for birthdays that match the date.",
"summary": "List today's birthdays",
"ignoreOutput": false,
"sameScope": false
},
{
"name": "age",
"path": "character_details/age",
"description": "Show a character's age, and time to/from birthday.",
"summary": "Show a character's age, and time to/from birthday.",
"ignoreOutput": false,
"sameScope": false
},
{
"name": "setAge",
"path": "character_details/set_age",
"description": "",
"summary": "Set a token's age.",
"ignoreOutput": false,
"sameScope": false
},
{
"name": "pob",
"path": "place_of_birth",
"description": "",
"summary": "",
"ignoreOutput": false,
"sameScope": false
},
{
"name": "calendar",
"path": "Time_Tools/showCalendar",
"description": "",
"summary": "",
"ignoreOutput": false,
"sameScope": false
}
]
}