This repository was archived by the owner on Jan 5, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfig.cs
More file actions
57 lines (49 loc) · 1.61 KB
/
Config.cs
File metadata and controls
57 lines (49 loc) · 1.61 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
using System.ComponentModel;
using Exiled.API.Enums;
using Exiled.API.Interfaces;
namespace SCP1162;
public class Config : IConfig {
[Description("Is the plugin enabled?")]
public bool IsEnabled { get; set; } = true;
[Description("Should debug messages be displayed?")]
public bool Debug { get; set; } = false;
[Description("Use Hints instead of Broadcast?")]
public bool UseHints { get; set; } = true;
[Description("Change the message that displays when you drop an item through SCP-1162.")]
public string ItemDropMessage { get; set; } =
"<i>You try to drop the item through <color=yellow>SCP-1162</color> to get another...</i>";
public ushort ItemDropMessageDuration { get; set; } = 5;
[Description("Room used for SCP-1162.")]
public RoomType RoomType { get; set; } = RoomType.Lcz173;
[Description("The list of item chances.")]
public List<ItemType> Chances { get; set; } = [
ItemType.KeycardO5,
ItemType.SCP500,
ItemType.MicroHID,
ItemType.KeycardMTFCaptain,
ItemType.KeycardContainmentEngineer,
ItemType.SCP268,
ItemType.GunCOM15,
ItemType.SCP207,
ItemType.Adrenaline,
ItemType.GunCOM18,
ItemType.KeycardFacilityManager,
ItemType.Medkit,
ItemType.KeycardMTFOperative,
ItemType.KeycardGuard,
ItemType.GrenadeHE,
ItemType.KeycardZoneManager,
ItemType.KeycardGuard,
ItemType.Radio,
ItemType.Ammo9x19,
ItemType.Ammo12gauge,
ItemType.Ammo44cal,
ItemType.Ammo556x45,
ItemType.Ammo762x39,
ItemType.GrenadeFlash,
ItemType.KeycardScientist,
ItemType.KeycardJanitor,
ItemType.Coin,
ItemType.Flashlight
];
}