Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cargo Gift Event: Add chance for toy boxes, party supplies, art supplies, variety instrument crates or plushie crates #32228

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 14 additions & 9 deletions Resources/Locale/en-US/station-events/events/cargo-gifts.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,19 @@ cargo-gift-dest-janitor = Service Dept
cargo-gift-dest-med = Medical Dept
cargo-gift-dest-sec = Security Dept

cargo-gift-pizza-small = A small pizza party
cargo-gift-pizza-large = A large pizza party
cargo-gift-pizza-small = a small pizza party
cargo-gift-pizza-large = a large pizza party

cargo-gift-eng = Repair Materials
cargo-gift-vending = Vending machines refills
cargo-gift-cleaning = Cleaning equipment
cargo-gift-medical-supply = Medical supplies
cargo-gift-space-protection = Space Hazard Protection
cargo-gift-eng = repair materials
cargo-gift-vending = vending machines refills
cargo-gift-cleaning = cleaning equipment
cargo-gift-medical-supply = medical supplies
cargo-gift-space-protection = space hazard protection
cargo-gift-fire-protection = Fire Protection
cargo-gift-security-guns = Lethal Weapons
cargo-gift-security-riot = Riot Gear
cargo-gift-security-guns = lethal weapons
cargo-gift-security-riot = riot gear
cargo-gift-fun-plushies = a crate of plushies
cargo-gift-fun-instruments = fun instruments
cargo-gift-art-supplies = art supplies
cargo-gift-party-supplies = party supplies
cargo-gift-toy-box = a crate of toys
80 changes: 80 additions & 0 deletions Resources/Prototypes/GameRules/cargo_gifts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,11 @@
- id: GiftsSecurityRiot
- id: GiftsSpacingSupplies
- id: GiftsVendingRestock
- id: GiftsFunPlushie
- id: GiftsFunInstruments
- id: GiftsArtSupplies
- id: GiftsPartySupplies
- id: GiftsToyBox

# Game Rules

Expand Down Expand Up @@ -213,3 +218,78 @@
SecurityRiot: 2
SecurityRestraints: 2
SecurityNonLethal: 2

- type: entity
id: GiftsFunPlushie
parent: CargoGiftsBase
components:
- type: StationEvent
weight: 1
duration: 120
earliestStart: 30
minimumPlayers: 20
- type: CargoGiftsRule
description: cargo-gift-fun-plushies
dest: cargo-gift-dest-bar
gifts:
FunPlushies: 2

- type: entity
id: GiftsFunInstruments
parent: CargoGiftsBase
components:
- type: StationEvent
weight: 1
duration: 120
earliestStart: 30
minimumPlayers: 20
- type: CargoGiftsRule
description: cargo-gift-fun-instruments
dest: cargo-gift-dest-bar
gifts:
FunInstrumentsVariety: 1

- type: entity
id: GiftsArtSupplies
parent: CargoGiftsBase
components:
- type: StationEvent
weight: 1
duration: 120
earliestStart: 30
minimumPlayers: 20
- type: CargoGiftsRule
description: cargo-gift-art-supplies
dest: cargo-gift-dest-bar
gifts:
FunArtSupplies: 2

- type: entity
id: GiftsPartySupplies
parent: CargoGiftsBase
components:
- type: StationEvent
weight: 1
duration: 120
earliestStart: 30
minimumPlayers: 20
- type: CargoGiftsRule
description: cargo-gift-party-supplies
dest: cargo-gift-dest-bar
gifts:
FunParty: 1

- type: entity
id: GiftsToyBox
parent: CargoGiftsBase
components:
- type: StationEvent
weight: 1
duration: 120
earliestStart: 30
minimumPlayers: 20
- type: CargoGiftsRule
description: cargo-gift-toy-box
dest: cargo-gift-dest-bar
gifts:
FunToyBox: 1
Loading