chore: sync

This commit is contained in:
2026-02-09 00:05:29 +01:00
parent 0301716890
commit 6bfa3d4dda
23 changed files with 622 additions and 18 deletions

18
docs/wiki/economy.md Normal file
View File

@@ -0,0 +1,18 @@
## Economy Module
### Module Description
Manages in-game economic transactions, resource management, and market interactions.
### API Endpoints
- **GET /economy/state**
- *Purpose:* Retrieve current economic state
- *Auth:* Required (JWT token)
- *Payload:* None
- *Response:* `{"credits": "int", "resources": {"ore": "int", "crystal": "int"}}`
- **POST /economy/transaction**
- *Purpose:* Execute resource transaction
- *Auth:* Required (JWT token)
- *Payload:* `{"type": "string", "amount": "int", "target": "string"}`
- *Response:* `{"status": "string", "transaction_id": "string"}`