-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Argenti to the Security Loadout. (#135)
<!-- This is a semi-strict format, you can add/remove sections as needed but the order/format should be kept the same Remove these comments before submitting --> # Description <!-- Explain this PR in as much detail as applicable Some example prompts to consider: How might this affect the game? The codebase? What might be some alternatives to this? How/Who does this benefit/hurt [the game/codebase]? --> Adds a lethal and non-lethal Argenti for the security loadout, adds missing magazines to the ammofab. --- # Changelog <!-- You can add an author after the `:cl:` to change the name that appears in the changelog (ex: `:cl: Death`) Leaving it blank will default to your GitHub display name This includes all available types for the changelog --> :cl: - add: Added security issued Argentis with lethal and non-lethal options into the security loadout. Rootin' tootin' cowboy shootin'! - add: Added recipes for the magazines for the salvage rifles into the ammo fabricator. --------- Co-authored-by: Rosycup <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>
- Loading branch information
Showing
4 changed files
with
123 additions
and
2 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
23 changes: 23 additions & 0 deletions
23
Resources/Prototypes/_DEN/Entities/Objects/Weapons/Guns/Revolvers/revolvers.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,23 @@ | ||
- type: entity | ||
parent: WeaponRevolverArgenti | ||
id: WeaponRevolverArgentiSecurity | ||
description: The military grade Argenti Type 20 revolver. Manufactured by Silver Industries. While the design with expanded cylinder is quite ancient, the right gunslinger will know how to utilise it well. Uses .20 rifle ammo. | ||
The serial number on the handguard marks this gun as belonging to an NT Security Officer. | ||
components: | ||
- type: GuideHelp | ||
guides: [ SecurityWeapons ] | ||
|
||
- type: entity | ||
parent: WeaponRevolverArgenti | ||
id: WeaponRevolverArgentiNonLethalSecurity | ||
suffix: Non-lethal | ||
description: The military grade Argenti Type 20 revolver. Manufactured by Silver Industries. While the design with expanded cylinder is quite ancient, the right gunslinger will know how to utilise it well. Comes with .20 rubber rifle ammo. | ||
The serial number on the handguard marks this gun as belonging to an NT Security Officer. | ||
components: | ||
- type: RevolverAmmoProvider | ||
capacity: 8 | ||
proto: CartridgeRifleRubber | ||
chambers: [ True, True, True, True, True, True, True, True ] | ||
ammoSlots: [ null, null, null, null, null, null, null, null ] | ||
- type: GuideHelp | ||
guides: [ SecurityWeapons ] |
94 changes: 94 additions & 0 deletions
94
Resources/Prototypes/_DEN/Loadouts/Jobs/Security/uncategorized.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,94 @@ | ||
- type: loadout | ||
id: LoadoutSpeedLoaderRifleHeavy | ||
category: JobsSecurityAUncategorized | ||
cost: 2 | ||
exclusive: true | ||
requirements: | ||
- !type:CharacterDepartmentTimeRequirement | ||
department: Security | ||
min: 3600 # 1 hours | ||
- !type:CharacterItemGroupRequirement | ||
group: LoadoutSecurityEquipment | ||
- !type:CharacterDepartmentRequirement | ||
departments: | ||
- Security | ||
items: | ||
- SpeedLoaderRifleHeavy | ||
|
||
- type: loadout | ||
id: LoadoutSpeedLoaderRifleHeavySpare | ||
category: JobsSecurityAUncategorized | ||
cost: 4 | ||
exclusive: true | ||
requirements: | ||
- !type:CharacterDepartmentTimeRequirement | ||
department: Security | ||
min: 3600 # 1 hours | ||
- !type:CharacterItemGroupRequirement | ||
group: LoadoutSecurityEquipment | ||
- !type:CharacterDepartmentRequirement | ||
departments: | ||
- Security | ||
items: | ||
- SpeedLoaderRifleHeavy | ||
|
||
- type: loadout | ||
id: LoadoutSpeedLoaderRifleHeavyRubber | ||
category: JobsSecurityAUncategorized | ||
cost: 2 | ||
exclusive: true | ||
requirements: | ||
- !type:CharacterItemGroupRequirement | ||
group: LoadoutSecurityEquipment | ||
- !type:CharacterDepartmentRequirement | ||
departments: | ||
- Security | ||
items: | ||
- SpeedLoaderRifleHeavyRubber | ||
|
||
- type: loadout | ||
id: LoadoutSpeedLoaderRifleHeavyRubberSpare | ||
category: JobsSecurityAUncategorized | ||
cost: 4 | ||
exclusive: true | ||
requirements: | ||
- !type:CharacterItemGroupRequirement | ||
group: LoadoutSecurityEquipment | ||
- !type:CharacterDepartmentRequirement | ||
departments: | ||
- Security | ||
items: | ||
- SpeedLoaderRifleHeavyRubber | ||
|
||
- type: loadout | ||
id: LoadoutSecurityArgenti | ||
category: JobsSecurityAUncategorized | ||
cost: 0 | ||
canBeHeirloom: true | ||
guideEntry: SecurityWeapons | ||
requirements: | ||
- !type:CharacterDepartmentTimeRequirement | ||
department: Security | ||
min: 3600 # 1 hours | ||
- !type:CharacterItemGroupRequirement | ||
group: LoadoutSecurityWeapons | ||
- !type:CharacterDepartmentRequirement | ||
departments: | ||
- Security | ||
items: | ||
- WeaponRevolverArgentiSecurity | ||
|
||
- type: loadout | ||
id: LoadoutSecurityArgentiNonLethal | ||
category: JobsSecurityAUncategorized | ||
cost: 0 | ||
canBeHeirloom: true | ||
guideEntry: SecurityWeapons | ||
requirements: | ||
- !type:CharacterItemGroupRequirement | ||
group: LoadoutSecurityWeapons | ||
- !type:CharacterDepartmentRequirement | ||
departments: | ||
- Security | ||
items: | ||
- WeaponRevolverArgentiNonLethalSecurity |
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 |
---|---|---|
|
@@ -147,4 +147,4 @@ | |
magState: rubber | ||
steps: 9 | ||
zeroVisible: false | ||
- type: Appearance | ||
- type: Appearance |