Skip to content

Commit

Permalink
Add additional values for some settings
Browse files Browse the repository at this point in the history
  • Loading branch information
ThiconZ committed Apr 30, 2018
1 parent 0e00d07 commit 424bcaa
Showing 1 changed file with 47 additions and 5 deletions.
52 changes: 47 additions & 5 deletions Halo Online Variant Editor/Halo Online Variant Editor/Variant.cs
Original file line number Diff line number Diff line change
Expand Up @@ -561,6 +561,8 @@ public enum RespawnTimeGrowth
{
[Description("Disabled")]
Disabled = 0,
[Description("1 Second [UNSUPPORTED]")]
Seconds1 = 1,
[Description("2 Seconds")]
Seconds2 = 2,
[Description("3 Seconds")]
Expand All @@ -570,7 +572,11 @@ public enum RespawnTimeGrowth
[Description("10 Seconds")]
Seconds10 = 10,
[Description("15 Seconds")]
Seconds15 = 15
Seconds15 = 15,
[Description("20 Seconds [UNSUPPORTED]")]
Seconds20 = 20,
[Description("30 Seconds [UNSUPPORTED]")]
Seconds30 = 30
}
public enum GrenadesOnMap
{
Expand Down Expand Up @@ -885,11 +891,21 @@ public enum BombArmingTime :short
S10 = 10,
[Description("15 Seconds")]
S15 = 15,
[Description("20 Seconds [UNSUPPORTED]")]
S20 = 20,
[Description("30 Seconds")]
S30 = 30
S30 = 30,
[Description("45 Seconds [UNSUPPORTED]")]
S45 = 45,
[Description("60 Seconds [UNSUPPORTED]")]
S60 = 60,
[Description("2 Minutes [UNSUPPORTED]")]
M2 = 120
}
public enum BombDisarmingTime : short
{
[Description("Instant [UNSUPPORTED]")]
Instant = 0,
[Description("3 Seconds")]
S3 = 3,
[Description("5 Seconds")]
Expand All @@ -898,11 +914,21 @@ public enum BombDisarmingTime : short
S10 = 10,
[Description("15 Seconds")]
S15 = 15,
[Description("20 Seconds [UNSUPPORTED]")]
S20 = 20,
[Description("30 Seconds")]
S30 = 30
S30 = 30,
[Description("45 Seconds [UNSUPPORTED]")]
S45 = 45,
[Description("60 Seconds [UNSUPPORTED]")]
S60 = 60,
[Description("2 Minutes [UNSUPPORTED]")]
M2 = 120
}
public enum BombResetTime : short
{
[Description("Instant [UNSUPPORTED]")]
Instant = 0,
[Description("3 Seconds")]
S3 = 3,
[Description("5 Seconds")]
Expand All @@ -911,10 +937,16 @@ public enum BombResetTime : short
S10 = 10,
[Description("15 Seconds")]
S15 = 15,
[Description("20 Seconds [UNSUPPORTED]")]
S20 = 20,
[Description("30 Seconds")]
S30 = 30,
[Description("45 Seconds [UNSUPPORTED]")]
S45 = 45,
[Description("60 Seconds")]
S60 = 60
S60 = 60,
[Description("2 Minutes [UNSUPPORTED]")]
M2 = 120
}
public enum SuddenDeath : short
{
Expand Down Expand Up @@ -1147,8 +1179,12 @@ public enum FlagResetTime : short
S10 = 10,
[Description("15 Seconds")]
S15 = 15,
[Description("20 Seconds [UNSUPPORTED]")]
S20 = 20,
[Description("30 Seconds")]
S30 = 30,
[Description("45 Seconds [UNSUPPORTED]")]
S45 = 45,
[Description("60 Seconds")]
S60 = 60,
[Description("2 Minutes")]
Expand Down Expand Up @@ -1236,8 +1272,14 @@ public enum InitialBallDelay : short
S10 = 10,
[Description("15 Seconds")]
S15 = 15,
[Description("20 Seconds [UNSUPPORTED]")]
S20 = 20,
[Description("30 Seconds")]
S30 = 30
S30 = 30,
[Description("45 Seconds [UNSUPPORTED]")]
S45 = 45,
[Description("60 Seconds [UNSUPPORTED]")]
S60 = 60
}
public enum BallRespawnDelay : short
{
Expand Down

0 comments on commit 424bcaa

Please sign in to comment.