@valolytics/ts-valorant-dtos 11.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 (115) hide show
  1. package/dist/dtos/agents.json +1758 -0
  2. package/dist/dtos/buddies.json +12782 -0
  3. package/dist/dtos/bundles.json +3362 -0
  4. package/dist/dtos/ceremonies.json +32 -0
  5. package/dist/dtos/competitiveTiers.json +1549 -0
  6. package/dist/dtos/contentTiers.json +57 -0
  7. package/dist/dtos/contracts.json +33904 -0
  8. package/dist/dtos/currencies.json +38 -0
  9. package/dist/dtos/events.json +106 -0
  10. package/dist/dtos/gameModes.json +399 -0
  11. package/dist/dtos/gears.json +102 -0
  12. package/dist/dtos/levelBorders.json +202 -0
  13. package/dist/dtos/maps.json +3186 -0
  14. package/dist/dtos/playerCards.json +8439 -0
  15. package/dist/dtos/playerTitles.json +2158 -0
  16. package/dist/dtos/roles.json +30 -0
  17. package/dist/dtos/seasons.json +452 -0
  18. package/dist/dtos/sprays.json +17436 -0
  19. package/dist/dtos/themes.json +2543 -0
  20. package/dist/dtos/weapons.json +55152 -0
  21. package/dist/index.d.ts +30 -0
  22. package/dist/index.d.ts.map +1 -0
  23. package/dist/index.js +64 -0
  24. package/dist/logger/index.d.ts +3 -0
  25. package/dist/logger/index.d.ts.map +1 -0
  26. package/dist/logger/index.js +8 -0
  27. package/dist/models/account.model.d.ts +9 -0
  28. package/dist/models/account.model.d.ts.map +1 -0
  29. package/dist/models/account.model.js +13 -0
  30. package/dist/models/activeShard.model.d.ts +7 -0
  31. package/dist/models/activeShard.model.d.ts.map +1 -0
  32. package/dist/models/activeShard.model.js +11 -0
  33. package/dist/models/agent.model.d.ts +59 -0
  34. package/dist/models/agent.model.d.ts.map +1 -0
  35. package/dist/models/agent.model.js +78 -0
  36. package/dist/models/buddy.model.d.ts +21 -0
  37. package/dist/models/buddy.model.d.ts.map +1 -0
  38. package/dist/models/buddy.model.js +27 -0
  39. package/dist/models/bundle.model.d.ts +15 -0
  40. package/dist/models/bundle.model.d.ts.map +1 -0
  41. package/dist/models/bundle.model.js +21 -0
  42. package/dist/models/ceremony.model.d.ts +7 -0
  43. package/dist/models/ceremony.model.d.ts.map +1 -0
  44. package/dist/models/ceremony.model.js +11 -0
  45. package/dist/models/competitiveTier.model.d.ts +21 -0
  46. package/dist/models/competitiveTier.model.d.ts.map +1 -0
  47. package/dist/models/competitiveTier.model.js +27 -0
  48. package/dist/models/contentTier.model.d.ts +13 -0
  49. package/dist/models/contentTier.model.d.ts.map +1 -0
  50. package/dist/models/contentTier.model.js +17 -0
  51. package/dist/models/contract.model.d.ts +43 -0
  52. package/dist/models/contract.model.d.ts.map +1 -0
  53. package/dist/models/contract.model.js +55 -0
  54. package/dist/models/currency.model.d.ts +10 -0
  55. package/dist/models/currency.model.d.ts.map +1 -0
  56. package/dist/models/currency.model.js +14 -0
  57. package/dist/models/event.model.d.ts +10 -0
  58. package/dist/models/event.model.d.ts.map +1 -0
  59. package/dist/models/event.model.js +14 -0
  60. package/dist/models/gameMode.model.d.ts +29 -0
  61. package/dist/models/gameMode.model.d.ts.map +1 -0
  62. package/dist/models/gameMode.model.js +37 -0
  63. package/dist/models/gear.model.d.ts +18 -0
  64. package/dist/models/gear.model.d.ts.map +1 -0
  65. package/dist/models/gear.model.js +24 -0
  66. package/dist/models/levelBorder.model.d.ts +10 -0
  67. package/dist/models/levelBorder.model.d.ts.map +1 -0
  68. package/dist/models/levelBorder.model.js +14 -0
  69. package/dist/models/location.model.d.ts +15 -0
  70. package/dist/models/location.model.d.ts.map +1 -0
  71. package/dist/models/location.model.js +28 -0
  72. package/dist/models/map.model.d.ts +31 -0
  73. package/dist/models/map.model.d.ts.map +1 -0
  74. package/dist/models/map.model.js +47 -0
  75. package/dist/models/match.model.d.ts +648 -0
  76. package/dist/models/match.model.d.ts.map +1 -0
  77. package/dist/models/match.model.js +506 -0
  78. package/dist/models/matchlist.model.d.ts +13 -0
  79. package/dist/models/matchlist.model.d.ts.map +1 -0
  80. package/dist/models/matchlist.model.js +22 -0
  81. package/dist/models/playerCard.model.d.ts +14 -0
  82. package/dist/models/playerCard.model.d.ts.map +1 -0
  83. package/dist/models/playerCard.model.js +18 -0
  84. package/dist/models/playerTitle.model.d.ts +9 -0
  85. package/dist/models/playerTitle.model.d.ts.map +1 -0
  86. package/dist/models/playerTitle.model.js +13 -0
  87. package/dist/models/role.model.d.ts +9 -0
  88. package/dist/models/role.model.d.ts.map +1 -0
  89. package/dist/models/role.model.js +13 -0
  90. package/dist/models/season.model.d.ts +11 -0
  91. package/dist/models/season.model.d.ts.map +1 -0
  92. package/dist/models/season.model.js +15 -0
  93. package/dist/models/shopData.model.d.ts +19 -0
  94. package/dist/models/shopData.model.d.ts.map +1 -0
  95. package/dist/models/shopData.model.js +25 -0
  96. package/dist/models/spray.model.d.ts +26 -0
  97. package/dist/models/spray.model.d.ts.map +1 -0
  98. package/dist/models/spray.model.js +32 -0
  99. package/dist/models/theme.model.d.ts +9 -0
  100. package/dist/models/theme.model.d.ts.map +1 -0
  101. package/dist/models/theme.model.js +13 -0
  102. package/dist/models/version.model.d.ts +12 -0
  103. package/dist/models/version.model.d.ts.map +1 -0
  104. package/dist/models/version.model.js +16 -0
  105. package/dist/models/weapon.model.d.ts +100 -0
  106. package/dist/models/weapon.model.d.ts.map +1 -0
  107. package/dist/models/weapon.model.js +126 -0
  108. package/dist/scripts/fetch-data.d.ts +2 -0
  109. package/dist/scripts/fetch-data.d.ts.map +1 -0
  110. package/dist/scripts/fetch-data.js +75 -0
  111. package/dist/services/dtos.service.d.ts +184 -0
  112. package/dist/services/dtos.service.d.ts.map +1 -0
  113. package/dist/services/dtos.service.js +274 -0
  114. package/dist/tsconfig.tsbuildinfo +1 -0
  115. package/package.json +32 -0
