18 lines
658 B
Markdown
18 lines
658 B
Markdown
## Blueprints Module
|
|
|
|
### Module Description
|
|
Defines and manages construction blueprints for planetary structures and facilities.
|
|
|
|
### API Endpoints
|
|
|
|
- **GET /blueprints**
|
|
- *Purpose:* Retrieve list of available blueprints
|
|
- *Auth:* Required (JWT token)
|
|
- *Payload:* None
|
|
- *Response:* `{"blueprints": [{"id": "int", "name": "string", "resource_cost": {"ore": "int", "crystal": "int"}}]}`
|
|
|
|
- **GET /blueprints/{id}**
|
|
- *Purpose:* Retrieve detailed blueprint information
|
|
- *Auth:* Required (JWT token)
|
|
- *Payload:* None
|
|
- *Response:* `{"id": "int", "name": "string", "description": "string", "resource_cost": {"ore": "int", "crystal": "int"}}` |