-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfig.cs
More file actions
28 lines (23 loc) · 989 Bytes
/
Config.cs
File metadata and controls
28 lines (23 loc) · 989 Bytes
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
using System.ComponentModel;
using Exiled.API.Interfaces;
using MapGeneration.Holidays;
using System.Collections.Generic;
namespace Scp3114SpawnControl
{
public class Config : IConfig
{
public bool IsEnabled { get; set; } = true;
public bool Debug { get; set; } = false;
[Description("Chance for SCP-3114 to spawn (1 is default Scp Spawn Chance)")]
public float SpawnChance { get; set; } = 1;
[Description("Minimum number of humans required for SCP-3114 to spawn.")]
public int MinimumHuman { get; set; } = 5;
[Description("SCP-3114 spawn chance not chancing by this plugin if any of the specified holiday types are currently active.")]
public List<HolidayType> BlockedHolidayTypes { get; set; } =
[
HolidayType.Halloween,
];
[Description("It prevents SCP 3114 from being spectated by spectators.")]
public bool Make3114UnSpectatable { get; set; } = false;
}
}