Spaces:
Running
Running
File size: 1,979 Bytes
610cbd2 | 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 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | use super::bergamo_catalog::{
TechnicianSeed, PART_FILTERS, PART_RELAYS, PART_SENSORS, PART_VALVES, SKILL_ELECTRICAL,
SKILL_ELEVATOR, SKILL_HVAC, SKILL_PLUMBING,
};
pub(super) const TECHNICIANS: &[TechnicianSeed] = &[
TechnicianSeed {
id: "tech-ada",
name: "Ada Romano",
color: "#2563eb",
start_location_idx: 0,
end_location_idx: 0,
skill_mask: ALL_SKILLS,
inventory_mask: ALL_PARTS,
territory: "center",
},
TechnicianSeed {
id: "tech-marco",
name: "Marco Bianchi",
color: "#059669",
start_location_idx: 1,
end_location_idx: 1,
skill_mask: ALL_SKILLS,
inventory_mask: ALL_PARTS,
territory: "east",
},
TechnicianSeed {
id: "tech-elena",
name: "Elena Conti",
color: "#d97706",
start_location_idx: 0,
end_location_idx: 0,
skill_mask: ALL_SKILLS,
inventory_mask: ALL_PARTS,
territory: "north",
},
TechnicianSeed {
id: "tech-paolo",
name: "Paolo Gatti",
color: "#be123c",
start_location_idx: 0,
end_location_idx: 0,
skill_mask: ALL_SKILLS,
inventory_mask: ALL_PARTS,
territory: "west",
},
TechnicianSeed {
id: "tech-sara",
name: "Sara Ferri",
color: "#7c3aed",
start_location_idx: 1,
end_location_idx: 1,
skill_mask: ALL_SKILLS,
inventory_mask: ALL_PARTS,
territory: "south",
},
TechnicianSeed {
id: "tech-luca",
name: "Luca Moretti",
color: "#0f766e",
start_location_idx: 0,
end_location_idx: 0,
skill_mask: ALL_SKILLS,
inventory_mask: ALL_PARTS,
territory: "east",
},
];
const ALL_SKILLS: i64 = SKILL_ELECTRICAL | SKILL_ELEVATOR | SKILL_HVAC | SKILL_PLUMBING;
const ALL_PARTS: i64 = PART_FILTERS | PART_RELAYS | PART_SENSORS | PART_VALVES;
|