-
Notifications
You must be signed in to change notification settings - Fork 233
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
Steel Station, a new large station for the map rotation! #938
Changes from all commits
e7e4fea
b001a5a
0b00205
9978e56
c41f58b
9e95760
eb13ba1
3d63494
b5c95cf
1a6a8fa
417c844
cc6af25
4d39fde
01a121d
b01616e
4171a43
dee9052
ee16b8c
4bcc467
8c5dba2
1582643
ccf05cc
5e28858
62a019c
7b5258b
5a1c5d4
7691c0a
c20141e
e697395
132b996
d5dae8c
0b5094d
0be85f8
039cd8c
e844962
2ff7475
d43a622
742f5d2
0531465
37c119e
7125f9a
c178dc1
179ffa7
c99b454
3bda4d9
343d9cf
fe40090
976997e
8a8866c
7973b08
54a907a
87bc341
80eb20a
45bf5cc
bd0d07d
1436d6c
37cd2bb
9fde6f0
1ef16f4
4c41303
d904253
da38258
8a1b8d4
db76150
07e0266
9d1e6ca
9bb0145
907897b
264239d
264d11c
c8bd7eb
ca0aef8
b486dfb
3443c11
cf3c9b1
20524f2
271cab2
c8304e5
4d91284
bd56674
4fba1af
5efd77d
51e0b18
2ff900d
a3a7ae1
1402172
26fa186
e61355f
3b4a604
cf27e57
00e12a1
66b6a8a
a8c42cc
52bda6f
2066599
943fc96
5d008a3
c97566e
54d22c7
c4a6c7d
84d3577
4f1f895
a3e1acf
233dab2
8c4778e
546b59a
fd2a42f
b7e0be5
5cb3984
fd72c88
75e0401
1b3cba6
2b2ca2e
418c85f
334cd91
9f8a4bf
25c3d3a
075bb50
c73d077
8cb7540
a4abf08
a644ccf
a687000
031d8d4
eda9e41
edb730e
e5048cd
74cf4e0
6bb458c
fa071b2
0f9dc0a
950fe51
ff6ae19
6ebeb9e
9768970
02427ff
3acefc7
65cba53
5fd6f32
3be68d4
924ad83
3820f91
62e301b
900d56b
f0d7e00
d37d4ac
6c52208
76370d9
b78d249
52f6cf5
039a08d
f5469e5
55011cb
a5c830c
781e679
7a97dd1
e9eed92
cd12d43
6bb6ff0
8156749
726d3ab
fcecbad
7eaaf19
bd7f39e
8f1fb6f
c64a371
e33c469
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"version": 1, | ||
"map_name": "SteelStation", | ||
"map_path": "map_files/SteelStation", | ||
"map_file": "SteelStation.dmm", | ||
"shuttles": { | ||
"cargo": "cargo_box", | ||
"ferry": "ferry_fancy", | ||
"whiteship": "whiteship_meta", | ||
"emergency": "emergency_meta" | ||
}, | ||
"job_changes": { | ||
"Cook": { | ||
"additional_cqc_areas": ["/area/station/service/auxkitchen"] | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,6 +52,9 @@ GLOBAL_LIST_EMPTY(conveyors_by_id) | |
/obj/machinery/conveyor/centcom_auto | ||
id = "round_end_belt" | ||
|
||
/obj/machinery/conveyor/no_touch | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this should also be modular |
||
id = "non_adjustable_belt" //stop those monsters from moving these belts | ||
|
||
/obj/machinery/conveyor/inverted //Directions inverted so you can use different corner pieces. | ||
icon_state = "conveyor_map_inverted" | ||
flipped = TRUE | ||
|
@@ -253,6 +256,16 @@ GLOBAL_LIST_EMPTY(conveyors_by_id) | |
return | ||
SSmove_manager.stop_looping(thing, SSconveyors) | ||
|
||
// stuff for not messing with the not messable conveyors | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. modular |
||
// Monkestation edit for Steelstation | ||
/obj/machinery/conveyor/no_touch/attackby(obj/item/attacking_item, mob/living/user, params) | ||
if(attacking_item.tool_behaviour == TOOL_CROWBAR) | ||
to_chat(user, span_notice("The belt is stuck on too tight!")) | ||
else if(attacking_item.tool_behaviour == TOOL_WRENCH) | ||
to_chat(user, span_notice("You can't turn this belt!")) | ||
else if(attacking_item.tool_behaviour == TOOL_SCREWDRIVER) | ||
to_chat(user, span_notice("The belt cannot be reversed!")) | ||
|
||
// attack with item, place item on conveyor | ||
/obj/machinery/conveyor/attackby(obj/item/attacking_item, mob/living/user, params) | ||
if(attacking_item.tool_behaviour == TOOL_CROWBAR) | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,6 +42,10 @@ map northstar | |
votable | ||
endmap | ||
|
||
map SteelStation | ||
minplayers 50 | ||
endmap | ||
|
||
|
||
map runtimestation | ||
endmap | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
modular