@gamepark/zenith 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (125) hide show
  1. package/dist/PlayerId.d.ts +1 -0
  2. package/dist/PlayerId.js +2 -0
  3. package/dist/TeamColor.d.ts +9 -0
  4. package/dist/TeamColor.js +16 -0
  5. package/dist/ZenithOptions.d.ts +5 -0
  6. package/dist/ZenithOptions.js +4 -0
  7. package/dist/ZenithRules.d.ts +68 -0
  8. package/dist/ZenithRules.js +128 -0
  9. package/dist/ZenithSetup.d.ts +24 -0
  10. package/dist/ZenithSetup.js +316 -0
  11. package/dist/index.d.ts +3 -0
  12. package/dist/index.js +9 -0
  13. package/dist/material/Agent.d.ts +93 -0
  14. package/dist/material/Agent.js +98 -0
  15. package/dist/material/Agents.d.ts +102 -0
  16. package/dist/material/Agents.js +2305 -0
  17. package/dist/material/Bonus.d.ts +12 -0
  18. package/dist/material/Bonus.js +34 -0
  19. package/dist/material/Bonuses.d.ts +14 -0
  20. package/dist/material/Bonuses.js +63 -0
  21. package/dist/material/Credit.d.ts +6 -0
  22. package/dist/material/Credit.js +11 -0
  23. package/dist/material/Faction.d.ts +6 -0
  24. package/dist/material/Faction.js +11 -0
  25. package/dist/material/Influence.d.ts +8 -0
  26. package/dist/material/Influence.js +13 -0
  27. package/dist/material/LocationType.d.ts +23 -0
  28. package/dist/material/LocationType.js +27 -0
  29. package/dist/material/MaterialType.d.ts +12 -0
  30. package/dist/material/MaterialType.js +16 -0
  31. package/dist/material/effect/Effect.d.ts +144 -0
  32. package/dist/material/effect/Effect.js +14 -0
  33. package/dist/material/effect/EffectType.d.ts +23 -0
  34. package/dist/material/effect/EffectType.js +27 -0
  35. package/dist/rules/CustomMoveType.d.ts +8 -0
  36. package/dist/rules/CustomMoveType.js +12 -0
  37. package/dist/rules/DiscardActionRule.d.ts +8 -0
  38. package/dist/rules/DiscardActionRule.js +84 -0
  39. package/dist/rules/Memory.d.ts +25 -0
  40. package/dist/rules/Memory.js +19 -0
  41. package/dist/rules/MulliganRule.d.ts +12 -0
  42. package/dist/rules/MulliganRule.js +138 -0
  43. package/dist/rules/PlayCardRule.d.ts +15 -0
  44. package/dist/rules/PlayCardRule.js +147 -0
  45. package/dist/rules/RefillRule.d.ts +17 -0
  46. package/dist/rules/RefillRule.js +211 -0
  47. package/dist/rules/RuleId.d.ts +27 -0
  48. package/dist/rules/RuleId.js +31 -0
  49. package/dist/rules/discard-action/DiplomacyActions.d.ts +3 -0
  50. package/dist/rules/discard-action/DiplomacyActions.js +39 -0
  51. package/dist/rules/discard-action/DiplomacyBoardRule.d.ts +9 -0
  52. package/dist/rules/discard-action/DiplomacyBoardRule.js +68 -0
  53. package/dist/rules/discard-action/TechnologyActions.d.ts +3 -0
  54. package/dist/rules/discard-action/TechnologyActions.js +187 -0
  55. package/dist/rules/discard-action/TechnologyBoardRule.d.ts +8 -0
  56. package/dist/rules/discard-action/TechnologyBoardRule.js +109 -0
  57. package/dist/rules/effect/ChoiceRule.d.ts +12 -0
  58. package/dist/rules/effect/ChoiceRule.js +91 -0
  59. package/dist/rules/effect/ConditionalRule.d.ts +17 -0
  60. package/dist/rules/effect/ConditionalRule.js +197 -0
  61. package/dist/rules/effect/DevelopTechnologyRule.d.ts +11 -0
  62. package/dist/rules/effect/DevelopTechnologyRule.js +133 -0
  63. package/dist/rules/effect/DiscardRule.d.ts +18 -0
  64. package/dist/rules/effect/DiscardRule.js +107 -0
  65. package/dist/rules/effect/EffectRule.d.ts +27 -0
  66. package/dist/rules/effect/EffectRule.js +161 -0
  67. package/dist/rules/effect/ExileRule.d.ts +22 -0
  68. package/dist/rules/effect/ExileRule.js +182 -0
  69. package/dist/rules/effect/GiveCreditRule.d.ts +13 -0
  70. package/dist/rules/effect/GiveCreditRule.js +79 -0
  71. package/dist/rules/effect/GiveInfluenceRule.d.ts +10 -0
  72. package/dist/rules/effect/GiveInfluenceRule.js +119 -0
  73. package/dist/rules/effect/GiveLeaderBadgeRule.d.ts +9 -0
  74. package/dist/rules/effect/GiveLeaderBadgeRule.js +54 -0
  75. package/dist/rules/effect/GiveZenithiumRule.d.ts +9 -0
  76. package/dist/rules/effect/GiveZenithiumRule.js +85 -0
  77. package/dist/rules/effect/MobilizeRule.d.ts +18 -0
  78. package/dist/rules/effect/MobilizeRule.js +117 -0
  79. package/dist/rules/effect/ResetInfluenceRule.d.ts +9 -0
  80. package/dist/rules/effect/ResetInfluenceRule.js +63 -0
  81. package/dist/rules/effect/SpendCreditRule.d.ts +16 -0
  82. package/dist/rules/effect/SpendCreditRule.js +109 -0
  83. package/dist/rules/effect/SpendZenithiumRule.d.ts +17 -0
  84. package/dist/rules/effect/SpendZenithiumRule.js +116 -0
  85. package/dist/rules/effect/StealCreditRule.d.ts +7 -0
  86. package/dist/rules/effect/StealCreditRule.js +67 -0
  87. package/dist/rules/effect/TakeBonusRule.d.ts +11 -0
  88. package/dist/rules/effect/TakeBonusRule.js +98 -0
  89. package/dist/rules/effect/TakeLeaderBadgeRule.d.ts +9 -0
  90. package/dist/rules/effect/TakeLeaderBadgeRule.js +102 -0
  91. package/dist/rules/effect/TakeTechnologyBonusTokenRule.d.ts +11 -0
  92. package/dist/rules/effect/TakeTechnologyBonusTokenRule.js +122 -0
  93. package/dist/rules/effect/TransferRule.d.ts +19 -0
  94. package/dist/rules/effect/TransferRule.js +104 -0
  95. package/dist/rules/effect/WinCreditRule.d.ts +13 -0
  96. package/dist/rules/effect/WinCreditRule.js +142 -0
  97. package/dist/rules/effect/WinInfluenceRule.d.ts +23 -0
  98. package/dist/rules/effect/WinInfluenceRule.js +328 -0
  99. package/dist/rules/effect/WinZenithiumRule.d.ts +9 -0
  100. package/dist/rules/effect/WinZenithiumRule.js +92 -0
  101. package/dist/rules/effect/index.d.ts +19 -0
  102. package/dist/rules/effect/index.js +35 -0
  103. package/dist/rules/helper/BonusHelper.d.ts +15 -0
  104. package/dist/rules/helper/BonusHelper.js +86 -0
  105. package/dist/rules/helper/CreditHelper.d.ts +9 -0
  106. package/dist/rules/helper/CreditHelper.js +45 -0
  107. package/dist/rules/helper/EffectHelper.d.ts +16 -0
  108. package/dist/rules/helper/EffectHelper.js +133 -0
  109. package/dist/rules/helper/EffectRuleIds.d.ts +3 -0
  110. package/dist/rules/helper/EffectRuleIds.js +29 -0
  111. package/dist/rules/helper/EndGameHelper.d.ts +13 -0
  112. package/dist/rules/helper/EndGameHelper.js +70 -0
  113. package/dist/rules/helper/InfluenceHelper.d.ts +13 -0
  114. package/dist/rules/helper/InfluenceHelper.js +47 -0
  115. package/dist/rules/helper/MobilizeHelper.d.ts +10 -0
  116. package/dist/rules/helper/MobilizeHelper.js +56 -0
  117. package/dist/rules/helper/PlanetHelper.d.ts +19 -0
  118. package/dist/rules/helper/PlanetHelper.js +104 -0
  119. package/dist/rules/helper/PlayerHelper.d.ts +12 -0
  120. package/dist/rules/helper/PlayerHelper.js +61 -0
  121. package/dist/rules/helper/TechnologyHelper.d.ts +4 -0
  122. package/dist/rules/helper/TechnologyHelper.js +96 -0
  123. package/dist/rules/helper/ZenithiumHelper.d.ts +10 -0
  124. package/dist/rules/helper/ZenithiumHelper.js +59 -0
  125. package/package.json +33 -0
