Skip to content

Commit

Permalink
Traitor Item: Dehydrated Carp Box (#9)
Browse files Browse the repository at this point in the history
<!-- Guidelines:
https://docs.spacestation14.io/en/getting-started/pr-guideline -->

## About the PR
Added carp box traitor item

## Why / Balance
Fishy teehee.

4 Carps would be quite devestating usually, but in a game mode where
EVERYONE is packing. A grenade could probably do so much more damage if
done right than 4 carps. I am leaning to either 2TC or 3TC. Keeping it
at 3TC for now unless player feedback says otherwise.

## Technical details
added new store_items.yml in prototypes for all new SSS items, also
added a locale named store_items.ftl. If there is anything I have missed
let me know regarding locales.

## Media

![image](https://github.com/user-attachments/assets/98e71216-82f3-44ac-bb86-c06849eaa745)

## 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.

## Breaking changes
N/A

**Changelog**
:cl:
- add: Added Dehydrated Carp Box with 4 carps for 3TC. Fish!
  • Loading branch information
Simyon264 authored Oct 21, 2024
2 parents e87624b + b1adf4f commit 6f2915d
Show file tree
Hide file tree
Showing 5 changed files with 50 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Resources/Locale/en-US/_SSS/store_items.ftl
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
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!
5 changes: 5 additions & 0 deletions Resources/Prototypes/_SSS/Catalog/categories.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@
name: store-category-disruption
priority: 5

- type: storeCategory
id: SSSTraitorAllies
name: store-category-allies
priority: 6

### SSS Detective
- type: storeCategory
id: SSSDetectiveWeapons
Expand Down
10 changes: 10 additions & 0 deletions Resources/Prototypes/_SSS/Catalog/sss_uplink.yml
Original file line number Diff line number Diff line change
Expand Up @@ -364,6 +364,16 @@
categories:
- SSSTraitorWearables

- type: listing
id: UplinkCarpBoxSSS
name: uplink-carp-box-name
description: uplink-carp-box-desc
productEntity: BoxDehydratedCarp
cost:
Telecrystal: 3
categories:
- SSSTraitorAllies

# DETECTIVE WEAPONS

- type: listing
Expand Down
1 change: 1 addition & 0 deletions Resources/Prototypes/_SSS/Objects/implants.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
- SSSTraitorWearables
- SSSTraitorChemicals
- SSSTraitorDisruption
- SSSTraitorAllies

- type: entity
parent: UplinkImplant
Expand Down
32 changes: 32 additions & 0 deletions Resources/Prototypes/_SSS/Objects/store_items.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
- type: entity
parent: BoxCardboard
id: BoxDehydratedCarp
name: dehydrated carp box
description: uplink-carp-box-desc
suffix: Traitor
components:
- type: StorageFill
contents:
- id: DehydratedSpaceCarp
- id: DehydratedSpaceCarp
- id: DehydratedSpaceCarp
- id: DehydratedSpaceCarp
- id: WaterChemistryBottle
- type: Sprite
layers:
- state: box_of_doom

- type: entity
id: WaterChemistryBottle
suffix: water
parent: BaseChemistryBottleFilled
components:
- type: Label
currentLabel: reagent-name-water
- type: SolutionContainerManager
solutions:
drink:
maxVol: 30
reagents:
- ReagentId: Water
Quantity: 30

0 comments on commit 6f2915d

Please sign in to comment.