gaycraft/config/valkyrienskies/schemas/vs_server.schema.json

73 lines
2.8 KiB
JSON
Raw Normal View History

2023-11-05 17:20:14 +01:00
{
"$schema" : "https://json-schema.org/draft/2019-09/schema",
"type" : "object",
"properties" : {
"ComputerCraft" : {
"type" : "object",
"properties" : {
"canTurtlesLeaveScaledShips" : {
"type" : "boolean",
"description" : "Turtles leaving scaled up/down ship may cause issuesEnable/Disable Turtles Leaving Scaled Ships?"
}
},
"additionalProperties" : false
},
"FTBChunks" : {
"type" : "object",
"properties" : {
"shipsProtectedByClaims" : {
"type" : "boolean",
"description" : "Are Ships protected by FTB Chunk Claims?"
},
"shipsProtectionOutOfBuildHeight" : {
"type" : "boolean",
"description" : "Are ships protected outside of build height (max and min)?"
}
},
"additionalProperties" : false
},
"aiOnShips" : {
"type" : "boolean",
"description" : "Allow rudimentary pathfinding on ships"
},
"allowMobSpawns" : {
"type" : "boolean",
"description" : "Allow natural mob spawning on ships"
},
"enableInteractDistanceChecks" : {
"type" : "boolean",
"description" : "By default, the vanilla server prevents block interacts past a certain distance to prevent cheat clients from breaking blocks halfway across the map. This approach breaks down in the face of extremely large ships, where the distance from the block origin to the nearest face is greater than the interact distance check allows."
},
"enableMovementChecks" : {
"type" : "boolean",
"description" : "By default, the server checks that player movement is legal, and if it isn't, rubber-bands the player with the infamous \"moved too quickly\" message. Since players on VS ships will move illegally, they will be affected by this check frequently. This option disables that check. (it doesn't work very well anyway, don't worry)"
},
"explosionBlastForce" : {
"type" : "number",
"format" : "double",
"description" : "Blast force in newtons of a TNT explosion at the center of the explosion."
},
"minScaling" : {
"type" : "number",
"format" : "double",
"description" : "Minimum scale of ships"
},
"miniShipSize" : {
"type" : "number",
"format" : "double",
"description" : "Scale of the mini ship creator"
},
"preventFluidEscapingShip" : {
"type" : "boolean",
"description" : "If true, prevents water and other fluids from flowing out of the ship's bounding box."
},
"transformTeleports" : {
"type" : "boolean",
"description" : "If true, teleportation into the shipyard is redirected to the ship it belongs to instead."
},
"$schema" : {
"type" : "string"
}
},
"additionalProperties" : false
}