From bd532ea808ff5ef565e3156e35f85ff3aab88eff Mon Sep 17 00:00:00 2001 From: Applevangelist Date: Sun, 23 Jan 2022 11:37:28 +0100 Subject: [PATCH] Added Callsigns as per 2.7.9 --- Moose Development/Moose/Utilities/Utils.lua | 59 ++++++++++++++++++++- 1 file changed, 58 insertions(+), 1 deletion(-) diff --git a/Moose Development/Moose/Utilities/Utils.lua b/Moose Development/Moose/Utilities/Utils.lua index cdce070e4..8b7ebb2b6 100644 --- a/Moose Development/Moose/Utilities/Utils.lua +++ b/Moose Development/Moose/Utilities/Utils.lua @@ -1,4 +1,4 @@ ---- This module contains derived utilities taken from the MIST framework, which are excellent tools to be reused in an OO environment. +--- This module contains derived utilities taken from the MIST framework, as well as a lot of added helpers from the MOOSE community. -- -- ### Authors: -- @@ -7,6 +7,7 @@ -- ### Contributions: -- -- * FlightControl : Rework to OO framework. +-- * And many more -- -- @module Utils -- @image MOOSE.JPG @@ -130,6 +131,62 @@ CALLSIGN={ Dublin=9, Perth=10, }, + F16={ + Viper=9, + Venom=10, + Lobo=11, + Cowboy=12, + Python=13, + Rattler=14, + Panther=15, + Wolf=16, + Weasel=17, + Wild=18, + Ninja=19, + Jedi=20, + }, + F18={ + Hornet=9, + Squid=10, + Ragin=11, + Roman=12, + Sting=13, + Jury=14, + Jokey=15, + Ram=16, + Hawk=17, + Devil=18, + Check=19, + Snake=20, + }, + F15E={ + Dude=9, + Thud=10, + Gunny=11, + Trek=12, + Sniper=13, + Sled=14, + Best=15, + Jazz=16, + Rage=17, + Tahoe=18, + }, + B1B={ + Bone=9, + Dark=10, + Vader=11 + }, + B52={ + Buff=9, + Dump=10, + Kenworth=11, + }, + TransportAircraft={ + Heavy=9, + Trash=10, + Cargo=11, + Ascot=12, + }, } --#CALLSIGN --- Utilities static class.