Example #1
0
 private static FSTCData.EmpireData EmpireXGTC()
 {
     FSTCData.EmpireData ret = new FSTCData.EmpireData {
         empireTag    = "XGTC",
         empireType   = (int)Diplomacy.EmpireType.NEUTRAL,
         ownedSectors = { new SectorId()
                          {
                              x = 1, y = 0, z = 0
                          } }
     };
     return(ret);
 }
Example #2
0
 private static FSTCData.EmpireData EmpireEIEF()
 {
     FSTCData.EmpireData ret = new FSTCData.EmpireData {
         empireTag    = "EIEF",
         empireType   = (int)Diplomacy.EmpireType.NEUTRAL,
         ownedSectors = { new SectorId()
                          {
                              x = 0, y = 0, z = -1
                          } }
     };
     return(ret);
 }
Example #3
0
 private static FSTCData.EmpireData EmpireSHVN()
 {
     FSTCData.EmpireData ret = new FSTCData.EmpireData {
         empireTag    = "SHVN",
         empireType   = (int)Diplomacy.EmpireType.TRUE_HOSTILE,
         ownedSectors = { new SectorId()
                          {
                              x = 0, y = -1, z = 0
                          } }
     };
     return(ret);
 }
Example #4
0
 private static FSTCData.EmpireData EmpireSYND()
 {
     FSTCData.EmpireData ret = new FSTCData.EmpireData {
         empireTag    = "SYND",
         empireType   = (int)Diplomacy.EmpireType.HOSTILE,
         ownedSectors = { new SectorId()
                          {
                              x = 0, y = 0, z = 1
                          } }
     };
     return(ret);
 }
Example #5
0
 private static FSTCData.EmpireData EmpireUEFA()
 {
     FSTCData.EmpireData ret = new FSTCData.EmpireData {
         empireTag    = "UEFA",
         empireType   = (int)Diplomacy.EmpireType.POLICE,
         ownedSectors = { new SectorId()
                          {
                              x = 1, y = 0, z = 1
                          } }
     };
     return(ret);
 }