-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
211 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import { kyu5 } from "./exams/kyu5"; | ||
import { kyu4 } from "./exams/kyu4"; | ||
import { kyu3 } from "./exams/kyu3"; | ||
import { kyu2 } from "./exams/kyu2"; | ||
import { kyu1 } from "./exams/kyu1"; | ||
import type { DojoDetails } from "$core/model/Dojo"; | ||
|
||
export default { | ||
exams: [kyu5, kyu4, kyu3, kyu2, kyu1], | ||
} satisfies DojoDetails; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import type { Exam } from "$core/model"; | ||
|
||
export const kyu1: Exam = { | ||
id: "kyu1", | ||
label: { | ||
type: "wellknown", | ||
key: "kyu1", | ||
}, | ||
|
||
techniques: {}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import type { Exam } from "$core/model"; | ||
|
||
export const kyu2: Exam = { | ||
id: "kyu2", | ||
label: { | ||
type: "wellknown", | ||
key: "kyu2", | ||
}, | ||
|
||
techniques: {}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
import type { Exam } from "$core/model"; | ||
|
||
export const kyu3: Exam = { | ||
id: "kyu3", | ||
label: { | ||
type: "wellknown", | ||
key: "kyu3", | ||
}, | ||
techniques: { | ||
"suwari waza": { | ||
"gyuako hanmi katate dori": { | ||
ikkyo: { omote: {}, ura: {} }, | ||
nikyo: { omote: {}, ura: {} }, | ||
sankyo: { omote: {}, ura: {} }, | ||
}, | ||
"kata dori": { | ||
ikkyo: { omote: {}, ura: {} }, | ||
nikyo: { omote: {}, ura: {} }, | ||
sankyo: { omote: {}, ura: {} }, | ||
}, | ||
"shomen uchi": { | ||
ikkyo: { omote: {}, ura: {} }, | ||
nikyo: { omote: {}, ura: {} }, | ||
sankyo: { omote: {}, ura: {} }, | ||
"kote gaeshi": { "single-direction": {} }, | ||
}, | ||
}, | ||
"hanmi handachi waza": { | ||
"gyuako hanmi katate dori": { | ||
ikkyo: { omote: {}, ura: {} }, | ||
"shiho nage": { omote: {}, ura: {} }, | ||
}, | ||
}, | ||
"tachi waza": { | ||
"ai hanmi katate dori": { | ||
sankyo: { omote: {}, ura: {} }, | ||
}, | ||
"gyuako hanmi katate dori": { | ||
"sokumen irimi nage": { "single-direction": {} }, | ||
}, | ||
"ryote dori": { | ||
ikkyo: { omote: {}, ura: {} }, | ||
nikyo: { omote: {}, ura: {} }, | ||
"uchi kaiten nage": { omote: {}, ura: {} }, | ||
}, | ||
"shomen uchi": { | ||
ikkyo: { omote: {}, ura: {} }, | ||
nikyo: { omote: {}, ura: {} }, | ||
sankyo: { omote: {}, ura: {} }, | ||
"shiho nage": { "single-direction": {} }, | ||
"kokyu nage": { "single-direction": {} }, | ||
"soto kaiten nage": { omote: {}, ura: {} }, | ||
}, | ||
"katate ryote dori": { | ||
"shiho nage": { "single-direction": {} }, | ||
"ude kime nage": { "single-direction": {} }, | ||
"kokyu ho": { "single-direction": {} }, | ||
}, | ||
"yokomen uchi": { | ||
ikkyo: { omote: {}, ura: {} }, | ||
nikyo: { omote: {}, ura: {} }, | ||
"kote gaeshi": { "single-direction": {} }, | ||
"irimi nage": { "single-direction": {} }, | ||
}, | ||
"ushiro ryote dori": { | ||
ikkyo: { omote: {}, ura: {} }, | ||
nikyo: { omote: {}, ura: {} }, | ||
"shiho nage": { omote: {}, ura: {} }, | ||
"ude kime nage": { "single-direction": {} }, | ||
"kote gaeshi": { "single-direction": {} }, | ||
"kokyu nage": { "single-direction": {} }, | ||
"irimi nage": { "single-direction": {} }, | ||
}, | ||
}, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
import type { Exam } from "$core/model"; | ||
|
||
export const kyu4: Exam = { | ||
id: "kyu4", | ||
label: { | ||
type: "wellknown", | ||
key: "kyu4", | ||
}, | ||
|
||
techniques: { | ||
"suwari waza": { | ||
"ai hanmi katate dori": { | ||
ikkyo: { omote: {}, ura: {} }, | ||
"irimi nage": { "single-direction": {} }, | ||
}, | ||
"shomen uchi": { | ||
ikkyo: { omote: {}, ura: {} }, | ||
"irimi nage": { "single-direction": {} }, | ||
}, | ||
}, | ||
"tachi waza": { | ||
"ai hanmi katate dori": { | ||
nikyo: { omote: {}, ura: {} }, | ||
"ude kime nage": { omote: {}, ura: {} }, | ||
}, | ||
"gyuako hanmi katate dori": { | ||
ikkyo: { omote: {}, ura: {} }, | ||
nikyo: { omote: {}, ura: {} }, | ||
"kote gaeshi": { "single-direction": {} }, | ||
"irimi nage": { "single-direction": {} }, | ||
"uchi kaiten nage": { omote: {}, ura: {} }, | ||
"ude kime nage": { omote: {}, ura: {} }, | ||
"soto kaiten nage": { omote: {}, ura: {} }, | ||
"kokyu nage": { "single-direction": {} }, | ||
}, | ||
"yokomen uchi": { "shiho nage": { omote: {}, ura: {} }, "ude kime nage": { omote: {}, ura: {} } }, | ||
"ushiro ryote dori": { sankyo: { omote: {}, ura: {} } }, | ||
"ryote dori": { | ||
"tenchi nage": { omote: {}, ura: {} }, | ||
"shiho nage": { omote: {}, ura: {} }, | ||
}, | ||
"kata dori": { | ||
ikkyo: { omote: {}, ura: {} }, | ||
nikyo: { omote: {}, ura: {} }, | ||
}, | ||
"shomen uchi": { | ||
"kote gaeshi": { "single-direction": {} }, | ||
}, | ||
}, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import type { Exam } from "$core/model"; | ||
|
||
export const kyu5: Exam = { | ||
id: "kyu5", | ||
label: { | ||
type: "wellknown", | ||
key: "kyu5", | ||
}, | ||
techniques: { | ||
"suwari waza": { | ||
"ryote dori": { | ||
"kokyu ho": { "single-direction": {} }, | ||
}, | ||
}, | ||
"tachi waza": { | ||
"ai hanmi katate dori": { | ||
ikkyo: { omote: {}, ura: {} }, | ||
"shiho nage": { omote: {}, ura: {} }, | ||
"kote gaeshi": { "single-direction": {} }, | ||
"irimi nage": { "single-direction": {} }, | ||
"ude kime nage": { omote: {}, ura: {} }, | ||
}, | ||
"katate ryote dori": { | ||
"shiho nage": { omote: {}, ura: {} }, | ||
"tenchi nage": { omote: {}, ura: {} }, | ||
}, | ||
"shomen uchi": { | ||
ikkyo: {}, | ||
"irimi nage": {}, | ||
}, | ||
}, | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
import type { Dojo } from "$core/model/Dojo"; | ||
|
||
export default { | ||
draft: true, | ||
info: { | ||
id: "goerlitz", | ||
name: "Görlitz", | ||
}, | ||
details: () => import("./details"), | ||
} satisfies Dojo; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters