base.hpp 727 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. class init
  2. {
  3. class marker {};
  4. class icon {};
  5. };
  6. class friendly
  7. {
  8. class marker
  9. {
  10. color = "ColorBLUFOR";
  11. };
  12. class icon
  13. {
  14. shape = "ICON";
  15. type = "b_unknown";
  16. color = "ColorBLUFOR";
  17. };
  18. };
  19. class under_attack
  20. {
  21. class marker
  22. {
  23. color = "ColorUnknown";
  24. };
  25. class icon
  26. {
  27. shape = "ICON";
  28. type = "n_unknown";
  29. color = "ColorOrange";
  30. text[] = {"(Under Attack)", ""};
  31. };
  32. };
  33. class attacking
  34. {
  35. class marker
  36. {
  37. color = "ColorUnknown";
  38. };
  39. class icon
  40. {
  41. shape = "ICON";
  42. type = "n_unknown";
  43. color = "ColorOrange";
  44. text[] = {"(Attacking)", ""};
  45. };
  46. };
  47. class enemy
  48. {
  49. class marker
  50. {
  51. color = "ColorOPFOR";
  52. };
  53. class icon
  54. {
  55. shape = "ICON";
  56. type = "o_unknown";
  57. color = "Color1_FD_F";
  58. };
  59. };