Beispiel #1
0
        public World(string name, Hex hex, string uwp = null) : base(name, TravellerConstants.BodyType.World)
        {
            HexNumber = hex;

            WorldGroupIdentifiers = new GroupNamedIdentifiers("GroupIdentifiers-World");
            SetWorldProperty(TravellerConstants.PropertyNames.UWP, uwp);
        }
Beispiel #2
0
 public Sector(string name) : base(name, TravellerConstants.BodyType.Sector)
 {
     SectorGroupIdentifiers = new GroupNamedIdentifiers("GroupIdentifiers-TravellerSector");
     string[] letters = { "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P" };
     foreach (string letter in letters)
     {
         BasicProperties.Add(letter, string.Empty);
     }
 }
Beispiel #3
0
 public ProgressionContainer(string name, string bodytype) : base(name, bodytype)
 {
     ContainerGroupIdentifiers = new GroupNamedIdentifiers("GroupIdentifiers-ProgressionContainer");
 }
Beispiel #4
0
 public ProgressionContainer()
 {
     ContainerGroupIdentifiers = new GroupNamedIdentifiers("GroupIdentifiers-ProgressionContainer");
 }
Beispiel #5
0
 public DwarfPlanet(string name) : base(name, Constants.BodyTypes.DwarfPlanet)
 {
     DwarfPlanetGroupIdentifiers = new GroupNamedIdentifiers("GroupIdentifiers-DwarfPlanet");
 }
Beispiel #6
0
 public Subsector(string name) : base(name, TravellerConstants.BodyType.Subsector)
 {
     SubsectorGroupIdentifiers = new GroupNamedIdentifiers("GroupIdentifiers-TravellerSubsector");
 }
Beispiel #7
0
 public Star(string name) : base(name, Constants.BodyTypes.Star)
 {
     StarGroupIdentifiers = new GroupNamedIdentifiers("GroupIdentifiers-Star");
 }