forked from Ka006/Sphack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample_data.py
More file actions
42 lines (42 loc) · 2.18 KB
/
sample_data.py
File metadata and controls
42 lines (42 loc) · 2.18 KB
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
# Expanded list of items with more variety and relevant zone
expanded_items_dict = {
"Food Packet": ["Crew_Quarters", "Storage_Bay"],
"Oxygen Cylinder": ["Airlock", "Crew_Quarters", "Medical_Bay"],
"First Aid Kit": ["Medical_Bay", "Crew_Quarters"],
"Water Bottle": ["Crew_Quarters", "Storage_Bay"],
"Space Suit": ["Storage_Bay", "Airlock"],
"Tool Kit": ["Maintenance_Bay", "Storage_Bay"],
"Radiation Shield": ["Storage_Bay", "Engineering_Bay"],
"Emergency Beacon": ["Command_Center", "Cockpit"],
"Battery Pack": ["Power_Bay", "External_Storage"],
"Solar Panel": ["External_Storage", "Power_Bay"],
"Navigation Module": ["Cockpit", "Command_Center"],
"Communication Device": ["Command_Center", "Crew_Quarters"],
"Research Samples": ["Lab", "Storage_Bay"],
"Fire Extinguisher": ["Crew_Quarters", "Engineering_Bay"],
"Thruster Fuel": ["Engine_Bay", "Storage_Bay"],
"Microgravity Lab Kit": ["Lab", "Crew_Quarters"],
"Pressure Regulator": ["Airlock", "Engineering_Bay"],
"Cooling System": ["Engineering_Bay", "Power_Bay"],
"Waste Management Kit": ["Sanitation_Bay", "Engineering_Bay"],
"Asteroid Sample Container": ["Lab", "Storage_Bay"],
"3D Printer": ["Engineering_Bay", "Lab"],
"Laptop": ["Crew_Quarters", "Command_Center"],
"Scientific Sensor": ["Lab", "Cockpit"],
"Medical Scanner": ["Medical_Bay", "Lab"],
"Vacuum Sealed Tools": ["Storage_Bay", "Maintenance_Bay"],
"EV Suit Battery": ["Airlock", "Storage_Bay"],
"Tether Reel": ["External_Storage", "Airlock"],
"CO2 Scrubber": ["Life_Support", "Engineering_Bay"],
"Water Purification Unit": ["Life_Support", "Crew_Quarters"],
"Seed Packets": ["Greenhouse", "Lab"],
"Lab Microscope": ["Lab", "Medical_Bay"],
"Protein Bars": ["Crew_Quarters", "Storage_Bay"],
"Antibiotic Supply": ["Medical_Bay", "Lab"],
"Gyroscope Module": ["Cockpit", "Engineering_Bay"],
"Circuit Board": ["Engineering_Bay", "Storage_Bay"],
"Helmet Visor": ["Storage_Bay", "Crew_Quarters"],
"Emergency Oxygen Mask": ["Crew_Quarters", "Medical_Bay"],
"LED Work Light": ["Maintenance_Bay", "Engineering_Bay"],
"Handheld Spectrometer": ["Lab", "Engineering_Bay"],
}