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

Ports Parkstation Arborum #68

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
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
108,144 changes: 108,144 additions & 0 deletions Resources/Maps/parkstation.yml

Large diffs are not rendered by default.

24 changes: 24 additions & 0 deletions Resources/Migrations/parkstationMigrations.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# 2024-03-16 # ParkStation map to the rebase.
FoodDonkpocketGondola: FoodDonkpocketPizza # This wasn't fixed with the box?
DrinkWaterJugX: DrinkWaterJug
Bluespace5: MaterialBluespace
FloorTileItemSteelFull: FloorTileItemSteel
dissolver: Oracle # To come back someday.
SiliconChargerChargePad: null
SiliconChargerIndustrial: MachineFrame
SpawnPointStationAI: ToyAi
SupersynthNyanotrasenPersonalAI: PersonalAI
VendingMachineUnderwear: VendingMachineClothing
PaintingAmericanGothic: RandomPainting
PaintingEverythingsFine: RandomPainting
PaintingCM: RandomPainting
HyperlinkBookAnomaliesArtifacts: RandomBook
ClothingOuterCoatPirateBlack: ClothingOuterCoatPirate
ClothingOuterPurpleCoat: ClothingOuterCoatGentle
ClothingOuterSuitSpaceninja: null
ClothingUnderStockings_lpink: ClothingUnderSocksCoder
ClothingUnderboxer_briefs: null
ClothingUnderbra_alt: null
ClothingUnderundershirt: null
ClothingUnderian: null
ClothingHeadHatBeretEng: ClothingHeadHatBeretEngineering
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
- PaintingRedBlueYellow
- PaintingHelloWorld
- PaintingSpoon # DeltaV Painting, see Resources/Prototypes/DeltaV/Entities/Structures/Wallmount/painting.yml
- PaintingLois # Parkstation-Paintings
chance: 1
rarePrototypes:
- PaintingSkeletonBoof
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1906,22 +1906,31 @@
sprite: Objects/Consumable/Drinks/vodkatonicglass.rsi
state: icon

# Parkstation-Betterjug-Start
- type: entity
parent: DrinkGlassBase
id: DrinkWaterJug
name: water jug
description: Stay hydrated
components:
- type: SolutionContainerVisuals
maxFillLevels: 1
emptySpriteName: empty
- type: SolutionContainerManager
solutions:
drink:
maxVol: 30
maxVol: 200
reagents:
- ReagentId: Water
Quantity: 30
- ReagentId: Water
Quantity: 200
- type: Drink
- type: Sprite
sprite: Objects/Consumable/Drinks/water.rsi
sprite: SimpleStation14/Objects/Consumable/Drinks/jug.rsi
layers:
- state: full
map: ["enum.SolutionContainerLayers.Fill"]
visible: true
# Parkstation-Betterjug-End

- type: entity
parent: DrinkGlass
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
access: [["External"]]

- type: entity
parent: AirlockExternal
parent: AirlockExternalService # Parkstation-CustomExternalAirlocks
id: AirlockExternalCargoLocked
suffix: External, Logistics, Locked # DeltaV - Logistics Department replacing Cargo
components:
Expand All @@ -108,7 +108,7 @@
layoutId: AirlockCargo

- type: entity
parent: AirlockExternal
parent: AirlockExternalEngineering # Parkstation-CustomExternalAirlocks
id: AirlockExternalEngineeringLocked
suffix: External, Engineering, Locked
components:
Expand All @@ -118,7 +118,7 @@
layoutId: AirlockEngineering

- type: entity
parent: AirlockExternal
parent: AirlockExternalAtmospherics # Parkstation-CustomExternalAirlocks
id: AirlockExternalAtmosphericsLocked
suffix: External, Atmospherics, Locked
components:
Expand Down Expand Up @@ -442,6 +442,80 @@
- type: Wires
layoutId: AirlockCommand

#Delta V: Add Airlocks
- type: entity
parent: Airlock
id: AirlockBoxerLocked
suffix: Boxer, Locked
components:
- type: AccessReader
access: [["Boxer"]]

- type: entity
parent: Airlock
id: AirlockClownLocked
suffix: Clown, Locked
components:
- type: AccessReader
access: [["Clown"]]

- type: entity
parent: Airlock
id: AirlockMimeLocked
suffix: Mime, Locked
components:
- type: AccessReader
access: [["Mime"]]

- type: entity
parent: Airlock
id: AirlockMusicianLocked
suffix: Musician, Locked
components:
- type: AccessReader
access: [["Musician"]]

- type: entity
parent: Airlock
id: AirlockReporterLocked
suffix: Reporter, Locked
components:
- type: AccessReader
access: [["Reporter"]]

- type: entity
parent: Airlock
id: AirlockLibraryLocked
suffix: Library, Locked
components:
- type: AccessReader
access: [["Library"]]

- type: entity
parent: Airlock
id: AirlockZookeeperLocked
suffix: Zookeeper, Locked
components:
- type: AccessReader
access: [["Zookeeper"]]

