add climbing preset + fields

This commit is contained in:
Pavel Zbytovský 2024-01-30 12:30:20 +01:00
parent 2f24b915df
commit c6e1f01e8d
15 changed files with 193 additions and 0 deletions

View file

@ -0,0 +1,17 @@
{
"key": "climbing:bolt",
"type": "combo",
"options": [
"expansion",
"glue-in",
"ring"
],
"label": "Bolt type",
"strings": {
"options": {
"expansion": "expansion bolt",
"glue-in": "glue-in bolt",
"ring": "ring bolt"
}
}
}

View file

@ -0,0 +1,5 @@
{
"key": "climbing:bolted",
"type": "check",
"label": "Bolted"
}

View file

@ -0,0 +1,6 @@
{
"key": "climbing:bolts",
"type": "number",
"minValue": 0,
"label": "Number of bolts"
}

View file

@ -0,0 +1,6 @@
{
"key": "climbing:grade:french",
"type": "text",
"label": "Grade (french)",
"placeholder": "5c"
}

View file

@ -0,0 +1,6 @@
{
"key": "climbing:grade:saxon",
"type": "text",
"label": "Grade (saxon)",
"placeholder": "VIIa"
}

View file

@ -0,0 +1,6 @@
{
"key": "climbing:grade:uiaa",
"type": "text",
"label": "Grade (UIAA)",
"placeholder": "6-"
}

View file

@ -0,0 +1,6 @@
{
"key": "climbing:length",
"type": "number",
"minValue": 0,
"label": "Length (m)"
}

View file

@ -0,0 +1,27 @@
{
"key": "climbing:orientation",
"type": "combo",
"options": [
"N",
"NE",
"E",
"SE",
"S",
"SW",
"W",
"NW"
],
"label": "Orientation",
"strings": {
"options": {
"N": "North",
"NE": "North-East",
"E": "East",
"SE": "South-East",
"S": "South",
"SW": "South-West",
"W": "West",
"NW": "North-West"
}
}
}

View file

@ -0,0 +1,10 @@
{
"key": "climbing:quality",
"type": "combo",
"options": [
"fragile",
"medium",
"solid"
],
"label": "Rock quality"
}

View file

@ -0,0 +1,11 @@
{
"key": "climbing:rock",
"type": "combo",
"options": [
"limestone",
"sandstone",
"granite",
"basalt"
],
"label": "Rock type"
}

View file

@ -0,0 +1,6 @@
{
"key": "climbing:routes",
"type": "number",
"minValue": 0,
"label": "Number of routes"
}

View file

@ -0,0 +1,5 @@
{
"key": "climbing:summit_log",
"type": "check",
"label": "Summit log"
}