-
Notifications
You must be signed in to change notification settings - Fork 360
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Velcroboy
committed
Feb 3, 2024
1 parent
1e416a7
commit 06f325d
Showing
3 changed files
with
165 additions
and
10 deletions.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
Resources/Locale/en-US/deltav/navmap-beacons/station-beacons.ftl
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,28 @@ | ||
station-beacon-epistemics = Epistemics | ||
station-beacon-logistics = Logistics | ||
station-beacon-logistics-reception = Logistics Reception | ||
station-beacon-lo = LO's Room | ||
station-beacon-conference-room = Conference Room | ||
station-beacon-virology = Virology | ||
station-beacon-metempsychosis = Cloning | ||
station-beacon-exam = Exam Room | ||
station-beacon-med-outpost = Medical Outpost | ||
station-beacon-psych-office = Psychologist's Office | ||
station-beacon-glimmer-prober = Glimmer Prober Room | ||
station-beacon-mailroom = Mailroom | ||
station-beacon-engi-outpost = Engineering Outpost | ||
station-beacon-janitor-office = Janitor's Office | ||
station-beacon-reporter-office = Reporter's Office | ||
station-beacon-server-room = Server Room | ||
station-beacon-boxing-ring = Boxing Ring | ||
station-beacon-park = Park | ||
station-beacon-escape-pod = Escape Pod |
127 changes: 127 additions & 0 deletions
127
Resources/Prototypes/DeltaV/Entities/Objects/Devices/station_beacon.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,127 @@ | ||
#Command | ||
- type: entity | ||
parent: DefaultStationBeaconCommand | ||
id: DefaultStationBeaconConferenceRoom | ||
suffix: Conference Room | ||
components: | ||
- type: NavMapBeacon | ||
text: station-beacon-conference-room | ||
|
||
#Medical | ||
- type: entity | ||
parent: DefaultStationBeaconMedical | ||
id: DefaultStationBeaconVirology | ||
suffix: Virology | ||
components: | ||
- type: NavMapBeacon | ||
text: station-beacon-virology | ||
|
||
- type: entity | ||
parent: DefaultStationBeaconMedical | ||
id: DefaultStationBeaconMetempsychosis | ||
suffix: Cloning #Metempsychosis | ||
components: | ||
- type: NavMapBeacon | ||
text: station-beacon-metempsychosis #change locale file when metem added | ||
|
||
- type: entity | ||
parent: DefaultStationBeaconMedical | ||
id: DefaultStationBeaconExam | ||
suffix: Exam Room | ||
components: | ||
- type: NavMapBeacon | ||
text: station-beacon-exam | ||
|
||
- type: entity | ||
parent: DefaultStationBeaconMedical | ||
id: DefaultStationBeaconMedicalOutpost | ||
suffix: Medical Outpost | ||
components: | ||
- type: NavMapBeacon | ||
text: station-beacon-med-outpost | ||
|
||
- type: entity | ||
parent: DefaultStationBeaconMedical | ||
id: DefaultStationBeaconPsychologist | ||
suffix: Psychologist's Office | ||
components: | ||
- type: NavMapBeacon | ||
text: station-beacon-psych-office | ||
|
||
#Epistemics | ||
- type: entity | ||
parent: DefaultStationBeaconScience | ||
id: DefaultStationBeaconProberRoom | ||
suffix: Glimmer Prober Room | ||
components: | ||
- type: NavMapBeacon | ||
text: station-beacon-glimmer-prober | ||
|
||
#Logistics | ||
- type: entity | ||
parent: DefaultStationBeaconSupply | ||
id: DefaultStationBeaconMailroom | ||
suffix: Mailroom | ||
components: | ||
- type: NavMapBeacon | ||
text: station-beacon-mailroom | ||
|
||
#Engineering | ||
- type: entity | ||
parent: DefaultStationBeaconEngineering | ||
id: DefaultStationBeaconEngineeringOutpost | ||
suffix: Engineering Outpost | ||
components: | ||
- type: NavMapBeacon | ||
text: station-beacon-engi-outpost | ||
|
||
#Service | ||
- type: entity | ||
parent: DefaultStationBeaconService | ||
id: DefaultStationBeaconJanitorsOffice | ||
suffix: Janitor's Office | ||
components: | ||
- type: NavMapBeacon | ||
text: station-beacon-janitor-office | ||
|
||
- type: entity | ||
parent: DefaultStationBeaconService | ||
id: DefaultStationBeaconReportersOffice | ||
suffix: Reporter's Office | ||
components: | ||
- type: NavMapBeacon | ||
text: station-beacon-reporter-office | ||
|
||
#Surveilance | ||
- type: entity | ||
parent: DefaultStationBeaconAI | ||
id: DefaultStationBeaconServerRoom | ||
suffix: Server Room | ||
components: | ||
- type: NavMapBeacon | ||
text: station-beacon-server-room | ||
|
||
#General | ||
- type: entity | ||
parent: DefaultStationBeacon | ||
id: DefaultStationBeaconBoxing | ||
suffix: Boxing Ring | ||
components: | ||
- type: NavMapBeacon | ||
text: station-beacon-boxing-ring | ||
|
||
- type: entity | ||
parent: DefaultStationBeacon | ||
id: DefaultStationBeaconPark | ||
suffix: Park | ||
components: | ||
- type: NavMapBeacon | ||
text: station-beacon-park | ||
|
||
- type: entity | ||
parent: DefaultStationBeacon | ||
id: DefaultStationBeaconEscapePod | ||
suffix: Escape Pod | ||
components: | ||
- type: NavMapBeacon | ||
text: station-beacon-escape-pod |
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