mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-19 13:35:10 +00:00
## About The Pull Request Emergency shuttles now: - Display occupancy limits and prerequisites - Has their own folder that is split into several subfiles - Have documentation for a few variables ## Why It's Good For The Game  ## Changelog 🆑 qol: Emergency shuttle now gracefully display occupancy limits and prerequisites in the communication console. /🆑
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)"
|