-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
almightylks
committed
Nov 15, 2020
1 parent
811b219
commit b4d70a4
Showing
1 changed file
with
41 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# SCP-008 | ||
|
||
A simple SCP SL [Synapse](https://github.com/SynapseSL/Synapse/) Plugin to bring SCP-008 into the game. | ||
In addition to SCP-008, this plugin shall also offer some SCP-049 utilities. | ||
|
||
--- | ||
### Configs | ||
|
||
For base-game item ids, checkout [DefaultItemIDs](DefaultItemIDs.md) | ||
|
||
Default config: | ||
|
||
```yaml | ||
[SCP-008] | ||
{ | ||
scp049Configs: | ||
# Chance to not one hit K.O. as SCP 049 | ||
nonOHKChance: 0 | ||
# Amount of damage in % of target's max-life when SCP 049 does not one hit K.O. | ||
nonOHKDamage: 0 | ||
# Chance of 049 infecting the target on non-one hit K.O.? | ||
infectChanceOnNonOHK: 0 | ||
scp008Configs: | ||
# Roles which can spread 008 | ||
infectingRoles: | ||
- 10 | ||
# Toggle % damage and the amount for 008's damage over time tick | ||
damagerPerTickPercentage: | ||
enabled: false | ||
amount: 0 | ||
# Toggle static damage and the amount for 008's damage over time tick | ||
damagerPerTickStatic: | ||
enabled: false | ||
amount: 0 | ||
# 008 damage per tick | ||
damagerOverTimeInterval: 2.5 | ||
# Healing items which remove SCP 008 | ||
infectionHealItems: | ||
- 17 | ||
} | ||
``` |