2020-01-21 19:48:19 -05:00
|
|
|
"""
|
|
|
|
A listing of hamstudy command resources
|
|
|
|
---
|
|
|
|
Copyright (C) 2019-2020 Abigail Gold, 0x5c
|
|
|
|
|
|
|
|
This file is part of discord-qrmbot and is released under the terms of the GNU
|
|
|
|
General Public License, version 2.
|
|
|
|
"""
|
|
|
|
|
2020-01-30 06:55:11 -05:00
|
|
|
pool_names = {
|
|
|
|
"us": {
|
|
|
|
"technician": "E2",
|
|
|
|
"tech": "E2",
|
|
|
|
"t": "E2",
|
|
|
|
"general": "E3",
|
|
|
|
"gen": "E3",
|
|
|
|
"g": "E3",
|
|
|
|
"extra": "E4",
|
|
|
|
"e": "E4",
|
|
|
|
},
|
|
|
|
"ca": {
|
|
|
|
"basic": "CA_B",
|
|
|
|
"b": "CA_B",
|
|
|
|
"advanced": "CA_A",
|
|
|
|
"adv": "CA_A",
|
|
|
|
"a": "CA_A",
|
|
|
|
"basic_fr": "CA_FB",
|
|
|
|
"b_fr": "CA_FB",
|
|
|
|
"base": "CA_FB",
|
|
|
|
"advanced_fr": "CA_FS",
|
|
|
|
"adv_fr": "CA_FS",
|
|
|
|
"a_fr": "CA_FS",
|
|
|
|
"supérieure": "CA_FS",
|
|
|
|
"superieure": "CA_FS",
|
|
|
|
"s": "CA_FS",
|
|
|
|
},
|
|
|
|
"us_c": {
|
|
|
|
"c1": "C1",
|
|
|
|
"comm1": "C1",
|
|
|
|
"c3": "C3",
|
|
|
|
"comm3": "C3",
|
|
|
|
"c6": "C6",
|
|
|
|
"comm6": "C6",
|
|
|
|
"c7": "C7",
|
|
|
|
"comm7": "C7",
|
|
|
|
"c7r": "C7R",
|
|
|
|
"comm7r": "C7R",
|
|
|
|
"c8": "C8",
|
|
|
|
"comm8": "C8",
|
|
|
|
"c9": "C9",
|
|
|
|
"comm9": "C9",
|
|
|
|
},
|
|
|
|
}
|
2020-01-21 19:48:19 -05:00
|
|
|
|
2020-01-30 06:55:11 -05:00
|
|
|
pool_emojis = {
|
|
|
|
"us": "🇺🇸",
|
|
|
|
"ca": "🇨🇦",
|
|
|
|
"us_c": "🇺🇸 🏢",
|
|
|
|
}
|