Skip to content

Commit

Permalink
Merge branch 'DNM-prison-colony' of https://github.com/Latentish/Ship…
Browse files Browse the repository at this point in the history
…test into DNM-prison-colony
  • Loading branch information
Latentish committed Dec 2, 2023
2 parents 4d0e64b + 36b1601 commit accfb89
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion code/modules/overmap/objects/outpost/outpost_types.dm
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
Map templates
*/

/datum/map_template/outpost
should_place_on_top = FALSE

/datum/map_template/outpost/New()
. = ..(path = "_maps/outpost/[name].dmm")

Expand All @@ -10,9 +13,11 @@
var/dock_height

/datum/map_template/outpost/elevator_test
should_place_on_top = TRUE
name = "elevator_test"

/datum/map_template/outpost/elevator_indie
should_place_on_top = TRUE
name = "elevator_indie"


Expand Down Expand Up @@ -106,7 +111,21 @@
elevator_template = /datum/map_template/outpost/elevator_test
// Uses "test" hangars.

/datum/overmap/outpost/indie_space

/* prison event */
/datum/map_template/outpost/event_prison
name = "event_prison"

/datum/overmap/outpost/outpost_prison
token_icon_state = "station_1"
main_template = /datum/map_template/outpost/event_prison
elevator_template = /datum/map_template/outpost/elevator_indie
main_level_ztraits = list(
ZTRAIT_STATION = TRUE,
ZTRAIT_SUN_TYPE = AZIMUTH,
ZTRAIT_BASETURF = /turf/open/floor/plating/dirt/jungle
)
hangar_ztraits = list(
ZTRAIT_SUN_TYPE = STATIC_EXPOSED,
ZTRAIT_BASETURF = /turf/open/floor/plating/dirt/jungle
)

0 comments on commit accfb89

Please sign in to comment.