From d10d79719d17a0a6c0f2b9f7de0b731e52bdd6cc Mon Sep 17 00:00:00 2001 From: Ben C Date: Thu, 13 Feb 2025 22:23:29 +0000 Subject: [PATCH] Updated Schemas --- NewHorizons/Schemas/body_schema.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/NewHorizons/Schemas/body_schema.json b/NewHorizons/Schemas/body_schema.json index 298e2300..1b18d953 100644 --- a/NewHorizons/Schemas/body_schema.json +++ b/NewHorizons/Schemas/body_schema.json @@ -2863,6 +2863,14 @@ "description": "Exclusive to the slide reel type. Condition/material of the reel. Antique is the Stranger, Pristine is the Dreamworld, Rusted is a burned reel.", "default": "antique", "$ref": "#/definitions/SlideReelCondition" + }, + "displaySlides": { + "type": "array", + "description": "Set which slides appear on the slide reel model. Leave empty to default to the first few slides.\nTakes a list of indices, i.e., to show the first 5 slides in reverse you would put [4, 3, 2, 1, 0].\nIndex starts at 0.", + "items": { + "type": "integer", + "format": "int32" + } } } },