mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-27 01:21:30 +00:00
* Emergency shuttle information display improvements * Update emergency.dm * Update emergency.dm * Modular shuttles --------- Co-authored-by: Tim <timothymtorres@gmail.com> Co-authored-by: Giz <13398309+vinylspiders@users.noreply.github.com>
63 lines
1.4 KiB
Plaintext
63 lines
1.4 KiB
Plaintext
// LABOUR SHUTTLES
|
|
/datum/map_template/shuttle/labour
|
|
port_id = "labour"
|
|
who_can_purchase = null
|
|
|
|
/datum/map_template/shuttle/labour/box
|
|
suffix = "box"
|
|
name = "labour shuttle (Box)"
|
|
|
|
/datum/map_template/shuttle/labour/generic
|
|
suffix = "generic"
|
|
name = "labour shuttle (Generic)"
|
|
|
|
/datum/map_template/shuttle/labour/delta
|
|
suffix = "delta"
|
|
name = "labour shuttle (Delta)"
|
|
|
|
/datum/map_template/shuttle/labour/kilo
|
|
suffix = "kilo"
|
|
name = "labour shuttle (Kilo)"
|
|
|
|
// MINING SHUTTLES
|
|
/datum/map_template/shuttle/mining
|
|
port_id = "mining"
|
|
who_can_purchase = null
|
|
|
|
/datum/map_template/shuttle/mining/box
|
|
suffix = "box"
|
|
name = "mining shuttle (Box)"
|
|
|
|
/datum/map_template/shuttle/mining/delta
|
|
suffix = "delta"
|
|
name = "mining shuttle (Delta)"
|
|
|
|
/datum/map_template/shuttle/mining/kilo
|
|
suffix = "kilo"
|
|
name = "mining shuttle (Kilo)"
|
|
|
|
/datum/map_template/shuttle/mining/large
|
|
suffix = "large"
|
|
name = "mining shuttle (Large)"
|
|
|
|
/datum/map_template/shuttle/mining/northstar
|
|
suffix = "northstar"
|
|
name = "mining shuttle (North Star)"
|
|
|
|
// MINING COMMON SHUTTLES
|
|
/datum/map_template/shuttle/mining_common
|
|
port_id = "mining_common"
|
|
who_can_purchase = null
|
|
|
|
/datum/map_template/shuttle/mining_common/meta
|
|
suffix = "meta"
|
|
name = "lavaland shuttle (Meta)"
|
|
|
|
/datum/map_template/shuttle/mining_common/kilo
|
|
suffix = "kilo"
|
|
name = "lavaland shuttle (Kilo)"
|
|
|
|
/datum/map_template/shuttle/mining_common/northstar
|
|
suffix = "northstar"
|
|
name = "lavaland shuttle (North Star)"
|