-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The zombie hotline opens up calls for all SCPs
Pat give me the unbased UGA member tag
- Loading branch information
1 parent
004ad84
commit 15f6073
Showing
2 changed files
with
17 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,19 @@ | ||
using System.ComponentModel; | ||
using Exiled.API.Interfaces; | ||
using System.Collections.Generic; | ||
|
||
namespace ZombieSuicideHotline | ||
{ | ||
public class Config : IConfig { | ||
[Description("Is the plugin enabled?")] | ||
public bool IsEnabled { get; set; } = true; | ||
|
||
[Description("How much do Teslas and Drops deal to zombies?")] | ||
public float ZombieDmg { get; set; } = 0; | ||
[Description("A list of classes that should beable to call the suicide hotline and what precent of their health is done")] | ||
public Dictionary<string, float> HotlineCalls { get; set; } = new Dictionary<string, float> | ||
{ | ||
{ | ||
"Scp0492", 0.5f | ||
}, | ||
}; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters