Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make pencil shuttle cmag only #27958

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
25 changes: 13 additions & 12 deletions code/modules/supply/supply_packs/pack_shuttle.dm
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,6 @@
cost = 2500
template = /datum/map_template/shuttle/emergency/old

// this one isn't great but it isn't horrible either

/datum/supply_packs/abstract/shuttle/cramped
cost = 3750
template = /datum/map_template/shuttle/emergency/cramped

/datum/supply_packs/abstract/shuttle/military
cost = 3500
template = /datum/map_template/shuttle/emergency/military
Expand Down Expand Up @@ -134,12 +128,6 @@

// these, otoh, have some pretty silly features, and are hidden behind emag

/datum/supply_packs/abstract/shuttle/clown
speed_factor = 0.75 // this one's a little slower, enjoy your ride!
cmag_hidden = TRUE
cost = 500 // let the clown have it
template = /datum/map_template/shuttle/emergency/clown

/datum/supply_packs/abstract/shuttle/narnar
cost = 3000
hidden = TRUE
Expand All @@ -149,3 +137,16 @@
hidden = TRUE
cost = 4000
template = /datum/map_template/shuttle/emergency/jungle

// these are hidden behind cmag

/datum/supply_packs/abstract/shuttle/clown
speed_factor = 0.75 // this one's a little slower, enjoy your ride!
cmag_hidden = TRUE
cost = 500 // let the clown have it
template = /datum/map_template/shuttle/emergency/clown

/datum/supply_packs/abstract/shuttle/cramped
cost = 3750
cmag_hidden = TRUE
template = /datum/map_template/shuttle/emergency/cramped
Loading