add quickstart WIP

This commit is contained in:
Space Admiral 2022-12-10 08:11:53 -08:00
parent b6a1eb7900
commit 8d508283cd
3 changed files with 6 additions and 4 deletions

View File

@ -32,6 +32,7 @@
- most market data will only be available if you have a ship present at the given waypoint - most market data will only be available if you have a ship present at the given waypoint
- jump gates are typically restricted to other jump gates within the same faction - jump gates are typically restricted to other jump gates within the same faction
- most actions will result in a reactor cooldown, which will prevent your ship from taking other actions until the cooldown has expired - most actions will result in a reactor cooldown, which will prevent your ship from taking other actions until the cooldown has expired
- markets have a limit on how many units can be bought or sold at a given time, which is the same as the market's trade volume
# Factions and Reputation # Factions and Reputation

View File

@ -1,10 +1,11 @@
{ {
"type": "string", "type": "string",
"description": "The ship's set speed when travelling between waypoints. Nav speed can wear down the ship's engines and lower crew morale but improves travel time.", "description": "The ship's set speed when travelling between waypoints.",
"enum": [ "enum": [
"CONSERVATIVE", "DRIFT",
"STEALTH",
"CRUISE", "CRUISE",
"MAX" "BURN"
], ],
"default": "CRUISE" "default": "CRUISE"
} }

View File

@ -1,7 +1,7 @@
{ {
"type": "object", "type": "object",
"properties": { "properties": {
"symbol": { "shipSymbol": {
"type": "string", "type": "string",
"description": "The symbol of the ship that was purchased." "description": "The symbol of the ship that was purchased."
}, },