-
Notifications
You must be signed in to change notification settings - Fork 73
/
mapping.py
47 lines (41 loc) · 1.06 KB
/
mapping.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
"""
@Author https://github.com/DougTheDruid
@Source https://github.com/DougTheDruid/SoT-ESP-Framework
"""
ships = {
# ------------ SHIPS / AI SHIPS ------------
"BP_SmallShipTemplate_C": {
"Name": "Sloop (Near)",
},
"BP_SmallShipNetProxy_C": {
"Name": "Sloop",
},
"BP_MediumShipTemplate_C": {
"Name": "Brig (Near)",
},
"BP_MediumShipNetProxy_C": {
"Name": "Brig",
},
"BP_LargeShipTemplate_C": {
"Name": "Galleon (Near)",
},
"BP_LargeShipNetProxy_C": {
"Name": "Galleon",
},
"BP_AISmallShipTemplate_C": {
"Name": "Skeleton Sloop (Near)",
},
"BP_AISmallShipNetProxy_C": {
"Name": "Skeleton Sloop",
},
"BP_AILargeShipTemplate_C": {
"Name": "Skeleton Galleon (Near)",
},
"BP_AILargeShipNetProxy_C": {
"Name": "Skeleton Galleon",
},
# "BP_AggressiveGhostShip_C": {
# "Name": "Flameheart Galleon",
# }, # To implement, must modify ship.py's update method for visibility
}
ship_keys = set(ships.keys())