mirror of
https://github.com/miaowware/qrm2.git
synced 2024-11-10 10:23:32 -05:00
09c58f9ba2
answer questions. Fixes #169
50 lines
1.6 KiB
Python
50 lines
1.6 KiB
Python
"""
|
|
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.
|
|
"""
|
|
|
|
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': '🇺🇸 🏢'}
|