@@ -0,0 +1,38 @@
1
+ {
2
+ "85ad13f7-3d1b-5128-9eb2-7cd8ee0b5741": {
3
+ "uuid": "85ad13f7-3d1b-5128-9eb2-7cd8ee0b5741",
4
+ "displayName": "VALORANT POINTS",
5
+ "displayNameSingular": "VALORANT POINT",
6
+ "displayIcon": "https://media.valorant-api.com/currencies/85ad13f7-3d1b-5128-9eb2-7cd8ee0b5741/displayicon.png",
7
+ "largeIcon": "https://media.valorant-api.com/currencies/85ad13f7-3d1b-5128-9eb2-7cd8ee0b5741/largeicon.png",
8
+ "rewardPreviewIcon": "https://media.valorant-api.com/currencies/85ad13f7-3d1b-5128-9eb2-7cd8ee0b5741/rewardpreviewicon.png",
9
+ "assetPath": "ShooterGame/Content/Currencies/Currency_AresPoints_DataAsset"
10
+ },
11
+ "85ca954a-41f2-ce94-9b45-8ca3dd39a00d": {
12
+ "uuid": "85ca954a-41f2-ce94-9b45-8ca3dd39a00d",
13
+ "displayName": "Kingdom Credits",
14
+ "displayNameSingular": "Kingdom Credit",
15
+ "displayIcon": "https://media.valorant-api.com/currencies/85ca954a-41f2-ce94-9b45-8ca3dd39a00d/displayicon.png",
16
+ "largeIcon": "https://media.valorant-api.com/currencies/85ca954a-41f2-ce94-9b45-8ca3dd39a00d/largeicon.png",
17
+ "rewardPreviewIcon": "https://media.valorant-api.com/currencies/85ca954a-41f2-ce94-9b45-8ca3dd39a00d/rewardpreviewicon.png",
18
+ "assetPath": "ShooterGame/Content/Currencies/Currency_Dough_DataAsset"
19
+ },
20
+ "f08d4ae3-939c-4576-ab26-09ce1f23bb37": {
21
+ "uuid": "f08d4ae3-939c-4576-ab26-09ce1f23bb37",
22
+ "displayName": "Free Agents",
23
+ "displayNameSingular": "Free Agent",
24
+ "displayIcon": "https://media.valorant-api.com/currencies/f08d4ae3-939c-4576-ab26-09ce1f23bb37/displayicon.png",
25
+ "largeIcon": "https://media.valorant-api.com/currencies/f08d4ae3-939c-4576-ab26-09ce1f23bb37/largeicon.png",
26
+ "rewardPreviewIcon": "https://media.valorant-api.com/currencies/f08d4ae3-939c-4576-ab26-09ce1f23bb37/rewardpreviewicon.png",
27
+ "assetPath": "ShooterGame/Content/Currencies/Currency_RecruitmentToken_DataAsset"
28
+ },
29
+ "e59aa87c-4cbf-517a-5983-6e81511be9b7": {
30
+ "uuid": "e59aa87c-4cbf-517a-5983-6e81511be9b7",
31
+ "displayName": "RADIANITE Points",
32
+ "displayNameSingular": "RADIANITE Point",
33
+ "displayIcon": "https://media.valorant-api.com/currencies/e59aa87c-4cbf-517a-5983-6e81511be9b7/displayicon.png",
34
+ "largeIcon": "https://media.valorant-api.com/currencies/e59aa87c-4cbf-517a-5983-6e81511be9b7/largeicon.png",
35
+ "rewardPreviewIcon": "https://media.valorant-api.com/currencies/e59aa87c-4cbf-517a-5983-6e81511be9b7/rewardpreviewicon.png",
36
+ "assetPath": "ShooterGame/Content/Currencies/Currency_UpgradeToken_DataAsset"
37
+ }
38
+ }
@@ -0,0 +1,106 @@
1
+ {
2
+ "96682481-4f7b-6322-18bb-f1a76f91a35f": {
3
+ "uuid": "96682481-4f7b-6322-18bb-f1a76f91a35f",
4
+ "displayName": "Champions",
5
+ "shortDisplayName": "Champions Pass",
6
+ "startTime": "2022-08-23T14:00:00Z",
7
+ "endTime": "2022-09-21T21:00:00Z",
8
+ "assetPath": "ShooterGame/Content/Events/2022Champions_EventPass/Event_Champions_DataAssetV2"
9
+ },
10
+ "024d36a7-46e3-8a29-30c6-09a7fb81bebe": {
11
+ "uuid": "024d36a7-46e3-8a29-30c6-09a7fb81bebe",
12
+ "displayName": "Lunar Celebration Event Pass",
13
+ "shortDisplayName": "LNY 2022",
14
+ "startTime": "2022-02-01T12:00:00Z",
15
+ "endTime": "2022-02-16T22:00:00Z",
16
+ "assetPath": "ShooterGame/Content/Events/2022LNY_Event_Pass/Event_2022LNY_DataAssetV2"
17
+ },
18
+ "700c7584-43b8-3e48-bde7-fa88f33da72f": {
19
+ "uuid": "700c7584-43b8-3e48-bde7-fa88f33da72f",
20
+ "displayName": "2022 Recall Pass",
21
+ "shortDisplayName": "Recall",
22
+ "startTime": "2022-12-14T14:00:00Z",
23
+ "endTime": "2023-01-05T00:00:00Z",
24
+ "assetPath": "ShooterGame/Content/Events/2022Recall_EventPass/Event_Recall_DataAsset"
25
+ },
26
+ "de4b227a-479a-a885-c2e3-7c9f066b8492": {
27
+ "uuid": "de4b227a-479a-a885-c2e3-7c9f066b8492",
28
+ "displayName": "Champions 2023 Event Pass",
29
+ "shortDisplayName": "Champions Pass",
30
+ "startTime": "2023-08-04T21:00:00Z",
31
+ "endTime": "2023-08-29T21:00:00Z",
32
+ "assetPath": "ShooterGame/Content/Events/2023Champions_EventPass/Event_Champions2023_DataAssetV2"
33
+ },
34
+ "aa924ba5-440b-e620-fc96-d192b3eea137": {
35
+ "uuid": "aa924ba5-440b-e620-fc96-d192b3eea137",
36
+ "displayName": "2023 Horizons Event Pass",
37
+ "shortDisplayName": "2023 Horizons Pass",
38
+ "startTime": "2023-10-31T21:00:00Z",
39
+ "endTime": "2023-11-28T21:00:00Z",
40
+ "assetPath": "ShooterGame/Content/Events/2023HorizonsEventPass/Event_2023Horizons_DataAssetV2"
41
+ },
42
+ "5e96c1d7-427c-fea3-f8f0-77afce50170b": {
43
+ "uuid": "5e96c1d7-427c-fea3-f8f0-77afce50170b",
44
+ "displayName": "Scales of Fortune Event Pass",
45
+ "shortDisplayName": "Scales of Fortune",
46
+ "startTime": "2024-02-07T22:00:00Z",
47
+ "endTime": "2024-02-28T22:00:00Z",
48
+ "assetPath": "ShooterGame/Content/Events/2024LNY_Event_Pass/Event_2024LNY_DataAssetV2"
49
+ },
50
+ "9a251c8f-4d56-76df-b338-13add9b4820f": {
51
+ "uuid": "9a251c8f-4d56-76df-b338-13add9b4820f",
52
+ "displayName": "Collision Event Pass",
53
+ "shortDisplayName": "Collision",
54
+ "startTime": "2024-08-01T21:00:00Z",
55
+ "endTime": "2024-08-29T21:00:00Z",
56
+ "assetPath": "ShooterGame/Content/Events/2024Supernova_EventPass/Event_Supernova_DataAssetV2"
57
+ },
58
+ "8ef68504-420f-bc8a-beae-a4acaabee3dd": {
59
+ "uuid": "8ef68504-420f-bc8a-beae-a4acaabee3dd",
60
+ "displayName": "Year End Event Pass",
61
+ "shortDisplayName": "Year End",
62
+ "startTime": "2024-12-12T21:00:00Z",
63
+ "endTime": "2025-01-07T21:00:00Z",
64
+ "assetPath": "ShooterGame/Content/Events/2024_EOY_EventPass/Event_EOY24_DataAssetV2"
65
+ },
66
+ "68143e6d-473a-0593-22a5-daadbe65807b": {
67
+ "uuid": "68143e6d-473a-0593-22a5-daadbe65807b",
68
+ "displayName": null,
69
+ "shortDisplayName": null,
70
+ "startTime": "2025-01-24T22:00:00Z",
71
+ "endTime": "2025-02-13T22:00:00Z",
72
+ "assetPath": "ShooterGame/Content/Events/2025LNY_Event_Pass/Event_2025LNY_DataAssetV2"
73
+ },
74
+ "7cfe1d41-463f-8ecd-1065-26bd66d8b138": {
75
+ "uuid": "7cfe1d41-463f-8ecd-1065-26bd66d8b138",
76
+ "displayName": "Crossover",
77
+ "shortDisplayName": "Crossover Pass",
78
+ "startTime": "2022-06-22T14:00:00Z",
79
+ "endTime": "2022-07-12T21:00:00Z",
80
+ "assetPath": "ShooterGame/Content/Events/E5_A1_Mirrorverse_EventPass/Event_EP5_Act1_Mirrorverse_DataAssetV2"
81
+ },
82
+ "64e83b27-4348-aa5b-16c4-f185748e3415": {
83
+ "uuid": "64e83b27-4348-aa5b-16c4-f185748e3415",
84
+ "displayName": "5 Years Event Pass",
85
+ "shortDisplayName": "5 Years",
86
+ "startTime": "2025-06-02T22:00:00Z",
87
+ "endTime": "2025-06-24T22:00:00Z",
88
+ "assetPath": "ShooterGame/Content/Events/Val5_EventPass/Event_Val5_DataAssetV2"
89
+ },
90
+ "3bd00051-4518-411d-046d-a7a554850267": {
91
+ "uuid": "3bd00051-4518-411d-046d-a7a554850267",
92
+ "displayName": "YR1 ANNIVERSARY PASS",
93
+ "shortDisplayName": "VAL Birthday",
94
+ "startTime": "2021-06-22T12:00:00Z",
95
+ "endTime": "2021-07-07T07:59:59Z",
96
+ "assetPath": "ShooterGame/Content/Events/Val_Birthday2021_Event_Pass/Event_ValBirthday2021_DataAssetV2"
97
+ },
98
+ "cee09894-41d6-7000-848b-ea9de6c28f44": {
99
+ "uuid": "cee09894-41d6-7000-848b-ea9de6c28f44",
100
+ "displayName": "RiotX Arcane Pass",
101
+ "shortDisplayName": "ARCANE",
102
+ "startTime": "2021-11-05T21:00:00Z",
103
+ "endTime": "2021-11-22T22:00:00Z",
104
+ "assetPath": "ShooterGame/Content/Events/XP1_Event/XP1_Event_DataAsset"
105
+ }
106
+ }
@@ -0,0 +1,399 @@
1
+ {
2
+ "96bd3920-4f36-d026-2b28-c683eb0bcac5": {
3
+ "uuid": "96bd3920-4f36-d026-2b28-c683eb0bcac5",
4
+ "displayName": "Standard",
5
+ "description": "Standard VALORANT. Switch between attack and defense at the half. Plant, defuse, or eliminate the enemy team to win rounds. First to 13 wins.",
6
+ "duration": "30-40 MINS",
7
+ "economyType": null,
8
+ "allowsMatchTimeouts": true,
9
+ "isTeamVoiceAllowed": true,
10
+ "isMinimapHidden": false,
11
+ "orbCount": 1,
12
+ "roundsPerHalf": -1,
13
+ "teamRoles": null,
14
+ "gameFeatureOverrides": null,
15
+ "gameRuleBoolOverrides": [
16
+ {
17
+ "ruleName": "EGameRuleBoolName::AccoladesEnabled",
18
+ "state": true
19
+ }
20
+ ],
21
+ "displayIcon": "https://media.valorant-api.com/gamemodes/96bd3920-4f36-d026-2b28-c683eb0bcac5/displayicon.png",
22
+ "listViewIconTall": "https://media.valorant-api.com/gamemodes/96bd3920-4f36-d026-2b28-c683eb0bcac5/listviewicontall.png",
23
+ "assetPath": "ShooterGame/Content/GameModes/Bomb/BombGameMode_PrimaryAsset"
24
+ },
25
+ "a8790ec5-4237-f2f0-e93b-08a8e89865b2": {
26
+ "uuid": "a8790ec5-4237-f2f0-e93b-08a8e89865b2",
27
+ "displayName": "Deathmatch",
28
+ "description": "Practice your gunplay in a quick free-for-all. No abilities, economy, or rounds. First player to 40 kills wins.",
29
+ "duration": "7-9 MINS",
30
+ "economyType": "EEconomyTypes::Other",
31
+ "allowsMatchTimeouts": false,
32
+ "isTeamVoiceAllowed": false,
33
+ "isMinimapHidden": false,
34
+ "orbCount": 1,
35
+ "roundsPerHalf": -1,
36
+ "teamRoles": [
37
+ "EAresTeamRole::FreeForAll"
38
+ ],
39
+ "gameFeatureOverrides": [
40
+ {
41
+ "featureName": "EGameFeatureToggleName::AllowShoppingWhileDead",
42
+ "state": true
43
+ },
44
+ {
45
+ "featureName": "EGameFeatureToggleName::UseServerAuthoritativeDropOut",
46
+ "state": true
47
+ }
48
+ ],
49
+ "gameRuleBoolOverrides": [
50
+ {
51
+ "ruleName": "EGameRuleBoolName::CombatReportOnlyShowLastLife",
52
+ "state": true
53
+ },
54
+ {
55
+ "ruleName": "EGameRuleBoolName::AssignRandomAgents",
56
+ "state": true
57
+ },
58
+ {
59
+ "ruleName": "EGameRuleBoolName::SkipPregame",
60
+ "state": true
61
+ }
62
+ ],
63
+ "displayIcon": "https://media.valorant-api.com/gamemodes/a8790ec5-4237-f2f0-e93b-08a8e89865b2/displayicon.png",
64
+ "listViewIconTall": "https://media.valorant-api.com/gamemodes/a8790ec5-4237-f2f0-e93b-08a8e89865b2/listviewicontall.png",
65
+ "assetPath": "ShooterGame/Content/GameModes/Deathmatch/DeathmatchGameMode_PrimaryAsset"
66
+ },
67
+ "d2d0f229-4514-517a-b10a-aaa0ef0d4a67": {
68
+ "uuid": "d2d0f229-4514-517a-b10a-aaa0ef0d4a67",
69
+ "displayName": "Bot Match",
70
+ "description": null,
71
+ "duration": null,
72
+ "economyType": null,
73
+ "allowsMatchTimeouts": false,
74
+ "isTeamVoiceAllowed": true,
75
+ "isMinimapHidden": false,
76
+ "orbCount": 1,
77
+ "roundsPerHalf": 4,
78
+ "teamRoles": null,
79
+ "gameFeatureOverrides": null,
80
+ "gameRuleBoolOverrides": [
81
+ {
82
+ "ruleName": "EGameRuleBoolName::FillWithBots",
83
+ "state": true
84
+ },
85
+ {
86
+ "ruleName": "EGameRuleBoolName::ContextAwareModuleEnabled",
87
+ "state": true
88
+ },
89
+ {
90
+ "ruleName": "EGameRuleBoolName::AllowDropOut",
91
+ "state": true
92
+ }
93
+ ],
94
+ "displayIcon": "https://media.valorant-api.com/gamemodes/d2d0f229-4514-517a-b10a-aaa0ef0d4a67/displayicon.png",
95
+ "listViewIconTall": "https://media.valorant-api.com/gamemodes/d2d0f229-4514-517a-b10a-aaa0ef0d4a67/listviewicontall.png",
96
+ "assetPath": "ShooterGame/Content/GameModes/ExamplePlayerTestBot/BotTrainingMatch_GameMode_PrimaryAsset"
97
+ },
98
+ "a4ed6518-4741-6dcb-35bd-f884aecdc859": {
99
+ "uuid": "a4ed6518-4741-6dcb-35bd-f884aecdc859",
100
+ "displayName": "Escalation",
101
+ "description": "Eliminate enemies to advance your team’s arsenal. Cycle through a series of 12 randomized weapons. First to complete the series wins.",
102
+ "duration": "7-9 MINS",
103
+ "economyType": "EEconomyTypes::Other",
104
+ "allowsMatchTimeouts": false,
105
+ "isTeamVoiceAllowed": true,
106
+ "isMinimapHidden": false,
107
+ "orbCount": 1,
108
+ "roundsPerHalf": -1,
109
+ "teamRoles": null,
110
+ "gameFeatureOverrides": [
111
+ {
112
+ "featureName": "EGameFeatureToggleName::DeathmatchEncourageFarSpawning",
113
+ "state": false
114
+ }
115
+ ],
116
+ "gameRuleBoolOverrides": [
117
+ {
118
+ "ruleName": "EGameRuleBoolName::AssignRandomAgents",
119
+ "state": true
120
+ },
121
+ {
122
+ "ruleName": "EGameRuleBoolName::SkipPregame",
123
+ "state": true
124
+ },
125
+ {
126
+ "ruleName": "EGameRuleBoolName::CombatReportOnlyShowLastLife",
127
+ "state": true
128
+ }
129
+ ],
130
+ "displayIcon": "https://media.valorant-api.com/gamemodes/a4ed6518-4741-6dcb-35bd-f884aecdc859/displayicon.png",
131
+ "listViewIconTall": "https://media.valorant-api.com/gamemodes/a4ed6518-4741-6dcb-35bd-f884aecdc859/listviewicontall.png",
132
+ "assetPath": "ShooterGame/Content/GameModes/GunGame/GunGameTeamsGameMode_PrimaryAsset"
133
+ },
134
+ "e086db66-47fd-e791-ca81-06a645ac7661": {
135
+ "uuid": "e086db66-47fd-e791-ca81-06a645ac7661",
136
+ "displayName": "Team Deathmatch",
137
+ "description": "Ability-enabled team deathmatch on a unique set of maps. Progress through a series of increasingly powerful loadouts. First team to 100 kills wins.",
138
+ "duration": "8-10 MINS",
139
+ "economyType": "EEconomyTypes::Other",
140
+ "allowsMatchTimeouts": false,
141
+ "isTeamVoiceAllowed": true,
142
+ "isMinimapHidden": false,
143
+ "orbCount": 1,
144
+ "roundsPerHalf": -1,
145
+ "teamRoles": null,
146
+ "gameFeatureOverrides": [
147
+ {
148
+ "featureName": "EGameFeatureToggleName::AllowShoppingWhileDead",
149
+ "state": true
150
+ },
151
+ {
152
+ "featureName": "EGameFeatureToggleName::EquippableCacheRecycling",
153
+ "state": true
154
+ },
155
+ {
156
+ "featureName": "EGameFeatureToggleName::UseMeshMaterialManagerAlt",
157
+ "state": true
158
+ },
159
+ {
160
+ "featureName": "EGameFeatureToggleName::DisableFogOfWar",
161
+ "state": true
162
+ }
163
+ ],
164
+ "gameRuleBoolOverrides": [
165
+ {
166
+ "ruleName": "EGameRuleBoolName::DestroyAbilitiesOnDeath",
167
+ "state": true
168
+ },
169
+ {
170
+ "ruleName": "EGameRuleBoolName::PipAbilityCasting",
171
+ "state": false
172
+ },
173
+ {
174
+ "ruleName": "EGameRuleBoolName::CombatReportOnlyShowLastLife",
175
+ "state": true
176
+ },
177
+ {
178
+ "ruleName": "EGameRuleBoolName::PreventAbilityRecharge",
179
+ "state": true
180
+ },
181
+ {
182
+ "ruleName": "EGameRuleBoolName::UseAllAbilityCooldowns",
183
+ "state": true
184
+ },
185
+ {
186
+ "ruleName": "EGameRuleBoolName::DownedCharactersCanGiveUp",
187
+ "state": true
188
+ },
189
+ {
190
+ "ruleName": "EGameRuleBoolName::UseInDevWeapons",
191
+ "state": true
192
+ },
193
+ {
194
+ "ruleName": "EGameRuleBoolName::AccoladesEnabled",
195
+ "state": true
196
+ }
197
+ ],
198
+ "displayIcon": "https://media.valorant-api.com/gamemodes/e086db66-47fd-e791-ca81-06a645ac7661/displayicon.png",
199
+ "listViewIconTall": "https://media.valorant-api.com/gamemodes/e086db66-47fd-e791-ca81-06a645ac7661/listviewicontall.png",
200
+ "assetPath": "ShooterGame/Content/GameModes/HURM/HURM_PrimaryAsset"
201
+ },
202
+ "2b470a47-40e0-ad02-73b4-7f8585fa108c": {
203
+ "uuid": "2b470a47-40e0-ad02-73b4-7f8585fa108c",
204
+ "displayName": "Basic Training",
205
+ "description": "Replay the tutorial!",
206
+ "duration": null,
207
+ "economyType": null,
208
+ "allowsMatchTimeouts": false,
209
+ "isTeamVoiceAllowed": true,
210
+ "isMinimapHidden": true,
211
+ "orbCount": 1,
212
+ "roundsPerHalf": -1,
213
+ "teamRoles": null,
214
+ "gameFeatureOverrides": [
215
+ {
216
+ "featureName": "EGameFeatureToggleName::RemoveDeletedFXCsFromPool",
217
+ "state": true
218
+ }
219
+ ],
220
+ "gameRuleBoolOverrides": [
221
+ {
222
+ "ruleName": "EGameRuleBoolName::SkipPregame",
223
+ "state": true
224
+ },
225
+ {
226
+ "ruleName": "EGameRuleBoolName::AssignRandomAgents",
227
+ "state": true
228
+ },
229
+ {
230
+ "ruleName": "EGameRuleBoolName::DisableShopSelling",
231
+ "state": true
232
+ },
233
+ {
234
+ "ruleName": "EGameRuleBoolName::CombatReportOnlyShowLastLife",
235
+ "state": true
236
+ }
237
+ ],
238
+ "displayIcon": null,
239
+ "listViewIconTall": "https://media.valorant-api.com/gamemodes/2b470a47-40e0-ad02-73b4-7f8585fa108c/listviewicontall.png",
240
+ "assetPath": "ShooterGame/Content/GameModes/NPEV2/NPEV2_GameMode_PrimaryAsset"
241
+ },
242
+ "d2b4e425-4cab-8d95-eb26-bb9b444551dc": {
243
+ "uuid": "d2b4e425-4cab-8d95-eb26-bb9b444551dc",
244
+ "displayName": "Onboarding",
245
+ "description": null,
246
+ "duration": null,
247
+ "economyType": null,
248
+ "allowsMatchTimeouts": false,
249
+ "isTeamVoiceAllowed": true,
250
+ "isMinimapHidden": true,
251
+ "orbCount": 1,
252
+ "roundsPerHalf": -1,
253
+ "teamRoles": null,
254
+ "gameFeatureOverrides": null,
255
+ "gameRuleBoolOverrides": null,
256
+ "displayIcon": null,
257
+ "listViewIconTall": null,
258
+ "assetPath": "ShooterGame/Content/GameModes/NewPlayerExperience/NPEGameMode_PrimaryAsset"
259
+ },
260
+ "4744698a-4513-dc96-9c22-a9aa437e4a58": {
261
+ "uuid": "4744698a-4513-dc96-9c22-a9aa437e4a58",
262
+ "displayName": "Replication",
263
+ "description": "Same rules as unrated, but all players on the same team are the same agent. Set credits per round, first to 5 rounds wins.",
264
+ "duration": "10-15 MINS",
265
+ "economyType": null,
266
+ "allowsMatchTimeouts": false,
267
+ "isTeamVoiceAllowed": true,
268
+ "isMinimapHidden": false,
269
+ "orbCount": 1,
270
+ "roundsPerHalf": 4,
271
+ "teamRoles": null,
272
+ "gameFeatureOverrides": null,
273
+ "gameRuleBoolOverrides": [
274
+ {
275
+ "ruleName": "EGameRuleBoolName::MajorityVoteAgents",
276
+ "state": true
277
+ },
278
+ {
279
+ "ruleName": "EGameRuleBoolName::IsOvertimeWinByTwo",
280
+ "state": false
281
+ }
282
+ ],
283
+ "displayIcon": "https://media.valorant-api.com/gamemodes/4744698a-4513-dc96-9c22-a9aa437e4a58/displayicon.png",
284
+ "listViewIconTall": "https://media.valorant-api.com/gamemodes/4744698a-4513-dc96-9c22-a9aa437e4a58/listviewicontall.png",
285
+ "assetPath": "ShooterGame/Content/GameModes/OneForAll/OneForAll_GameMode_DataAsset_Desktop"
286
+ },
287
+ "e921d1e6-416b-c31f-1291-74930c330b7b": {
288
+ "uuid": "e921d1e6-416b-c31f-1291-74930c330b7b",
289
+ "displayName": "Spike Rush",
290
+ "description": "Shorter games of VALORANT with added powerup orbs and randomized weapons. Plant, defuse, or eliminate the enemy team to win rounds. First to 4 wins.",
291
+ "duration": "8-12 MINS",
292
+ "economyType": null,
293
+ "allowsMatchTimeouts": false,
294
+ "isTeamVoiceAllowed": true,
295
+ "isMinimapHidden": false,
296
+ "orbCount": 1,
297
+ "roundsPerHalf": 3,
298
+ "teamRoles": null,
299
+ "gameFeatureOverrides": null,
300
+ "gameRuleBoolOverrides": [
301
+ {
302
+ "ruleName": "EGameRuleBoolName::AccoladesEnabled",
303
+ "state": true
304
+ }
305
+ ],
306
+ "displayIcon": "https://media.valorant-api.com/gamemodes/e921d1e6-416b-c31f-1291-74930c330b7b/displayicon.png",
307
+ "listViewIconTall": "https://media.valorant-api.com/gamemodes/e921d1e6-416b-c31f-1291-74930c330b7b/listviewicontall.png",
308
+ "assetPath": "ShooterGame/Content/GameModes/QuickBomb/QuickBombGameMode_PrimaryAsset"
309
+ },
310
+ "e2dc3878-4fe5-d132-28f8-3d8c259efcc6": {
311
+ "uuid": "e2dc3878-4fe5-d132-28f8-3d8c259efcc6",
312
+ "displayName": "The Range",
313
+ "description": "Warm up with all weapons and agents unlocked!",
314
+ "duration": null,
315
+ "economyType": null,
316
+ "allowsMatchTimeouts": false,
317
+ "isTeamVoiceAllowed": true,
318
+ "isMinimapHidden": true,
319
+ "orbCount": 1,
320
+ "roundsPerHalf": -1,
321
+ "teamRoles": null,
322
+ "gameFeatureOverrides": null,
323
+ "gameRuleBoolOverrides": [
324
+ {
325
+ "ruleName": "EGameRuleBoolName::ContextAwareModuleEnabled",
326
+ "state": true
327
+ }
328
+ ],
329
+ "displayIcon": null,
330
+ "listViewIconTall": "https://media.valorant-api.com/gamemodes/e2dc3878-4fe5-d132-28f8-3d8c259efcc6/listviewicontall.png",
331
+ "assetPath": "ShooterGame/Content/GameModes/ShootingRange/ShootingRangeGameMode_PrimaryAsset"
332
+ },
333
+ "57038d6d-49b1-3a74-c5ef-3395d9f23a97": {
334
+ "uuid": "57038d6d-49b1-3a74-c5ef-3395d9f23a97",
335
+ "displayName": "Snowball Fight",
336
+ "description": null,
337
+ "duration": "5-7 MINS",
338
+ "economyType": null,
339
+ "allowsMatchTimeouts": false,
340
+ "isTeamVoiceAllowed": true,
341
+ "isMinimapHidden": false,
342
+ "orbCount": 1,
343
+ "roundsPerHalf": -1,
344
+ "teamRoles": [
345
+ "EAresTeamRole::Attacker",
346
+ "EAresTeamRole::Defender"
347
+ ],
348
+ "gameFeatureOverrides": [
349
+ {
350
+ "featureName": "EGameFeatureToggleName::DeathmatchEncourageFarSpawning",
351
+ "state": false
352
+ }
353
+ ],
354
+ "gameRuleBoolOverrides": [
355
+ {
356
+ "ruleName": "EGameRuleBoolName::AssignRandomAgents",
357
+ "state": true
358
+ },
359
+ {
360
+ "ruleName": "EGameRuleBoolName::SkipPregame",
361
+ "state": true
362
+ },
363
+ {
364
+ "ruleName": "EGameRuleBoolName::CombatReportOnlyShowLastLife",
365
+ "state": true
366
+ }
367
+ ],
368
+ "displayIcon": "https://media.valorant-api.com/gamemodes/57038d6d-49b1-3a74-c5ef-3395d9f23a97/displayicon.png",
369
+ "listViewIconTall": null,
370
+ "assetPath": "ShooterGame/Content/GameModes/SnowballFight/SnowballFightGameMode_PrimaryAsset"
371
+ },
372
+ "5d0f264b-4ebe-cc63-c147-809e1374484b": {
373
+ "uuid": "5d0f264b-4ebe-cc63-c147-809e1374484b",
374
+ "displayName": "Swiftplay",
375
+ "description": "Shorter games of VALORANT with a simplified economy. Plant, defuse, or eliminate the enemy team to win rounds. First to 5 wins.",
376
+ "duration": "10-15 MIN",
377
+ "economyType": null,
378
+ "allowsMatchTimeouts": false,
379
+ "isTeamVoiceAllowed": true,
380
+ "isMinimapHidden": false,
381
+ "orbCount": 1,
382
+ "roundsPerHalf": 4,
383
+ "teamRoles": null,
384
+ "gameFeatureOverrides": null,
385
+ "gameRuleBoolOverrides": [
386
+ {
387
+ "ruleName": "EGameRuleBoolName::IsOvertimeWinByTwo",
388
+ "state": false
389
+ },
390
+ {
391
+ "ruleName": "EGameRuleBoolName::AccoladesEnabled",
392
+ "state": true
393
+ }
394
+ ],
395
+ "displayIcon": "https://media.valorant-api.com/gamemodes/5d0f264b-4ebe-cc63-c147-809e1374484b/displayicon.png",
396
+ "listViewIconTall": "https://media.valorant-api.com/gamemodes/5d0f264b-4ebe-cc63-c147-809e1374484b/listviewicontall.png",
397
+ "assetPath": "ShooterGame/Content/GameModes/_Development/Swiftplay_EndOfRoundCredits/SwiftPlay_GameMode_PrimaryAsset"
398
+ }
399
+ }
@@ -0,0 +1,102 @@
1
+ {
2
+ "822bcab2-40a2-324e-c137-e09195ad7692": {
3
+ "uuid": "822bcab2-40a2-324e-c137-e09195ad7692",
4
+ "displayName": "Heavy Armor",
5
+ "description": "Absorbs 66% of total damage taken. Breaks after it has absorbed 50 damage.",
6
+ "descriptions": [
7
+ "Absorbs 66% of total damage taken. Breaks after it has absorbed 50 damage."
8
+ ],
9
+ "details": [
10
+ {
11
+ "name": "DAMAGE REDUCTION",
12
+ "value": "Partial"
13
+ },
14
+ {
15
+ "name": "DAMAGE ABSORBED",
16
+ "value": "66%"
17
+ }
18
+ ],
19
+ "displayIcon": "https://media.valorant-api.com/gear/822bcab2-40a2-324e-c137-e09195ad7692/displayicon.png",
20
+ "assetPath": "ShooterGame/Content/Gear/HeavyArmor_PrimaryAsset",
21
+ "shopData": {
22
+ "cost": 1000,
23
+ "category": "Armor",
24
+ "shopOrderPriority": 0,
25
+ "categoryText": "Shields",
26
+ "gridPosition": null,
27
+ "canBeTrashed": false,
28
+ "image": null,
29
+ "newImage": "https://media.valorant-api.com/gear/822bcab2-40a2-324e-c137-e09195ad7692/shop/newimage.png",
30
+ "newImage2": null,
31
+ "assetPath": "ShooterGame/Content/Gear/HeavyArmorPurchasable"
32
+ }
33
+ },
34
+ "4dec83d5-4902-9ab3-bed6-a7a390761157": {
35
+ "uuid": "4dec83d5-4902-9ab3-bed6-a7a390761157",
36
+ "displayName": "Light Armor",
37
+ "description": "Absorbs 66% of total damage taken. Breaks after it has absorbed 25 damage.",
38
+ "descriptions": [
39
+ "Absorbs 66% of total damage taken. Breaks after it has absorbed 25 damage."
40
+ ],
41
+ "details": [
42
+ {
43
+ "name": "DAMAGE REDUCTION",
44
+ "value": "Partial"
45
+ },
46
+ {
47
+ "name": "DAMAGE ABSORBED",
48
+ "value": "66%"
49
+ }
50
+ ],
51
+ "displayIcon": "https://media.valorant-api.com/gear/4dec83d5-4902-9ab3-bed6-a7a390761157/displayicon.png",
52
+ "assetPath": "ShooterGame/Content/Gear/LightArmor_PrimaryAsset",
53
+ "shopData": {
54
+ "cost": 400,
55
+ "category": "Armor",
56
+ "shopOrderPriority": 0,
57
+ "categoryText": "Shields",
58
+ "gridPosition": null,
59
+ "canBeTrashed": false,
60
+ "image": null,
61
+ "newImage": "https://media.valorant-api.com/gear/4dec83d5-4902-9ab3-bed6-a7a390761157/shop/newimage.png",
62
+ "newImage2": null,
63
+ "assetPath": "ShooterGame/Content/Gear/LightArmorPurchasable"
64
+ }
65
+ },
66
+ "b1b9086d-41bd-a516-5d29-e3b34a6f1644": {
67
+ "uuid": "b1b9086d-41bd-a516-5d29-e3b34a6f1644",
68
+ "displayName": "Regen Shield",
69
+ "description": "Absorbs 100% of total damage taken. Regenerates after it has absorbed damage. Has a total regeneration pool of 50.",
70
+ "descriptions": [
71
+ "Absorbs 100% of total damage taken. Regenerates after it has absorbed damage. Has a total regeneration pool of 50."
72
+ ],
73
+ "details": [
74
+ {
75
+ "name": "DAMAGE REDUCTION",
76
+ "value": "Full"
77
+ },
78
+ {
79
+ "name": "DAMAGE ABSORBED",
80
+ "value": "100%"
81
+ },
82
+ {
83
+ "name": "REGENERATION POOL",
84
+ "value": "50"
85
+ }
86
+ ],
87
+ "displayIcon": "https://media.valorant-api.com/gear/b1b9086d-41bd-a516-5d29-e3b34a6f1644/displayicon.png",
88
+ "assetPath": "ShooterGame/Content/Gear/PlasmaArmor/PlasmaArmor_PrimaryAsset",
89
+ "shopData": {
90
+ "cost": 650,
91
+ "category": "Armor",
92
+ "shopOrderPriority": 0,
93
+ "categoryText": "Shields",
94
+ "gridPosition": null,
95
+ "canBeTrashed": false,
96
+ "image": null,
97
+ "newImage": "https://media.valorant-api.com/gear/b1b9086d-41bd-a516-5d29-e3b34a6f1644/shop/newimage.png",
98
+ "newImage2": null,
99
+ "assetPath": "ShooterGame/Content/Gear/PlasmaArmor/PlasmaArmorPurchasable"
100
+ }
101
+ }
102
+ }