Skip to content
Open
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
1 change: 1 addition & 0 deletions code/__DEFINES/__starfly.dm
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@

#define STARFLY13_MODULE_ADMIN_VERB_FREEZE_ENABLED
#define STARFLY13_MODULE_CRYOSLEEP_SYMPTOMS_FLAG_ENABLED
#define STARFLY13_MODULE_HEGEMONY_STATION_ENABLED
#define STARFLY13_MODULE_OXYGEN_DAMAGE_MOD_ENABLED
#define STARFLY13_MODULE_PATCH_UPSTREAM_ENABLED
#define STARFLY13_MODULE_RKSH_UNATHI_ENABLED
Expand Down
37 changes: 37 additions & 0 deletions modular_starfly/modules/hegemony_station/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Hegemony-Station

Module ID: `HEGEMONY_STATION`

## Description

Provides the Hegemony Station.

## TG Proc/File Changes

- N/A
<!-- If you edited any core procs, you should list them here. You should specify the files and procs you changed.
E.g:
- `code/modules/mob/living.dm`: `proc/overriden_proc`, `var/overriden_var`
-->

## Modular Overrides

- N/A
<!-- If you added a new modular override (file or code-wise) for your module, you should list it here. Code files should specify what procs they changed, in case of multiple modules using the same file.
E.g:
- `modular_starfly/master_files/sound/my_cool_sound.ogg`
- `modular_starfly/master_files/code/my_modular_override.dm`: `proc/overriden_proc`, `var/overriden_var`
-->

## Defines

- N/A
<!-- If you needed to add any defines, mention the files you added those defines in, along with the name of the defines. -->

## Included files that are not contained in this module

- N/A

### Credits:

- Standard created the content of this module.
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE
"a" = (
/obj/structure/elevator_platform,
/turf/template_noop,
/area/template_noop)
"c" = (
/obj/structure/elevator_platform,
/obj/machinery/elevator_floor_button{
pixel_y = 25
},
/turf/template_noop,
/area/template_noop)
"k" = (
/obj/structure/elevator_platform,
/obj/machinery/status_display/elevator{
pixel_y = 32
},
/turf/template_noop,
/area/template_noop)
"E" = (
/obj/structure/elevator_platform,
/obj/machinery/light/directional/east,
/turf/template_noop,
/area/template_noop)
"K" = (
/obj/structure/elevator_platform,
/obj/machinery/light/floor,
/turf/template_noop,
/area/template_noop)
"P" = (
/obj/structure/elevator_platform,
/obj/machinery/status_display/elevator{
pixel_y = -32
},
/turf/template_noop,
/area/template_noop)

(1,1,1) = {"
c
a
a
"}
(2,1,1) = {"
k
K
P
"}
(3,1,1) = {"
E
a
E
"}
Loading
Loading