(s)
| 267 | |
| 268 | INTELLIGENCES = {'brainless', 'animal', 'human'} |
| 269 | def parse_intelligence(s): |
| 270 | return parse_enum(s, "I_", INTELLIGENCES) |
| 271 | |
| 272 | USE_TYPES = {'nothing', 'open_doors', 'starting_equipment', 'weapons_armour'} |
| 273 | def parse_use(s): |
nothing calls this directly
no test coverage detected