-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathchallenges.yml
More file actions
195 lines (195 loc) · 5.19 KB
/
Copy pathchallenges.yml
File metadata and controls
195 lines (195 loc) · 5.19 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
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
id: challenges
type: object
isDefaultOpen: true
properties:
- key: data
type: array
openedByDefault: true
overrideCodeGeneratePropertyName: ChallengeMasterElement
items:
type: object
properties:
- key: challengeGuid
type: uuid
autoGenerated: true
- key: initialUnlocked
type: boolean
default: false
$memo: チャレンジが初期状態でアンロックされているかどうか
- key: unlockAllPreviousChallengeComplete
type: boolean
default: true
$memo: 前のチャレンジが全て完了になったらアンロックするか
- key: prevChallengeGuids
type: array
optional: true
isDefaultOpen: true
items:
type: uuid
foreignKey:
schemaId: challenges
foreignKeyIdPath: /data/[*]/challengeGuid
displayElementPath: /data/[*]/title
- key: title
type: string
default: New Challenge
- key: summary
type: string
default: New Challenge summary
- key: playSkitType
type: enum
default: None
options:
- None
- BackgroundSkit
- key: playSkitParam
switch: ./playSkitType
cases:
- when: None
type: object
properties: []
- when: BackgroundSkit
type: object
properties:
- key: fireSkitName
type: string
- key: taskCompletionType
type: enum
default: createItem
options:
- createItem
- inInventoryItem
- blockPlace
- key: taskParam
isDefaultOpen: true
switch: ./taskCompletionType
cases:
- when: createItem
type: object
properties:
- key: itemGuid
type: uuid
foreignKey:
schemaId: items
foreignKeyIdPath: /data/[*]/itemGuid
displayElementPath: /data/[*]/name
- when: inInventoryItem
type: object
properties:
- key: itemGuid
type: uuid
foreignKey:
schemaId: items
foreignKeyIdPath: /data/[*]/itemGuid
displayElementPath: /data/[*]/name
- key: itemCount
type: integer
default: 1
- when: blockPlace
type: object
properties:
- key: blockGuid
type: uuid
foreignKey:
schemaId: blocks
foreignKeyIdPath: /data/[*]/blockGuid
displayElementPath: /data/[*]/name
- key: itemCount
type: integer
default: 1
- key: tutorials
type: array
isDefaultOpen: true
items:
type: object
properties:
- key: tutorialType
type: enum
default: uiHighLight
options:
- mapObjectPin
- keyControl
- uiHighLight
- itemViewHighLight
- key: tutorialParam
switch: ./tutorialType
cases:
- when: mapObjectPin
type: object
properties:
- key: mapObjectGuid
type: uuid
foreignKey:
schemaId: mapObjects
foreignKeyIdPath: /data/[*]/mapObjectGuid
displayElementPath: /data/[*]/mapObjectName
- key: pinText
type: string
default: pin text
- when: keyControl
type: object
properties:
- key: uiState
type: enum
options:
- GameScreen
- PlayerInventory
- BlockInventory
- PauseMenu
- DeleteBar
- Story
- PlaceBlock
default: GameScreen
- key: controlText
type: string
default: control text
- when: uiHighLight
type: object
properties:
- key: highLightUIObjectId
type: string
default: ui object id
- key: highLightText
type: string
default: highlight text
- when: itemViewHighLight
type: object
properties:
- key: highLightItemGuid
type: uuid
foreignKey:
schemaId: items
foreignKeyIdPath: /data/[*]/itemGuid
displayElementPath: /data/[*]/name
- key: highLightText
type: string
default: highlight text
- key: startedActions
ref: challengeAction
- key: clearedActions
ref: challengeAction
- key: displayListParam
type: object
isDefaultOpen: true
properties:
- key: UIPosition
type: vector2
default:
- 0
- 0
overrideCodeGeneratePropertyName: DisplayInChallengeListPosition
- key: UIScale
type: vector3
default:
- 1
- 1
- 1
overrideCodeGeneratePropertyName: DisplayInChallengeListScale
- key: IconItem
type: uuid
foreignKey:
schemaId: items
foreignKeyIdPath: /data/[*]/itemGuid
displayElementPath: /data/[*]/name
optional: true
overrideCodeGeneratePropertyName: DisplayInChallengeListIconItemGuid