mirror of
https://github.com/miaowware/qrm2.git
synced 2024-10-31 14:27:11 -04:00
0a278fe14f
fixes #384
61 lines
1.2 KiB
Python
61 lines
1.2 KiB
Python
"""
|
|
A listing of hamstudy command resources
|
|
---
|
|
Copyright (C) 2019-2021 classabbyamp, 0x5c
|
|
|
|
This file is part of discord-qrmbot and is released under the terms of
|
|
the GNU General Public License, version 2.
|
|
"""
|
|
|
|
|
|
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",
|
|
},
|
|
}
|
|
|
|
pool_emojis = {
|
|
"us": "🇺🇸",
|
|
"ca": "🇨🇦",
|
|
"us_c": "🇺🇸 🏢",
|
|
}
|