-
Notifications
You must be signed in to change notification settings - Fork 0
/
Config.cs
58 lines (43 loc) · 2 KB
/
Config.cs
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
using Neuron.Core.Meta;
using Syml;
using System;
using System.ComponentModel;
namespace SCPExpansionPack
{
[Automatic]
[Serializable]
[DocumentSection("SCP Expansion Pack Settings")]
public class Config : IDocumentSection
{
[Description("Is new coin logic enabled?")]
public bool isCoinEnabled { get; set; } = true;
[Description("For how long doors should remain closed? (seconds)")]
public int coinDuration { get; set; } = 8;
[Description("Is automated nuke enabled?")]
public bool isNukeEnabled { get; set; } = true;
[Description("After how much time should it turn on? (seconds)")]
public int nukeDelay { get; set; } = 1200;
[Description("Can guards escape?")]
public bool guardsEscape { get; set; } = true;
[Description("Should 096 target notification appear?")]
public bool targetNotification { get; set; } = true;
[Description("Are powershortages enabled?")]
public bool powerShortageEnabled { get; set; } = true;
[Description("Minimum time of blackout (seconds)")]
public int minBlackout { get; set; } = 0;
[Description("Maximum time of blackout (seconds)")]
public int maxBlackout { get; set; } = 3;
[Description("Initial delay of first blackout (seconds)")]
public int initialBlackoutDelay { get; set; } = 300;
[Description("Min time between next blackout (seconds)")]
public int minBlackoutDelay { get; set; } = 90;
[Description("Max time between next blackout (seconds)")]
public int maxBlackoutDelay { get; set; } = 180;
[Description("Chance of blackouts to be enabled in certain round. (0-100)")]
public int blackoutChance { get; set; } = 15;
[Description("Enable Cassie Message: Nuke?")]
public bool enabledCassieNuke { get; set; } = true;
[Description("Enable Cassie Message: Blackout?")]
public bool enabledCassieBlackout { get; set; } = true;
}
}