From a7b443c27e1926202291a0847607fef88e9baf3f Mon Sep 17 00:00:00 2001 From: Nick Date: Sun, 20 Mar 2022 22:27:37 -0400 Subject: [PATCH] CloakRadius and InvulnerableToSun added to schema --- NewHorizons/schema.json | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/NewHorizons/schema.json b/NewHorizons/schema.json index 9f6bd4fa..506fe634 100644 --- a/NewHorizons/schema.json +++ b/NewHorizons/schema.json @@ -165,7 +165,7 @@ "groundSize": { "type": "number", "default": 0, - "description": "Radius of the a simple sphere used as the ground for the planet. If you want to use more complex terrain, leave this as 0." + "description": "Radius of a simple sphere used as the ground for the planet. If you want to use more complex terrain, leave this as 0." }, "hasCometTail": { "type": "boolean", @@ -190,6 +190,16 @@ "type": "boolean", "default": false, "description": "Is this body an artificial satellite of a planet/moon/star?" + }, + "cloakRadius": { + "type": "number", + "default": 0, + "description": "Radius of the cloaking field around the planet. It's a bit finicky so experiment with different values. If you don't want a cloak, leave this as 0." + }, + "invulnerableToSun": { + "type": "boolean", + "default": false, + "description": "Can this planet survive entering a star?" } } },