Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions schema/task.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@
"type": "string",
"maxLength": 255
},
"shortName": {
"type": "string",
"maxLength": 14
},
"tip": {
"type": "string"
},
Expand Down
179 changes: 179 additions & 0 deletions tiers/easy.json

Large diffs are not rendered by default.

215 changes: 215 additions & 0 deletions tiers/elite.json

Large diffs are not rendered by default.

220 changes: 220 additions & 0 deletions tiers/hard.json

Large diffs are not rendered by default.

198 changes: 198 additions & 0 deletions tiers/medium.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export interface Root {
export interface Task {
id: string;
name: string;
shortName?: string;
tip?: string;
wikiLink: string;
imageLink: string;
Expand Down
Loading