- type: entity
parent: AirlockExternalSalvage # Parkstation-CustomExternalAirlocks
id: AirlockExternalSalvageLocked
suffix: External, Salvage, Locked
components:
- type: AccessReader
access: [["Salvage"]]

- type: entity
parent: AirlockMedical
id: AirlockPsychologistLocked
suffix: Psychologist, Locked
components:
- type: AccessReader
access: [["Psychologist"]]
#End of Delta V

# Glass Airlocks
- type: entity
parent: AirlockGlass
Expand Down Expand Up @@ -624,8 +698,6 @@
components:
- type: AccessReader
access: [["Salvage"]]
- type: Wires
layoutId: AirlockCargo

- type: entity
parent: AirlockChemistryGlass
Expand Down
65 changes: 65 additions & 0 deletions Resources/Prototypes/Entities/Structures/Storage/paper_bin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,3 +108,68 @@
tags:
- Document
- Write

# Parkstation-PaperBin50-Start # No more than 50 for the time being.
# I mean really, look at this shit.
- type: entity
parent: PaperBin
id: PaperBin50
suffix: 50
components:
- type: Bin
initialContents:
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
- Paper
whitelist:
tags:
- Document
- Write
# Parkstation-PaperBin50-End
54 changes: 54 additions & 0 deletions Resources/Prototypes/Maps/parkstation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
- type: gameMap
id: ParkStation
mapName: 'ParkStation'
mapPath: /Maps/parkstation.yml
minPlayers: 0
stations:
parkstation:
stationProto: StandardNanotrasenStation
components:
- type: StationNameSetup
mapNameTemplate: '{0} Arborum {1}'
nameGenerator:
!type:NanotrasenNameGenerator
prefixCreator: 'TG'
- type: StationEmergencyShuttle
emergencyShuttle: /Maps/Shuttles/NTES_Kaeri.yml
- type: StationJobs
overflowJobs:
- Passenger
availableJobs:
Passenger: [ -1, -1 ]
SAI: [1, 1]
ChiefServiceSupervisor: [ 1, 1]
Bartender: [ 1, 1 ]
Botanist: [ 2, 3 ]
Boxer: [ 1, 2 ]
Chef: [ 1, 1 ]
Clown: [ 1, 1 ]
Robot: [ 2, 2 ]
Janitor: [ 2, 3 ]
Mime: [ 1, 1 ]
HeadOfPersonnel: [ 1, 1 ]
ChiefEngineer: [ 1, 1 ]
StationEngineer: [ 3, 6 ]
ChiefMedicalOfficer: [ 1, 1 ]
MailCarrier: [ 1, 2 ]
MedicalDoctor: [ 3, 6 ]
MedicalRobot: [ 1, 2 ]
Mystagogue: [ 1, 1 ]
Epistemologist: [ 2, 5 ]
HeadOfSecurity: [ 1, 1 ]
SecurityOfficer: [ 2, 4 ]
Chaplain: [ 1, 1 ]
Warden: [ 1, 1 ]
SecurityCadet: [ 3, 5 ]
Lawyer: [ 1, 2 ]
Quartermaster: [ 3, 4 ]
SalvageTechnician: [ 2, 4 ]
Musician: [1, 2]
AtmosphericTechnician: [ 1, 3 ]
ServiceWorker: [ 2, 3 ]
Reporter: [ 1, 1 ]
Psychologist: [ 1, 1 ]
Prisoner: [ 2, 2 ]
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@

- type: entity
name: Lois Spawner
id: SpawnMobLizardLois
parent: MarkerBase
components:
- type: Sprite
layers:
- state: green
- state: ai
- type: ConditionalSpawner
prototypes:
- MobLizardLois

- type: entity
name: Randall Spawner
id: SpawnMobFrogRandall
parent: MarkerBase
components:
- type: Sprite
layers:
- state: green
- state: ai
- type: ConditionalSpawner
prototypes:
- MobFrogRandall

- type: entity
name: Terrance Spawner
id: SpawnMobSlugTerrance
parent: MarkerBase
components:
- type: Sprite
layers:
- state: green
- state: ai
- type: ConditionalSpawner
prototypes:
- MobSlugTerrance
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
- type: entity
name: anomaly tracker
id: PinpointerAnomaly
parent: PinpointerBase
components:
- type: Pinpointer
component: Anomaly
mediumDistance: 24
closeDistance: 12
reachedDistance: 5
precision: 0.2
- type: Sprite
sprite: SimpleStation14/Objects/Devices/pinpointer.rsi
layers:
- state: pinpointer_anomaly
map: ["enum.PinpointerLayers.Base"]
- state: pinonnull
map: ["enum.PinpointerLayers.Screen"]

- type: entity
name: artifact tracker
id: PinpointerArtifact
parent: PinpointerBase
components:
- type: Pinpointer
component: Artifact
mediumDistance: 24
closeDistance: 12
reachedDistance: 5
precision: 0.02
- type: Sprite
sprite: SimpleStation14/Objects/Devices/pinpointer.rsi
layers:
- state: pinpointer_artifact
map: ["enum.PinpointerLayers.Base"]
- state: pinonnull
map: ["enum.PinpointerLayers.Screen"]
Loading
Loading