1 2 3 4 5 6
|
const std::array<std::pair<std::string, int>, 8> injuries = {{
{"Severe Abrasions and Bruising", 20}, {"Cuts w/Stiches", 60},
{"1st Degree Fractures", 150}, {"2nd Degree Fractures", 350},
{"Burn Treatment (all degrees)", 200}, {"Severed Appendage (Fingers/Toes)", 180},
{"Severed Appendages (Arms/Legs)", 430}, {"Concussion", 45}
}};
|