-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathHalo5Config.cs
More file actions
89 lines (81 loc) · 7.64 KB
/
Halo5Config.cs
File metadata and controls
89 lines (81 loc) · 7.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
namespace HaloSharp.Test.Config
{
public static class Halo5Config
{
public const string CampaignMissionsJsonPath = "JSON/Halo5/Metadata/campaign-missions.json";
public const string CampaignMissionsJsonSchemaPath = "JSON/Halo5/Metadata/campaign-missions.schema.json";
public const string CommendationJsonPath = "JSON/Halo5/Metadata/commendations.json";
public const string CommendationJsonSchemaPath = "JSON/Halo5/Metadata/commendations.schema.json";
public const string CompetitiveSkillRankDesignationsJsonPath = "JSON/Halo5/Metadata/competitive-skill-rank-designations.json";
public const string CompetitiveSkillRankDesignationsJsonSchemaPath = "JSON/Halo5/Metadata/competitive-skill-rank-designations.schema.json";
public const string EnemyJsonPath = "JSON/Halo5/Metadata/enemies.json";
public const string EnemyJsonSchemaPath = "JSON/Halo5/Metadata/enemies.schema.json";
public const string FlexibleStatJsonPath = "JSON/Halo5/Metadata/flexible-stats.json";
public const string FlexibleStatJsonSchemaPath = "JSON/Halo5/Metadata/flexible-stats.schema.json";
public const string GameBaseVariantJsonPath = "JSON/Halo5/Metadata/game-base-variants.json";
public const string GameBaseVariantJsonSchemaPath = "JSON/Halo5/Metadata/game-base-variants.schema.json";
public const string GameVariantJsonPath = "JSON/Halo5/Metadata/game-variant.json";
public const string GameVariantJsonSchemaPath = "JSON/Halo5/Metadata/game-variant.schema.json";
public const string ImpulseJsonPath = "JSON/Halo5/Metadata/impulses.json";
public const string ImpulseJsonSchemaPath = "JSON/Halo5/Metadata/impulses.schema.json";
public const string MapJsonPath = "JSON/Halo5/Metadata/maps.json";
public const string MapJsonSchemaPath = "JSON/Halo5/Metadata/maps.schema.json";
public const string MapVariantJsonPath = "JSON/Halo5/Metadata/map-variant.json";
public const string MapVariantJsonSchemaPath = "JSON/Halo5/Metadata/map-variant.schema.json";
public const string MedalJsonPath = "JSON/Halo5/Metadata/medals.json";
public const string MedalJsonSchemaPath = "JSON/Halo5/Metadata/medals.schema.json";
public const string PlaylistJsonPath = "JSON/Halo5/Metadata/playlists.json";
public const string PlaylistJsonSchemaPath = "JSON/Halo5/Metadata/playlists.schema.json";
public const string RequisitionJsonPath = "JSON/Halo5/Metadata/requisition.json";
public const string RequisitionJsonSchemaPath = "JSON/Halo5/Metadata/requisition.schema.json";
public const string RequisitionPackJsonPath = "JSON/Halo5/Metadata/requisition-pack.json";
public const string RequisitionPackJsonSchemaPath = "JSON/Halo5/Metadata/requisition-pack.schema.json";
public const string SeasonsJsonPath = "JSON/Halo5/Metadata/seasons.json";
public const string SeasonsJsonSchemaPath = "JSON/Halo5/Metadata/seasons.schema.json";
public const string SkullsJsonPath = "JSON/Halo5/Metadata/skulls.json";
public const string SkullsJsonSchemaPath = "JSON/Halo5/Metadata/skulls.schema.json";
public const string SpartanRanksJsonPath = "JSON/Halo5/Metadata/spartan-ranks.json";
public const string SpartanRanksJsonSchemaPath = "JSON/Halo5/Metadata/spartan-ranks.schema.json";
public const string TeamColorsJsonPath = "JSON/Halo5/Metadata/team-colors.json";
public const string TeamColorsJsonSchemaPath = "JSON/Halo5/Metadata/team-colors.schema.json";
public const string VehiclesJsonPath = "JSON/Halo5/Metadata/vehicles.json";
public const string VehiclesJsonSchemaPath = "JSON/Halo5/Metadata/vehicles.schema.json";
public const string WeaponsJsonPath = "JSON/Halo5/Metadata/weapons.json";
public const string WeaponsJsonSchemaPath = "JSON/Halo5/Metadata/weapons.schema.json";
public const string SpartanCompanyPath = "JSON/Halo5/Stats/spartan-company.json";
public const string SpartanCompanySchemaPath = "JSON/Halo5/Stats/spartan-company.schema.json";
public const string PlayerAppearancePath = "JSON/Halo5/Profile/player-appearance.json";
public const string PlayerAppearanceSchemaPath = "JSON/Halo5/Profile/player-appearance.schema.json";
public const string ArenaMatchJsonPath = "JSON/Halo5/Stats/CarnageReport/arena-match.json";
public const string ArenaMatchJsonSchemaPath = "JSON/Halo5/Stats/CarnageReport/arena-match.schema.json";
public const string CampaignMatchJsonPath = "JSON/Halo5/Stats/CarnageReport/campaign-match.json";
public const string CampaignMatchJsonSchemaPath = "JSON/Halo5/Stats/CarnageReport/campaign-match.schema.json";
public const string CustomMatchJsonPath = "JSON/Halo5/Stats/CarnageReport/custom-match.json";
public const string CustomMatchJsonSchemaPath = "JSON/Halo5/Stats/CarnageReport/custom-match.schema.json";
public const string WarzoneMatchJsonPath = "JSON/Halo5/Stats/CarnageReport/warzone-match.json";
public const string WarzoneMatchJsonSchemaPath = "JSON/Halo5/Stats/CarnageReport/warzone-match.schema.json";
public const string MatchEventsJsonPath = "JSON/Halo5/Stats/CarnageReport/match-events.json";
public const string MatchEventsJsonSchemaPath = "JSON/Halo5/Stats/CarnageReport/match-events.schema.json";
public const string ArenaServiceRecordJsonPath = "JSON/Halo5/Stats/Lifetime/arena-service-record.json";
public const string ArenaServiceRecordJsonSchemaPath = "JSON/Halo5/Stats/Lifetime/arena-service-record.schema.json";
public const string CampaignServiceRecordJsonPath = "JSON/Halo5/Stats/Lifetime/campaign-service-record.json";
public const string CampaignServiceRecordJsonSchemaPath = "JSON/Halo5/Stats/Lifetime/campaign-service-record.schema.json";
public const string CustomServiceRecordJsonPath = "JSON/Halo5/Stats/Lifetime/custom-service-record.json";
public const string CustomServiceRecordJsonSchemaPath = "JSON/Halo5/Stats/Lifetime/custom-service-record.schema.json";
public const string WarzoneServiceRecordJsonPath = "JSON/Halo5/Stats/Lifetime/warzone-service-record.json";
public const string WarzoneServiceRecordJsonSchemaPath = "JSON/Halo5/Stats/Lifetime/warzone-service-record.schema.json";
public const string MatchesJsonPath = "JSON/Halo5/Stats/matches.json";
public const string MatchesJsonSchemaPath = "JSON/Halo5/Stats/matches.schema.json";
public const string LeaderboardJsonPath = "JSON/Halo5/Stats/leaderboard.json";
public const string LeaderboardJsonSchemaPath = "JSON/Halo5/Stats/leaderboard.schema.json";
public const string UserGeneratedContentGameVariantsJsonPath = "JSON/Halo5/UserGeneratedContent/game-variants.json";
public const string UserGeneratedContentGameVariantsJsonSchemaPath = "JSON/Halo5/UserGeneratedContent/game-variants.schema.json";
public const string UserGeneratedContentMapVariantsJsonPath = "JSON/Halo5/UserGeneratedContent/map-variants.json";
public const string UserGeneratedContentMapVariantsJsonSchemaPath = "JSON/Halo5/UserGeneratedContent/map-variants.schema.json";
public const string UserGeneratedContentGameVariantJsonPath = "JSON/Halo5/UserGeneratedContent/game-variant.json";
public const string UserGeneratedContentGameVariantJsonSchemaPath = "JSON/Halo5/UserGeneratedContent/game-variant.schema.json";
public const string UserGeneratedContentMapVariantJsonPath = "JSON/Halo5/UserGeneratedContent/map-variant.json";
public const string UserGeneratedContentMapVariantJsonSchemaPath = "JSON/Halo5/UserGeneratedContent/map-variant.schema.json";
}
}