-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Traitor/Detective Item + Changes: Upgradable Armour and Cheaper Weara…
…ble TC Cost (#10) ## About the PR Added a new Upgrade Kit that can be used on armour for 4 seconds to upgrade it. Base Armour Vest has been reduced from 50% to 20%, Blunt/Slash is down from 30% to 10%. Upgraded Armour Vest has been kept at 50% with slightly increased explosion. Wearable Traitor Items have been mostly decreased including Magboots, No Slips and Hard Suit. ## Why / Balance Gives the Detective and Traitor a chance to upgrade their armour. This takes either most TC for traitors, and all points for Detectives at round start. Armour damage values were balanced around the fact that using something like a shotgun point blank gave too much time for someone to react taking 4 full blasts. This makes no sense as Traitors thrive on catching people off guard. Gun fights were going on for too long (and as much as I like that...), this should make all gun fights alot more intense and quicker. MagBoots and Noslips were blatantly underused and not worth. MagBoots are an obvious, slow but cheap version of no slips. Possible removal of MagBoots but I want to keep them to see how things fair. ## Technical details Used the construction component like for CHIMP handcannons to upgrade them. Added both versions for Detective and Traitors as separate sections in sss_uplink.yml. Changed Telecrystal Values in sss_uplink.yml ## Media ![image](https://github.com/user-attachments/assets/b62230e4-4169-4750-bb73-4126934df2e6) ## Requirements - [X] I have read and am following the [Pull Request and Changelog Guidelines](https://docs.spacestation14.com/en/general-development/codebase-info/pull-request-guidelines.html). - [X] I have added media to this PR or it does not require an ingame showcase. <!-- You should understand that not following the above may get your PR closed at maintainer’s discretion --> ## Breaking changes N/A **Changelog** :cl: - add: Armour Upgrade Kit for Detectives (2TC) and Terrorists (3TC) - tweak: Starting Armour Vest is now 20% Pierce and 10% Blunt/Slash - tweak: Syndicate Hardsuit Price is now 3TC from 8TC - tweak: No Slips is now 2TC from 4TC - tweak: Syndicate MagBoots is now 1TC from 4TC
- Loading branch information
Showing
6 changed files
with
94 additions
and
3 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,2 +1,5 @@ | ||
uplink-carp-box-name = Dehydrated Carp Box | ||
uplink-carp-box-desc = Box filled with 4 dehydrated carps. Make sure your friends pet it as well! | ||
uplink-armour-upgrade-name = Armour Upgrade Kit | ||
uplink-armour-upgrade-desc = An armour upgrade kit. Use on your armour to upgrade the protection. Armour will drop if equipped! |
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
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
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
13 changes: 13 additions & 0 deletions
13
Resources/Prototypes/_SSS/Recipes/Construction/Graphs/Clothing/suspicion_clothing.yml
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,13 @@ | ||
- type: constructionGraph | ||
id: UpgradeClothingOuterVestWebMercSuspicion | ||
start: start | ||
graph: | ||
- node: start | ||
edges: | ||
- to: upgraded | ||
steps: | ||
- tag: ClothingOuterVestWebMercSuspicionUpgradeKit | ||
doAfter: 4 | ||
|
||
- node: upgraded | ||
entity: ClothingOuterVestWebMercSuspicionUpgraded |
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,2 @@ | ||
- type: Tag | ||
id: ClothingOuterVestWebMercSuspicionUpgradeKit |