gameinfo.txt 751 B

123456789101112131415161718192021222324252627282930313233343536
  1. // Game type info
  2. //
  3. // description, g_gametype enum
  4. //
  5. // 0 - GT_FFA, // free for all
  6. // 1 - GT_HOLOCRON, // ffa with holocrons
  7. // 2 - GT_JEDIMASTER, // jedi master
  8. // 3 - GT_DUEL, // one on one tournament
  9. // 4 - GT_POWERDUEL,
  10. // 5 - GT_SINGLE_PLAYER, // single player ffa
  11. // 6 - GT_TEAM, // team ffa
  12. // 7 - GT_SIEGE, // siege
  13. // 8 - GT_CTF, // capture the flag
  14. // 9 - GT_CTY, // capture the ysalimari
  15. gametypes {
  16. { "Free For All" 0 }
  17. { "Duel" 3 }
  18. { "Power Duel" 4 }
  19. { "Team FFA" 6 }
  20. { "Siege" 7 }
  21. { "Capture the Flag" 8 }
  22. }
  23. joingametypes {
  24. { "All" -1 }
  25. { "Free For All" 0 }
  26. { "Duel" 3 }
  27. { "Power Duel" 4 }
  28. { "Team FFA" 6 }
  29. { "Siege" 7 }
  30. { "Capture the Flag" 8 }
  31. }