@@ -0,0 +1,93 @@
1
+ export declare enum Agent {
2
+ Elisabeth = 1,
3
+ Pkd1ck = 2,
4
+ AgentEzra = 3,
5
+ DonaldSmooth = 4,
6
+ Huxl3y = 5,
7
+ Titus = 6,
8
+ Mc4ffr3y = 7,
9
+ Luc4s = 8,
10
+ Cresus = 9,
11
+ Atlas = 10,
12
+ PunkMari = 11,
13
+ Septimus = 12,
14
+ DoubleJoe = 13,
15
+ DonDune = 14,
16
+ V3rn3 = 15,
17
+ Ch4mb3rs = 16,
18
+ Buj0ld = 17,
19
+ JackCurry = 18,
20
+ C1x1n = 19,
21
+ LadyMoore = 20,
22
+ L0v3cr4ft = 21,
23
+ Suleiman = 22,
24
+ Annie = 23,
25
+ M4th3s0n = 24,
26
+ Gilgamesh = 25,
27
+ StessyPower = 26,
28
+ Felis = 27,
29
+ V4nc3 = 28,
30
+ Ramses = 29,
31
+ GuyGambler = 30,
32
+ DocWissen = 31,
33
+ BaronGoro = 32,
34
+ Ivan = 33,
35
+ Br4dbury = 34,
36
+ F4rm3r = 35,
37
+ Zenon = 36,
38
+ Bish0p = 37,
39
+ Wul = 38,
40
+ Th0mps0n = 39,
41
+ Domitian = 40,
42
+ MasterDin = 41,
43
+ LordCreep = 42,
44
+ Amytis = 43,
45
+ W4ts0n = 44,
46
+ Arnulf = 45,
47
+ R0bins0n = 46,
48
+ QueenSuzanne = 47,
49
+ H4milt0n = 48,
50
+ Caesar = 49,
51
+ IldaFlores = 50,
52
+ H3rb3rt = 51,
53
+ LisaCharity = 52,
54
+ SirSam = 53,
55
+ HiroshiSun = 54,
56
+ Magellan = 55,
57
+ Bajazet = 56,
58
+ Geta = 57,
59
+ Charlemagne = 58,
60
+ Caligula = 59,
61
+ Tiberius = 60,
62
+ And3rs0n = 61,
63
+ Orw3ll = 62,
64
+ As1m0v = 63,
65
+ HelenaKerr = 64,
66
+ LittleBob = 65,
67
+ Bruss0l0 = 66,
68
+ B4rj4v3l = 67,
69
+ Augustus = 68,
70
+ LulaSmart = 69,
71
+ CharlizeGun = 70,
72
+ ProfessorZed = 71,
73
+ IceJune = 72,
74
+ V4nV0gt = 73,
75
+ KingHarold = 74,
76
+ Geronimo = 75,
77
+ W3lls = 76,
78
+ Nero = 77,
79
+ Cl4rke = 78,
80
+ Chaka = 79,
81
+ M4rt1n = 80,
82
+ Pachacuti = 81,
83
+ Gibs0n = 82,
84
+ HandyLuke = 83,
85
+ Khan = 84,
86
+ Moussa = 85,
87
+ Archimedes = 86,
88
+ SneakyJules = 87,
89
+ SecretKali = 88,
90
+ CaptainAndreev = 89,
91
+ MiladyJones = 90
92
+ }
93
+ export declare const agents: Agent[];
@@ -0,0 +1,98 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.agents = exports.Agent = void 0;
4
+ var rules_api_1 = require("@gamepark/rules-api");
5
+ var Agent;
6
+ (function (Agent) {
7
+ Agent[Agent["Elisabeth"] = 1] = "Elisabeth";
8
+ Agent[Agent["Pkd1ck"] = 2] = "Pkd1ck";
9
+ Agent[Agent["AgentEzra"] = 3] = "AgentEzra";
10
+ Agent[Agent["DonaldSmooth"] = 4] = "DonaldSmooth";
11
+ Agent[Agent["Huxl3y"] = 5] = "Huxl3y";
12
+ Agent[Agent["Titus"] = 6] = "Titus";
13
+ Agent[Agent["Mc4ffr3y"] = 7] = "Mc4ffr3y";
14
+ Agent[Agent["Luc4s"] = 8] = "Luc4s";
15
+ Agent[Agent["Cresus"] = 9] = "Cresus";
16
+ Agent[Agent["Atlas"] = 10] = "Atlas";
17
+ Agent[Agent["PunkMari"] = 11] = "PunkMari";
18
+ Agent[Agent["Septimus"] = 12] = "Septimus";
19
+ Agent[Agent["DoubleJoe"] = 13] = "DoubleJoe";
20
+ Agent[Agent["DonDune"] = 14] = "DonDune";
21
+ Agent[Agent["V3rn3"] = 15] = "V3rn3";
22
+ Agent[Agent["Ch4mb3rs"] = 16] = "Ch4mb3rs";
23
+ Agent[Agent["Buj0ld"] = 17] = "Buj0ld";
24
+ Agent[Agent["JackCurry"] = 18] = "JackCurry";
25
+ Agent[Agent["C1x1n"] = 19] = "C1x1n";
26
+ Agent[Agent["LadyMoore"] = 20] = "LadyMoore";
27
+ Agent[Agent["L0v3cr4ft"] = 21] = "L0v3cr4ft";
28
+ Agent[Agent["Suleiman"] = 22] = "Suleiman";
29
+ Agent[Agent["Annie"] = 23] = "Annie";
30
+ Agent[Agent["M4th3s0n"] = 24] = "M4th3s0n";
31
+ Agent[Agent["Gilgamesh"] = 25] = "Gilgamesh";
32
+ Agent[Agent["StessyPower"] = 26] = "StessyPower";
33
+ Agent[Agent["Felis"] = 27] = "Felis";
34
+ Agent[Agent["V4nc3"] = 28] = "V4nc3";
35
+ Agent[Agent["Ramses"] = 29] = "Ramses";
36
+ Agent[Agent["GuyGambler"] = 30] = "GuyGambler";
37
+ Agent[Agent["DocWissen"] = 31] = "DocWissen";
38
+ Agent[Agent["BaronGoro"] = 32] = "BaronGoro";
39
+ Agent[Agent["Ivan"] = 33] = "Ivan";
40
+ Agent[Agent["Br4dbury"] = 34] = "Br4dbury";
41
+ Agent[Agent["F4rm3r"] = 35] = "F4rm3r";
42
+ Agent[Agent["Zenon"] = 36] = "Zenon";
43
+ Agent[Agent["Bish0p"] = 37] = "Bish0p";
44
+ Agent[Agent["Wul"] = 38] = "Wul";
45
+ Agent[Agent["Th0mps0n"] = 39] = "Th0mps0n";
46
+ Agent[Agent["Domitian"] = 40] = "Domitian";
47
+ Agent[Agent["MasterDin"] = 41] = "MasterDin";
48
+ Agent[Agent["LordCreep"] = 42] = "LordCreep";
49
+ Agent[Agent["Amytis"] = 43] = "Amytis";
50
+ Agent[Agent["W4ts0n"] = 44] = "W4ts0n";
51
+ Agent[Agent["Arnulf"] = 45] = "Arnulf";
52
+ Agent[Agent["R0bins0n"] = 46] = "R0bins0n";
53
+ Agent[Agent["QueenSuzanne"] = 47] = "QueenSuzanne";
54
+ Agent[Agent["H4milt0n"] = 48] = "H4milt0n";
55
+ Agent[Agent["Caesar"] = 49] = "Caesar";
56
+ Agent[Agent["IldaFlores"] = 50] = "IldaFlores";
57
+ Agent[Agent["H3rb3rt"] = 51] = "H3rb3rt";
58
+ Agent[Agent["LisaCharity"] = 52] = "LisaCharity";
59
+ Agent[Agent["SirSam"] = 53] = "SirSam";
60
+ Agent[Agent["HiroshiSun"] = 54] = "HiroshiSun";
61
+ Agent[Agent["Magellan"] = 55] = "Magellan";
62
+ Agent[Agent["Bajazet"] = 56] = "Bajazet";
63
+ Agent[Agent["Geta"] = 57] = "Geta";
64
+ Agent[Agent["Charlemagne"] = 58] = "Charlemagne";
65
+ Agent[Agent["Caligula"] = 59] = "Caligula";
66
+ Agent[Agent["Tiberius"] = 60] = "Tiberius";
67
+ Agent[Agent["And3rs0n"] = 61] = "And3rs0n";
68
+ Agent[Agent["Orw3ll"] = 62] = "Orw3ll";
69
+ Agent[Agent["As1m0v"] = 63] = "As1m0v";
70
+ Agent[Agent["HelenaKerr"] = 64] = "HelenaKerr";
71
+ Agent[Agent["LittleBob"] = 65] = "LittleBob";
72
+ Agent[Agent["Bruss0l0"] = 66] = "Bruss0l0";
73
+ Agent[Agent["B4rj4v3l"] = 67] = "B4rj4v3l";
74
+ Agent[Agent["Augustus"] = 68] = "Augustus";
75
+ Agent[Agent["LulaSmart"] = 69] = "LulaSmart";
76
+ Agent[Agent["CharlizeGun"] = 70] = "CharlizeGun";
77
+ Agent[Agent["ProfessorZed"] = 71] = "ProfessorZed";
78
+ Agent[Agent["IceJune"] = 72] = "IceJune";
79
+ Agent[Agent["V4nV0gt"] = 73] = "V4nV0gt";
80
+ Agent[Agent["KingHarold"] = 74] = "KingHarold";
81
+ Agent[Agent["Geronimo"] = 75] = "Geronimo";
82
+ Agent[Agent["W3lls"] = 76] = "W3lls";
83
+ Agent[Agent["Nero"] = 77] = "Nero";
84
+ Agent[Agent["Cl4rke"] = 78] = "Cl4rke";
85
+ Agent[Agent["Chaka"] = 79] = "Chaka";
86
+ Agent[Agent["M4rt1n"] = 80] = "M4rt1n";
87
+ Agent[Agent["Pachacuti"] = 81] = "Pachacuti";
88
+ Agent[Agent["Gibs0n"] = 82] = "Gibs0n";
89
+ Agent[Agent["HandyLuke"] = 83] = "HandyLuke";
90
+ Agent[Agent["Khan"] = 84] = "Khan";
91
+ Agent[Agent["Moussa"] = 85] = "Moussa";
92
+ Agent[Agent["Archimedes"] = 86] = "Archimedes";
93
+ Agent[Agent["SneakyJules"] = 87] = "SneakyJules";
94
+ Agent[Agent["SecretKali"] = 88] = "SecretKali";
95
+ Agent[Agent["CaptainAndreev"] = 89] = "CaptainAndreev";
96
+ Agent[Agent["MiladyJones"] = 90] = "MiladyJones";
97
+ })(Agent || (exports.Agent = Agent = {}));
98
+ exports.agents = (0, rules_api_1.getEnumValues)(Agent);
@@ -0,0 +1,102 @@
1
+ import { Agent } from './Agent';
2
+ import { Effect } from './effect/Effect';
3
+ import { Faction } from './Faction';
4
+ import { Influence } from './Influence';
5
+ type AgentCharacteristics = {
6
+ influence: Influence;
7
+ cost: number;
8
+ faction: Faction;
9
+ effects: Effect[];
10
+ };
11
+ export declare const Elisabeth: AgentCharacteristics;
12
+ export declare const Pkd1ck: AgentCharacteristics;
13
+ export declare const AgentEzra: AgentCharacteristics;
14
+ export declare const DonaldSmooth: AgentCharacteristics;
15
+ export declare const Huxl3y: AgentCharacteristics;
16
+ export declare const Titus: AgentCharacteristics;
17
+ export declare const Mc4ffr3y: AgentCharacteristics;
18
+ export declare const Luc4s: AgentCharacteristics;
19
+ export declare const Cresus: AgentCharacteristics;
20
+ export declare const Atlas: AgentCharacteristics;
21
+ export declare const PunkMari: AgentCharacteristics;
22
+ export declare const Septimus: AgentCharacteristics;
23
+ export declare const DoubleJoe: AgentCharacteristics;
24
+ export declare const DonDune: AgentCharacteristics;
25
+ export declare const V3rn3: AgentCharacteristics;
26
+ export declare const Ch4mb3rs: AgentCharacteristics;
27
+ export declare const Buj0ld: AgentCharacteristics;
28
+ export declare const JackCurry: AgentCharacteristics;
29
+ export declare const C1x1n: AgentCharacteristics;
30
+ export declare const LadyMoore: AgentCharacteristics;
31
+ export declare const L0v3cr4ft: AgentCharacteristics;
32
+ export declare const Suleiman: AgentCharacteristics;
33
+ export declare const Annie: AgentCharacteristics;
34
+ export declare const M4th3s0n: AgentCharacteristics;
35
+ export declare const Gilgamesh: AgentCharacteristics;
36
+ export declare const StessyPower: AgentCharacteristics;
37
+ export declare const Felis: AgentCharacteristics;
38
+ export declare const V4nc3: AgentCharacteristics;
39
+ export declare const Ramses: AgentCharacteristics;
40
+ export declare const GuyGambler: AgentCharacteristics;
41
+ export declare const DocWissen: AgentCharacteristics;
42
+ export declare const BaronGoro: AgentCharacteristics;
43
+ export declare const Ivan: AgentCharacteristics;
44
+ export declare const Br4dbury: AgentCharacteristics;
45
+ export declare const F4rm3r: AgentCharacteristics;
46
+ export declare const Zenon: AgentCharacteristics;
47
+ export declare const Bish0p: AgentCharacteristics;
48
+ export declare const Wul: AgentCharacteristics;
49
+ export declare const Th0mps0n: AgentCharacteristics;
50
+ export declare const Domitian: AgentCharacteristics;
51
+ export declare const MasterDin: AgentCharacteristics;
52
+ export declare const LordCreep: AgentCharacteristics;
53
+ export declare const Amytis: AgentCharacteristics;
54
+ export declare const W4ts0n: AgentCharacteristics;
55
+ export declare const Arnulf: AgentCharacteristics;
56
+ export declare const R0bins0n: AgentCharacteristics;
57
+ export declare const QueenSuzanne: AgentCharacteristics;
58
+ export declare const H4milt0n: AgentCharacteristics;
59
+ export declare const Caesar: AgentCharacteristics;
60
+ export declare const IldaFlores: AgentCharacteristics;
61
+ export declare const H3rb3rt: AgentCharacteristics;
62
+ export declare const LisaCharity: AgentCharacteristics;
63
+ export declare const SirSam: AgentCharacteristics;
64
+ export declare const HiroshiSun: AgentCharacteristics;
65
+ export declare const Magellan: AgentCharacteristics;
66
+ export declare const Bajazet: AgentCharacteristics;
67
+ export declare const Geta: AgentCharacteristics;
68
+ export declare const Charlemagne: AgentCharacteristics;
69
+ export declare const Caligula: AgentCharacteristics;
70
+ export declare const Tiberius: AgentCharacteristics;
71
+ export declare const And3rs0n: AgentCharacteristics;
72
+ export declare const Orw3ll: AgentCharacteristics;
73
+ export declare const As1m0v: AgentCharacteristics;
74
+ export declare const HelenaKerr: AgentCharacteristics;
75
+ export declare const LittleBob: AgentCharacteristics;
76
+ export declare const Bruss0l0: AgentCharacteristics;
77
+ export declare const B4rj4v3l: AgentCharacteristics;
78
+ export declare const Augustus: AgentCharacteristics;
79
+ export declare const LulaSmart: AgentCharacteristics;
80
+ export declare const CharlizeGun: AgentCharacteristics;
81
+ export declare const ProfessorZed: AgentCharacteristics;
82
+ export declare const IceJune: AgentCharacteristics;
83
+ export declare const V4nV0gt: AgentCharacteristics;
84
+ export declare const KingHarold: AgentCharacteristics;
85
+ export declare const Geronimo: AgentCharacteristics;
86
+ export declare const W3lls: AgentCharacteristics;
87
+ export declare const Nero: AgentCharacteristics;
88
+ export declare const Cl4rke: AgentCharacteristics;
89
+ export declare const Chaka: AgentCharacteristics;
90
+ export declare const M4rt1n: AgentCharacteristics;
91
+ export declare const Pachacuti: AgentCharacteristics;
92
+ export declare const Gibs0n: AgentCharacteristics;
93
+ export declare const HandyLuke: AgentCharacteristics;
94
+ export declare const Khan: AgentCharacteristics;
95
+ export declare const Moussa: AgentCharacteristics;
96
+ export declare const Archimedes: AgentCharacteristics;
97
+ export declare const SneakyJules: AgentCharacteristics;
98
+ export declare const SecretKali: AgentCharacteristics;
99
+ export declare const CaptainAndreev: AgentCharacteristics;
100
+ export declare const MiladyJones: AgentCharacteristics;
101
+ export declare const Agents: Record<Agent, AgentCharacteristics>;
102
+ export {};