Add roller coaster presets (#985)

Adds presets for:

* roller_coaster=track
* roller_coaster=station
* roller_coaster=support

Also adds a field for roller_coaster:track=* and the layer field to attraction=water_slide
This commit is contained in:
archpdx 2023-12-15 06:58:06 -08:00 committed by GitHub
parent f3e760373c
commit 0f157cc98d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 94 additions and 1 deletions

View file

@ -0,0 +1,37 @@
{
"key": "roller_coaster",
"type": "combo",
"label": "Type",
"strings": {
"options": {
"lift_hill": {
"title": "Lift Hill",
"description": "An inclined track meant to give the trains potential energy"
},
"launch_straight": {
"title": "Launch Track",
"description": "A section of track meant to accelerate the trains through external input"
},
"brake_run": {
"title": "Brake Run",
"description": "A section of track meant to slow or stop trains"
},
"station": {
"title": "Station",
"description": "A section of track where a train stops to board and unboard passengers"
},
"moving": {
"title": "Moving",
"description": "Any type of moving track, like switch tracks"
},
"waiting": {
"title": "Waiting",
"description": "Tracks used to hold trains if the next block section is occupied"
},
"maintenance": {
"title": "Maintenance",
"description": "Tracks meant to hold spare trains or conduct maintenance"
}
}
}
}

View file

@ -2,7 +2,8 @@
"icon": "roentgen-slide_and_water",
"fields": [
"{attraction}",
"height"
"height",
"layer"
],
"moreFields": [
"{attraction}",

View file

@ -0,0 +1,18 @@
{
"icon": "temaki-roller_coaster",
"fields": [
"building_area_yes"
],
"geometry": [
"vertex",
"area"
],
"terms": [
"theme park",
"amusement ride"
],
"tags": {
"roller_coaster": "station"
},
"name": "Roller Coaster Station"
}

View file

@ -0,0 +1,18 @@
{
"icon": "roentgen-tower",
"fields": [
"height",
"layer",
"material"
],
"moreFields": [
"colour"
],
"geometry": [
"line"
],
"tags": {
"roller_coaster": "support"
},
"name": "Roller Coaster Support"
}

View file

@ -0,0 +1,19 @@
{
"icon": "temaki-roller_coaster",
"fields": [
"roller_coaster/track",
"height",
"layer"
],
"geometry": [
"line"
],
"terms": [
"theme park",
"amusement ride"
],
"tags": {
"roller_coaster": "track"
},
"name": "Roller Coaster Track"
}