Version: 1.0.0 ID: mine-refine-convert Category: Gameplay Type: Workflow
| Stage | Resource | Security |
|---|---|---|
| Mining | oreStored | Stealable |
| Refinement | alphaMatter | Secure |
| Conversion | watts | Secure |
Monitor mining operation status.
queryMining2-1extractor-1Expected Response:
{
"status": "mining",
"currentOre": 4,
"oreExtracted": 1,
"oreStored": 1,
"security": {
"needsRefinement": true,
"warning": "Ore can be stolen - refine immediately"
}
}
Refine ore to Alpha Matter immediately to secure resources.
refine2-11Condition: oreStored > 0
Expected Response:
{
"status": "refined",
"oreRefined": 1,
"alphaMatterGained": 1,
"security": {
"alphaMatterSecure": true,
"cannotBeStolen": true
}
}
Evaluate whether conversion is needed based on:
Convert Alpha Matter to Watts using reactor.
convertPowerreactor1trueCondition: wattsNeeded > 0
Expected Response:
{
"status": "converted",
"method": "reactor",
"alphaMatterUsed": 1,
"wattsGained": 1,
"rate": "1g:1kW"
}
Return to Step 1 and continue the mining cycle.