1crate::ix!();
3
4#[derive(Copy,EnumIter,Debug, Clone, PartialEq, Eq, Hash)]
5pub enum WarriorLeadershipCapability {
6 BoostsMoraleThroughPersonalLeadership,
8
9 CapableOfDominanceAndAuthority,
11
12 CommandsAuthorityInConflictSituations,
14
15 CourageousLeaderInBattle,
17
18 CourageousMilitaryLeader,
20
21 DistinguishedRevolutionaryWarHero,
23
24 LeadsByExample,
26
27 LeadsCoordinatedAttacks,
29
30 ExpertTacticalCommander,
32
33 SovereignWarriorMonarch,
35
36 WarriorQueenAndMilitaryLeader,
38
39 QuintessentialWarriorGod,
41
42 StrategicLeaderInCourtPolitics,
44
45 EmpowersSubordinatesThroughMentorship,
47
48 ExpertInAllianceBuildingAndDiplomacy,
50
51 InspiresUnwaveringLoyalty,
53
54 VersatileLeaderAcrossWarAndPeace,
56
57 EmploysPsychologicalMotivation,
59
60 AnticipatesEnemyStrategies,
62
63 MasterOfEffectiveDelegation,
65
66 DevelopsFutureLeadersRapidly,
68
69 ExpertInCrisisLeadership,
71
72 FostersUnityThroughCharisma,
74
75 BalancesDisciplineWithEmpathy,
77}
78
79impl WarriorLeadershipCapability {
80 #[instrument(level = "trace", skip(self))]
84 pub fn intrinsic_dimension_ratings(&self) -> WarriorCapabilityIntrinsicDimensionRatings {
85 use WarriorLeadershipCapability::*;
86 let ratings = match self {
87 BoostsMoraleThroughPersonalLeadership => wc_ratings!(
92 0.60,0.60,0.50,0.60,0.40,0.60,0.00,0.20,0.80,0.40,
93 0.80,0.80,0.70,0.40,0.80,0.90,0.50,0.40,0.80,0.20,
94 0.30,0.50,0.50,0.40,0.60,0.10,0.30,0.20,0.70,0.20,
95 0.40,0.60,0.40,0.30,0.00,0.40,0.60,0.20,0.50,0.50,
96 0.50,0.50,0.50,0.40,0.30,0.50,0.40,0.60,0.20,0.10,
97 0.70,0.60,0.70,0.40,0.60,0.50,0.70,0.50,0.60,0.60,
98 0.40,0.60,0.00,0.00,0.20,0.00,0.00,0.40,0.20,0.00,
99 0.30,0.50,0.00,0.40,0.80,0.00,0.00,0.00,0.20,0.20,
100 0.00,0.30,0.20,0.40,0.30,0.50,0.50,0.00,0.30,0.00,
101 0.75,0.70,0.40,0.70,0.60,0.70,0.85,0.80,0.80,0.60,
102 0.70,0.60,0.60,0.70,0.60,0.80,0.40,0.50,0.50,0.60,
103 0.40,0.60,0.50,0.40,0.70
104 ),
105
106 CapableOfDominanceAndAuthority => wc_ratings!(
111 0.50,0.80,0.60,0.40,0.60,0.55,0.00,0.30,0.50,0.75,
112 0.70,0.60,0.65,0.70,0.60,0.60,0.55,0.65,0.50,0.30,
113 0.90,0.60,0.40,0.50,0.55,0.70,0.40,0.30,0.60,0.60,
114 0.55,0.40,0.30,0.25,0.00,0.55,0.65,0.80,0.60,0.50,
115 0.70,0.60,0.45,0.40,0.65,0.35,0.55,0.30,0.20,0.35,
116 0.65,0.55,0.45,0.45,0.55,0.40,0.65,0.70,0.65,0.50,
117 0.60,0.35,0.00,0.00,0.25,0.00,0.00,0.55,0.45,0.00,
118 0.60,0.65,0.00,0.60,0.50,0.00,0.00,0.00,0.30,0.25,
119 0.00,0.35,0.25,0.40,0.40,0.60,0.70,0.00,0.40,0.00,
120 0.60,0.50,0.45,0.55,0.70,0.80,0.75,0.65,0.40,0.50,
121 0.60,0.45,0.40,0.65,0.70,0.50,0.45,0.40,0.55,0.60,
122 0.50,0.65,0.55,0.45,0.70
123 ),
124
125 CommandsAuthorityInConflictSituations => wc_ratings!(
130 0.45,0.80,0.60,0.55,0.50,0.60,0.00,0.30,0.60,0.60,
131 0.75,0.65,0.70,0.60,0.55,0.65,0.70,0.70,0.55,0.25,
132 0.70,0.70,0.40,0.50,0.60,0.55,0.40,0.30,0.65,0.50,
133 0.55,0.45,0.30,0.25,0.00,0.55,0.70,0.65,0.70,0.55,
134 0.60,0.60,0.55,0.45,0.40,0.35,0.55,0.30,0.20,0.35,
135 0.70,0.60,0.55,0.50,0.60,0.40,0.70,0.80,0.70,0.55,
136 0.65,0.40,0.00,0.00,0.25,0.00,0.00,0.55,0.45,0.00,
137 0.65,0.70,0.00,0.60,0.50,0.00,0.00,0.00,0.35,0.30,
138 0.00,0.35,0.30,0.50,0.45,0.70,0.80,0.00,0.45,0.00,
139 0.55,0.50,0.45,0.60,0.70,0.75,0.70,0.60,0.35,0.55,
140 0.60,0.40,0.35,0.60,0.70,0.45,0.45,0.40,0.55,0.60,
141 0.55,0.60,0.50,0.45,0.75
142 ),
143
144 CourageousLeaderInBattle => wc_ratings!(
149 0.65,0.60,0.50,0.55,0.60,0.60,0.00,0.20,0.70,0.70,
150 0.90,0.80,0.70,0.40,0.85,0.80,0.60,0.50,0.60,0.20,
151 0.50,0.60,0.40,0.40,0.60,0.20,0.35,0.25,0.65,0.40,
152 0.45,0.55,0.30,0.20,0.00,0.50,0.65,0.30,0.60,0.60,
153 0.70,0.65,0.60,0.50,0.40,0.45,0.50,0.55,0.20,0.30,
154 0.75,0.65,0.55,0.50,0.60,0.40,0.70,0.65,0.60,0.55,
155 0.65,0.35,0.00,0.00,0.25,0.00,0.00,0.60,0.40,0.00,
156 0.55,0.60,0.00,0.55,0.65,0.00,0.00,0.00,0.30,0.25,
157 0.00,0.30,0.25,0.45,0.40,0.60,0.70,0.00,0.45,0.00,
158 0.65,0.50,0.45,0.65,0.60,0.85,0.90,0.70,0.45,0.55,
159 0.65,0.45,0.35,0.60,0.60,0.50,0.45,0.45,0.50,0.50,
160 0.45,0.55,0.50,0.45,0.80
161 ),
162
163 CourageousMilitaryLeader => wc_ratings!(
168 0.70,0.70,0.70,0.55,0.65,0.65,0.00,0.25,0.70,0.70,
169 0.80,0.80,0.75,0.45,0.80,0.80,0.70,0.60,0.65,0.30,
170 0.60,0.70,0.45,0.45,0.65,0.25,0.40,0.30,0.70,0.45,
171 0.50,0.60,0.35,0.25,0.00,0.55,0.70,0.35,0.70,0.60,
172 0.75,0.70,0.65,0.55,0.45,0.50,0.55,0.40,0.25,0.35,
173 0.75,0.70,0.60,0.50,0.65,0.45,0.75,0.70,0.65,0.60,
174 0.70,0.35,0.00,0.00,0.25,0.00,0.00,0.60,0.45,0.00,
175 0.60,0.65,0.00,0.60,0.70,0.00,0.00,0.00,0.35,0.30,
176 0.00,0.35,0.25,0.45,0.45,0.60,0.75,0.00,0.50,0.00,
177 0.65,0.50,0.50,0.65,0.65,0.85,0.85,0.75,0.50,0.60,
178 0.70,0.45,0.40,0.65,0.65,0.55,0.45,0.50,0.55,0.55,
179 0.50,0.60,0.55,0.50,0.80
180 ),
181
182 DistinguishedRevolutionaryWarHero => wc_ratings!(
187 0.75,0.65,0.65,0.60,0.55,0.60,0.00,0.25,0.75,0.70,
188 0.85,0.85,0.80,0.50,0.80,0.85,0.70,0.65,0.80,0.90,
189 0.70,0.70,0.55,0.55,0.70,0.40,0.45,0.35,0.70,0.55,
190 0.55,0.60,0.40,0.30,0.00,0.60,0.70,0.40,0.75,0.60,
191 0.75,0.70,0.65,0.55,0.45,0.55,0.60,0.50,0.30,0.40,
192 0.80,0.70,0.65,0.55,0.70,0.45,0.75,0.75,0.70,0.65,
193 0.70,0.40,0.00,0.00,0.30,0.00,0.00,0.65,0.55,0.00,
194 0.60,0.65,0.00,0.60,0.65,0.00,0.00,0.00,0.35,0.35,
195 0.00,0.40,0.30,0.45,0.50,0.65,0.80,0.00,0.45,0.00,
196 0.70,0.55,0.50,0.70,0.70,0.90,0.90,0.75,0.55,0.65,
197 0.75,0.50,0.45,0.70,0.70,0.60,0.50,0.55,0.60,0.60,
198 0.50,0.65,0.60,0.55,0.80
199 ),
200
201 LeadsByExample => wc_ratings!(
206 0.60,0.60,0.60,0.55,0.50,0.60,0.00,0.20,0.80,0.50,
207 0.75,0.85,0.75,0.35,0.75,0.85,0.60,0.55,0.90,0.10,
208 0.40,0.60,0.60,0.45,0.60,0.10,0.35,0.20,0.70,0.25,
209 0.45,0.70,0.50,0.40,0.00,0.55,0.60,0.20,0.55,0.55,
210 0.60,0.60,0.50,0.35,0.30,0.45,0.60,0.25,0.15,0.35,
211 0.70,0.65,0.75,0.45,0.65,0.50,0.80,0.55,0.65,0.60,
212 0.45,0.65,0.00,0.00,0.25,0.00,0.00,0.50,0.35,0.00,
213 0.55,0.60,0.00,0.55,0.70,0.00,0.00,0.00,0.25,0.20,
214 0.00,0.35,0.25,0.45,0.40,0.60,0.55,0.00,0.40,0.00,
215 0.80,0.75,0.45,0.85,0.75,0.65,0.80,0.90,0.85,0.65,
216 0.75,0.55,0.55,0.70,0.60,0.85,0.45,0.50,0.55,0.60,
217 0.40,0.60,0.55,0.45,0.75
218 ),
219
220 LeadsCoordinatedAttacks => wc_ratings!(
225 0.55,0.70,0.70,0.50,0.55,0.60,0.00,0.25,0.60,0.60,
226 0.70,0.70,0.65,0.50,0.65,0.75,0.90,0.60,0.55,0.20,
227 0.50,0.80,0.55,0.50,0.65,0.25,0.45,0.30,0.80,0.55,
228 0.55,0.50,0.35,0.25,0.00,0.60,0.65,0.30,0.70,0.60,
229 0.65,0.60,0.60,0.55,0.45,0.55,0.65,0.40,0.25,0.40,
230 0.70,0.60,0.55,0.55,0.65,0.35,0.70,0.80,0.75,0.70,
231 0.70,0.40,0.00,0.00,0.30,0.00,0.00,0.65,0.55,0.00,
232 0.60,0.75,0.00,0.55,0.60,0.00,0.00,0.00,0.30,0.25,
233 0.00,0.35,0.30,0.55,0.45,0.65,0.70,0.00,0.45,0.00,
234 0.60,0.55,0.50,0.60,0.80,0.80,0.80,0.70,0.55,0.60,
235 0.70,0.50,0.50,0.70,0.65,0.55,0.50,0.50,0.60,0.65,
236 0.50,0.70,0.60,0.50,0.70
237 ),
238
239 ExpertTacticalCommander => wc_ratings!(
244 0.60,0.75,0.85,0.50,0.55,0.60,0.00,0.30,0.60,0.60,
245 0.70,0.70,0.70,0.55,0.60,0.65,0.85,0.60,0.60,0.20,
246 0.55,0.90,0.55,0.50,0.70,0.30,0.45,0.35,0.75,0.60,
247 0.60,0.50,0.35,0.25,0.00,0.70,0.70,0.35,0.75,0.60,
248 0.70,0.65,0.65,0.55,0.45,0.60,0.65,0.50,0.30,0.40,
249 0.75,0.70,0.60,0.60,0.70,0.35,0.75,0.85,0.80,0.75,
250 0.75,0.40,0.00,0.00,0.30,0.00,0.00,0.70,0.60,0.00,
251 0.60,0.80,0.00,0.60,0.60,0.00,0.00,0.00,0.35,0.30,
252 0.00,0.35,0.30,0.55,0.50,0.70,0.80,0.00,0.50,0.00,
253 0.60,0.50,0.50,0.60,0.85,0.80,0.80,0.70,0.45,0.55,
254 0.70,0.45,0.40,0.70,0.70,0.55,0.50,0.55,0.65,0.70,
255 0.55,0.75,0.60,0.50,0.80
256 ),
257
258 SovereignWarriorMonarch => wc_ratings!(
263 0.70,0.80,0.70,0.55,0.60,0.60,0.00,0.35,0.70,0.65,
264 0.75,0.75,0.70,0.65,0.70,0.70,0.70,0.85,0.65,0.25,
265 0.80,0.70,0.60,0.55,0.65,0.35,0.45,0.35,0.65,0.55,
266 0.60,0.55,0.35,0.30,0.00,0.65,0.70,0.60,0.70,0.55,
267 0.75,0.70,0.65,0.55,0.50,0.50,0.55,0.50,0.35,0.45,
268 0.80,0.70,0.60,0.55,0.65,0.45,0.70,0.75,0.70,0.60,
269 0.70,0.45,0.00,0.00,0.30,0.00,0.00,0.65,0.55,0.00,
270 0.60,0.70,0.00,0.65,0.60,0.00,0.00,0.00,0.35,0.30,
271 0.00,0.40,0.30,0.55,0.50,0.70,0.75,0.00,0.55,0.00,
272 0.65,0.55,0.50,0.65,0.70,0.85,0.80,0.75,0.50,0.60,
273 0.70,0.55,0.60,0.65,0.70,0.60,0.50,0.55,0.65,0.70,
274 0.60,0.65,0.60,0.50,0.80
275 ),
276
277 WarriorQueenAndMilitaryLeader => wc_ratings!(
282 0.70,0.75,0.70,0.55,0.55,0.60,0.00,0.35,0.70,0.60,
283 0.75,0.75,0.70,0.60,0.70,0.75,0.70,0.80,0.65,0.30,
284 0.75,0.70,0.70,0.55,0.65,0.30,0.45,0.40,0.70,0.50,
285 0.55,0.55,0.35,0.30,0.00,0.65,0.70,0.55,0.70,0.55,
286 0.70,0.65,0.65,0.55,0.50,0.55,0.55,0.50,0.35,0.45,
287 0.75,0.70,0.60,0.60,0.70,0.50,0.70,0.75,0.70,0.65,
288 0.70,0.40,0.00,0.00,0.30,0.00,0.00,0.65,0.55,0.00,
289 0.60,0.70,0.00,0.65,0.75,0.00,0.00,0.00,0.35,0.30,
290 0.00,0.40,0.30,0.55,0.50,0.70,0.75,0.00,0.55,0.00,
291 0.70,0.70,0.55,0.70,0.75,0.80,0.75,0.80,0.55,0.65,
292 0.70,0.65,0.80,0.65,0.70,0.65,0.50,0.55,0.65,0.75,
293 0.60,0.65,0.60,0.55,0.80
294 ),
295
296 QuintessentialWarriorGod => wc_ratings!(
301 0.95,0.90,0.90,0.85,0.90,0.90,0.95,0.80,0.90,0.90,
302 0.95,0.95,0.90,0.85,0.95,0.90,0.90,0.85,0.95,0.85,
303 0.90,0.90,0.80,0.85,0.90,0.70,0.80,0.85,0.85,0.90,
304 0.85,0.85,0.80,0.80,0.85,0.90,0.90,0.85,0.90,0.90,
305 0.95,0.95,0.90,0.85,0.85,0.90,0.90,0.85,0.85,0.85,
306 0.95,0.95,0.90,0.85,0.90,0.90,0.95,0.90,0.95,0.90,
307 0.95,0.80,0.95,0.95,0.90,0.95,0.95,0.90,0.90,0.95,
308 0.90,0.90,0.95,0.90,0.90,0.95,0.95,0.95,0.90,0.90,
309 0.90,0.90,0.90,0.90,0.90,0.90,0.90,0.95,0.90,0.95,
310 0.95,0.90,0.90,0.95,0.95,0.95,0.95,0.95,0.95,0.95,
311 0.95,0.90,0.90,0.90,0.90,0.95,0.90,0.90,0.90,0.95,
312 0.95,0.95,0.95,0.90,0.95
313 ),
314
315 StrategicLeaderInCourtPolitics => wc_ratings!(
320 0.50,0.60,0.75,0.45,0.40,0.55,0.00,0.40,0.75,0.45,
321 0.40,0.60,0.60,0.50,0.45,0.50,0.65,0.90,0.60,0.20,
322 0.35,0.60,0.85,0.60,0.60,0.25,0.35,0.40,0.60,0.35,
323 0.40,0.45,0.30,0.35,0.00,0.55,0.55,0.25,0.55,0.45,
324 0.50,0.45,0.45,0.40,0.35,0.55,0.50,0.40,0.25,0.30,
325 0.55,0.50,0.55,0.45,0.55,0.40,0.55,0.60,0.70,0.55,
326 0.40,0.65,0.00,0.00,0.30,0.00,0.00,0.45,0.35,0.00,
327 0.35,0.55,0.00,0.45,0.50,0.00,0.00,0.00,0.30,0.25,
328 0.00,0.30,0.30,0.45,0.45,0.50,0.55,0.00,0.50,0.00,
329 0.70,0.80,0.55,0.70,0.75,0.65,0.55,0.80,0.75,0.55,
330 0.60,0.80,0.85,0.55,0.60,0.70,0.45,0.50,0.55,0.60,
331 0.40,0.55,0.50,0.45,0.70
332 ),
333
334 EmpowersSubordinatesThroughMentorship => wc_ratings!(
339 0.50,0.55,0.60,0.50,0.40,0.55,0.00,0.25,0.80,0.40,
340 0.60,0.75,0.70,0.40,0.60,0.85,0.70,0.60,0.80,0.15,
341 0.30,0.55,0.75,0.45,0.60,0.15,0.35,0.25,0.80,0.25,
342 0.45,0.70,0.45,0.40,0.00,0.55,0.60,0.20,0.50,0.45,
343 0.50,0.45,0.45,0.35,0.30,0.50,0.55,0.30,0.20,0.25,
344 0.60,0.55,0.80,0.50,0.70,0.50,0.80,0.50,0.60,0.65,
345 0.40,0.65,0.00,0.00,0.30,0.00,0.00,0.40,0.30,0.00,
346 0.40,0.50,0.00,0.45,0.80,0.00,0.00,0.00,0.25,0.20,
347 0.00,0.30,0.20,0.45,0.40,0.45,0.55,0.00,0.45,0.00,
348 0.75,0.85,0.50,0.85,0.70,0.65,0.55,0.85,0.75,0.60,
349 0.70,0.70,0.75,0.55,0.60,0.80,0.45,0.50,0.60,0.65,
350 0.40,0.60,0.55,0.40,0.70
351 ),
352
353 ExpertInAllianceBuildingAndDiplomacy => wc_ratings!(
358 0.45,0.55,0.65,0.45,0.35,0.50,0.00,0.35,0.80,0.45,
359 0.35,0.60,0.55,0.40,0.45,0.60,0.65,0.75,0.55,0.10,
360 0.25,0.55,0.90,0.60,0.55,0.10,0.35,0.45,0.60,0.30,
361 0.35,0.45,0.30,0.35,0.00,0.50,0.55,0.20,0.45,0.40,
362 0.45,0.40,0.40,0.30,0.25,0.55,0.50,0.35,0.15,0.25,
363 0.55,0.50,0.60,0.45,0.55,0.35,0.55,0.60,0.70,0.50,
364 0.35,0.65,0.00,0.00,0.25,0.00,0.00,0.45,0.35,0.00,
365 0.35,0.50,0.00,0.45,0.65,0.00,0.00,0.00,0.25,0.20,
366 0.00,0.30,0.25,0.45,0.40,0.50,0.55,0.00,0.45,0.00,
367 0.70,0.85,0.50,0.70,0.70,0.60,0.50,0.80,0.75,0.55,
368 0.60,0.85,0.90,0.55,0.55,0.70,0.45,0.50,0.50,0.60,
369 0.40,0.55,0.50,0.45,0.65
370 ),
371
372 InspiresUnwaveringLoyalty => wc_ratings!(
377 0.55,0.60,0.60,0.55,0.45,0.60,0.00,0.20,0.80,0.55,
378 0.80,0.85,0.80,0.40,0.75,0.90,0.60,0.55,0.70,0.20,
379 0.35,0.60,0.60,0.45,0.65,0.15,0.35,0.25,0.70,0.30,
380 0.45,0.65,0.40,0.30,0.00,0.55,0.65,0.25,0.55,0.50,
381 0.55,0.50,0.50,0.40,0.35,0.50,0.55,0.35,0.20,0.30,
382 0.70,0.65,0.80,0.50,0.70,0.45,0.85,0.60,0.70,0.60,
383 0.40,0.55,0.00,0.00,0.25,0.00,0.00,0.45,0.35,0.00,
384 0.35,0.50,0.00,0.45,0.80,0.00,0.00,0.00,0.25,0.20,
385 0.00,0.25,0.25,0.40,0.35,0.50,0.55,0.00,0.40,0.00,
386 0.80,0.80,0.50,0.85,0.70,0.70,0.65,0.85,0.80,0.60,
387 0.70,0.75,0.70,0.55,0.55,0.90,0.45,0.50,0.55,0.60,
388 0.40,0.55,0.50,0.45,0.70
389 ),
390
391 VersatileLeaderAcrossWarAndPeace => wc_ratings!(
396 0.55,0.65,0.70,0.60,0.55,0.60,0.00,0.30,0.70,0.60,
397 0.70,0.75,0.75,0.45,0.70,0.75,0.70,0.70,0.70,0.30,
398 0.60,0.70,0.70,0.50,0.65,0.25,0.45,0.35,0.80,0.60,
399 0.55,0.55,0.40,0.35,0.00,0.65,0.70,0.40,0.70,0.60,
400 0.65,0.60,0.60,0.55,0.50,0.60,0.60,0.50,0.30,0.40,
401 0.75,0.70,0.65,0.60,0.70,0.45,0.75,0.80,0.75,0.70,
402 0.70,0.50,0.00,0.00,0.30,0.00,0.00,0.70,0.60,0.00,
403 0.55,0.70,0.00,0.60,0.65,0.00,0.00,0.00,0.35,0.30,
404 0.00,0.35,0.30,0.55,0.50,0.65,0.75,0.00,0.50,0.00,
405 0.70,0.60,0.50,0.70,0.80,0.80,0.80,0.70,0.55,0.60,
406 0.70,0.60,0.60,0.60,0.65,0.70,0.50,0.55,0.60,0.65,
407 0.55,0.70,0.60,0.55,0.75
408 ),
409
410 EmploysPsychologicalMotivation => wc_ratings!(
415 0.45,0.60,0.65,0.50,0.40,0.55,0.00,0.25,0.70,0.55,
416 0.60,0.70,0.70,0.45,0.55,0.75,0.65,0.60,0.60,0.15,
417 0.35,0.60,0.65,0.85,0.60,0.15,0.35,0.70,0.75,0.35,
418 0.40,0.50,0.30,0.30,0.00,0.55,0.60,0.25,0.55,0.50,
419 0.50,0.45,0.45,0.40,0.35,0.55,0.55,0.35,0.20,0.30,
420 0.60,0.55,0.60,0.50,0.60,0.40,0.60,0.65,0.70,0.60,
421 0.50,0.60,0.00,0.00,0.70,0.00,0.00,0.55,0.40,0.00,
422 0.40,0.55,0.00,0.45,0.55,0.00,0.60,0.00,0.70,0.55,
423 0.00,0.40,0.25,0.45,0.40,0.55,0.65,0.00,0.50,0.00,
424 0.60,0.75,0.50,0.60,0.65,0.65,0.60,0.65,0.55,0.50,
425 0.60,0.60,0.55,0.55,0.60,0.65,0.45,0.50,0.55,0.60,
426 0.45,0.60,0.50,0.45,0.70
427 ),
428
429 AnticipatesEnemyStrategies => wc_ratings!(
434 0.50,0.60,0.90,0.50,0.45,0.60,0.00,0.25,0.60,0.60,
435 0.65,0.70,0.75,0.45,0.60,0.60,0.70,0.60,0.60,0.20,
436 0.45,0.70,0.60,0.55,0.70,0.20,0.45,0.30,0.70,0.45,
437 0.50,0.45,0.30,0.25,0.00,0.60,0.70,0.35,0.70,0.55,
438 0.60,0.55,0.55,0.50,0.40,0.55,0.60,0.35,0.30,0.35,
439 0.70,0.60,0.60,0.55,0.65,0.35,0.70,0.70,0.85,0.65,
440 0.70,0.45,0.00,0.00,0.25,0.00,0.00,0.60,0.50,0.00,
441 0.55,0.70,0.00,0.55,0.55,0.00,0.00,0.00,0.30,0.25,
442 0.00,0.35,0.30,0.50,0.45,0.70,0.80,0.00,0.55,0.00,
443 0.55,0.55,0.50,0.60,0.80,0.75,0.70,0.65,0.50,0.55,
444 0.65,0.55,0.50,0.65,0.75,0.60,0.50,0.55,0.60,0.65,
445 0.55,0.70,0.55,0.50,0.75
446 ),
447
448 MasterOfEffectiveDelegation => wc_ratings!(
453 0.45,0.65,0.70,0.50,0.45,0.55,0.00,0.25,0.60,0.50,
454 0.55,0.60,0.60,0.45,0.55,0.70,0.80,0.65,0.65,0.15,
455 0.35,0.60,0.70,0.50,0.60,0.20,0.40,0.30,0.75,0.50,
456 0.45,0.50,0.30,0.30,0.00,0.55,0.60,0.30,0.60,0.55,
457 0.55,0.50,0.55,0.45,0.40,0.50,0.55,0.35,0.20,0.30,
458 0.65,0.60,0.70,0.50,0.65,0.35,0.70,0.75,0.70,0.70,
459 0.55,0.50,0.00,0.00,0.25,0.00,0.00,0.55,0.45,0.00,
460 0.50,0.60,0.00,0.50,0.55,0.00,0.00,0.00,0.30,0.25,
461 0.00,0.30,0.25,0.45,0.40,0.50,0.55,0.00,0.45,0.00,
462 0.55,0.60,0.50,0.55,0.65,0.70,0.60,0.65,0.55,0.50,
463 0.60,0.55,0.55,0.55,0.60,0.60,0.45,0.50,0.70,0.60,
464 0.50,0.60,0.55,0.45,0.70
465 ),
466
467 DevelopsFutureLeadersRapidly => wc_ratings!(
472 0.45,0.55,0.60,0.50,0.40,0.55,0.00,0.25,0.80,0.45,
473 0.60,0.75,0.70,0.45,0.60,0.80,0.70,0.60,0.75,0.15,
474 0.35,0.55,0.75,0.50,0.60,0.15,0.35,0.30,0.80,0.35,
475 0.45,0.65,0.45,0.40,0.00,0.55,0.60,0.20,0.55,0.45,
476 0.50,0.45,0.45,0.40,0.35,0.55,0.55,0.35,0.20,0.30,
477 0.65,0.60,0.75,0.55,0.70,0.45,0.80,0.55,0.70,0.60,
478 0.40,0.60,0.00,0.00,0.30,0.00,0.00,0.55,0.45,0.00,
479 0.45,0.55,0.00,0.50,0.75,0.00,0.00,0.00,0.30,0.25,
480 0.00,0.30,0.25,0.45,0.40,0.50,0.60,0.00,0.45,0.00,
481 0.75,0.80,0.55,0.80,0.70,0.65,0.60,0.80,0.70,0.60,
482 0.70,0.70,0.65,0.55,0.55,0.80,0.50,0.55,0.65,0.80,
483 0.45,0.60,0.55,0.45,0.70
484 ),
485
486 ExpertInCrisisLeadership => wc_ratings!(
491 0.50,0.65,0.70,0.55,0.55,0.85,0.00,0.25,0.70,0.70,
492 0.70,0.80,0.85,0.50,0.70,0.75,0.70,0.65,0.65,0.20,
493 0.55,0.70,0.60,0.55,0.70,0.25,0.45,0.30,0.75,0.60,
494 0.55,0.50,0.35,0.30,0.00,0.65,0.70,0.30,0.80,0.55,
495 0.65,0.60,0.60,0.55,0.45,0.60,0.60,0.40,0.25,0.35,
496 0.85,0.75,0.60,0.55,0.70,0.45,0.80,0.80,0.85,0.75,
497 0.75,0.60,0.00,0.00,0.30,0.00,0.00,0.65,0.55,0.00,
498 0.60,0.70,0.00,0.60,0.55,0.00,0.00,0.00,0.35,0.30,
499 0.00,0.40,0.30,0.55,0.55,0.75,0.85,0.00,0.55,0.00,
500 0.65,0.60,0.50,0.70,0.80,0.80,0.75,0.70,0.55,0.60,
501 0.70,0.60,0.55,0.65,0.80,0.60,0.50,0.55,0.70,0.75,
502 0.55,0.70,0.65,0.55,0.90
503 ),
504
505 FostersUnityThroughCharisma => wc_ratings!(
510 0.55,0.60,0.60,0.55,0.45,0.60,0.00,0.20,0.80,0.50,
511 0.70,0.80,0.75,0.40,0.70,0.85,0.65,0.60,0.75,0.20,
512 0.35,0.60,0.60,0.45,0.60,0.15,0.35,0.25,0.70,0.30,
513 0.45,0.65,0.40,0.30,0.00,0.55,0.65,0.25,0.55,0.50,
514 0.55,0.50,0.50,0.45,0.35,0.50,0.55,0.30,0.20,0.30,
515 0.70,0.65,0.70,0.50,0.65,0.45,0.85,0.60,0.70,0.60,
516 0.45,0.55,0.00,0.00,0.25,0.00,0.00,0.45,0.35,0.00,
517 0.35,0.50,0.00,0.45,0.80,0.00,0.00,0.00,0.30,0.25,
518 0.00,0.30,0.25,0.45,0.35,0.50,0.55,0.00,0.40,0.00,
519 0.80,0.85,0.50,0.80,0.70,0.75,0.70,0.85,0.85,0.65,
520 0.70,0.70,0.70,0.55,0.55,0.85,0.45,0.50,0.55,0.60,
521 0.40,0.55,0.50,0.45,0.75
522 ),
523
524 BalancesDisciplineWithEmpathy => wc_ratings!(
529 0.50,0.60,0.65,0.55,0.45,0.60,0.00,0.25,0.75,0.45,
530 0.65,0.80,0.70,0.40,0.65,0.80,0.70,0.65,0.75,0.15,
531 0.35,0.60,0.70,0.50,0.60,0.15,0.35,0.25,0.75,0.30,
532 0.45,0.60,0.40,0.35,0.00,0.55,0.60,0.25,0.55,0.50,
533 0.55,0.50,0.50,0.45,0.35,0.55,0.55,0.35,0.20,0.30,
534 0.70,0.65,0.70,0.50,0.60,0.40,0.80,0.60,0.70,0.60,
535 0.45,0.60,0.00,0.00,0.25,0.00,0.00,0.50,0.40,0.00,
536 0.35,0.55,0.00,0.50,0.75,0.00,0.00,0.00,0.25,0.25,
537 0.00,0.30,0.25,0.45,0.35,0.55,0.60,0.00,0.40,0.00,
538 0.75,0.75,0.50,0.75,0.75,0.75,0.65,0.85,0.80,0.60,
539 0.70,0.65,0.60,0.55,0.65,0.80,0.45,0.50,0.60,0.65,
540 0.45,0.60,0.55,0.45,0.75
541 ),
542 };
543 trace!(?self, "computed WarriorCapabilityIntrinsicDimensionRatings");
544 ratings
545 }
546}