mirror of
https://github.com/miaowware/qrm2.git
synced 2024-10-31 14:27:11 -04:00
2cb4b03532
Fixes #170 Co-authored-by: 0x5c <dev@0x5c.io>
79 lines
1.1 KiB
Python
79 lines
1.1 KiB
Python
"""
|
|
A listing of NATO Phonetics
|
|
---
|
|
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.
|
|
"""
|
|
|
|
|
|
phonetics = {
|
|
"a": "alfa",
|
|
"b": "bravo",
|
|
"c": "charlie",
|
|
"d": "delta",
|
|
"e": "echo",
|
|
"f": "foxtrot",
|
|
"g": "golf",
|
|
"h": "hotel",
|
|
"i": "india",
|
|
"j": "juliett",
|
|
"k": "kilo",
|
|
"l": "lima",
|
|
"m": "mike",
|
|
"n": "november",
|
|
"o": "oscar",
|
|
"p": "papa",
|
|
"q": "quebec",
|
|
"r": "romeo",
|
|
"s": "sierra",
|
|
"t": "tango",
|
|
"u": "uniform",
|
|
"v": "victor",
|
|
"w": "whiskey",
|
|
"x": "x-ray",
|
|
"y": "yankee",
|
|
"z": "zulu"
|
|
}
|
|
|
|
pweights = {
|
|
"A": 2,
|
|
"B": 2,
|
|
"C": 2,
|
|
"D": 2,
|
|
"E": 2,
|
|
"F": 2,
|
|
"G": 1,
|
|
"H": 2,
|
|
"I": 3,
|
|
"J": 3,
|
|
"K": 2,
|
|
"L": 2,
|
|
"M": 1,
|
|
"N": 3,
|
|
"O": 2,
|
|
"P": 2,
|
|
"Q": 2,
|
|
"R": 3,
|
|
"S": 3,
|
|
"T": 2,
|
|
"U": 3,
|
|
"V": 2,
|
|
"W": 2,
|
|
"X": 2,
|
|
"Y": 2,
|
|
"Z": 2,
|
|
"0": 2,
|
|
"1": 1,
|
|
"2": 1,
|
|
"3": 1,
|
|
"4": 1,
|
|
"5": 1,
|
|
"6": 1,
|
|
"7": 2,
|
|
"8": 1,
|
|
"9": 2,
|
|
"/": 1,
|
|
}
|