Get Resource Node
Get a list of all resource nodes.
getResourceNode: Get a list of all resource nodes.
getResourceDeposit: Get a list of all resource deposits.
getResourceWell: Get a list of all resource wells.
getResourceGeyser: Get a list of all geysers.
Response Body
| Name | Type | Description |
|---|---|---|
ID |
String |
Unique ID of the Resource Node. |
Name |
String |
Name of the Resource Node. |
ClassName |
String |
Class Name of the Resource Node. |
Purity |
String |
Purity in a readable format: |
EnumPurity |
String |
Enum Purity Value: |
ResourceForm |
String |
Resource Form of the Node. |
NodeType |
String |
Type of the Node. |
Exploited |
Boolean |
Is the resource node occupied? |
features |
Object |
An object with actor coordinates and name information. |
properties |
Object |
Name information about the actor. |
name |
String |
Display Name of the Actor. |
type |
String |
Type of the Object. |
geometry |
Object |
Geometry information about the Actor. |
coordinates |
Object |
The Actor coordinates. |
x |
Float |
X Location of the Actor. |
y |
Float |
Y Location of the Actor. |
z |
Float |
Z Location of the Actor. |
type |
String |
It’s always "Point". |
Example Response
[
{
"ID": "BP_ResourceNode100",
"Name": "Crude Oil",
"ClassName": "Desc_LiquidOil_C",
"Purity": "Normal",
"EnumPurity": "RP_Normal",
"ResourceForm": "Liquid",
"NodeType": "Node",
"Exploited": false,
"location": {
"x": 178265.375,
"y": 206095.640625,
"z": -9238.5712890625,
"rotation": 123.25028610229492
},
"features": {
"properties": {
"name": "Crude Oil",
"type": "Resource Node"
},
"geometry": {
"coordinates": {
"x": 178265.375,
"y": 206095.640625,
"z": -9238.5712890625
},
"type": "Point"
}
}
}
]