mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-09 16:14:13 +00:00
+ Bomb-deletion-related stuff, which was removed for some fucking reason. + Added recycling machines + Added recycling procs to atoms + Restructured disposals for a proper recycling plant. + Fixed a few typos I noticed.
29 lines
651 B
Plaintext
29 lines
651 B
Plaintext
/**********************Input and output plates**************************/
|
|
|
|
/obj/machinery/mineral/input
|
|
icon = 'icons/mob/screen1.dmi'
|
|
icon_state = "x2"
|
|
name = "Input area"
|
|
density = 0
|
|
anchored = 1.0
|
|
New()
|
|
icon_state = "blank"
|
|
|
|
/obj/machinery/mineral/output
|
|
icon = 'icons/mob/screen1.dmi'
|
|
icon_state = "x"
|
|
name = "Output area"
|
|
density = 0
|
|
anchored = 1.0
|
|
New()
|
|
icon_state = "blank"
|
|
|
|
/obj/machinery/mineral/selected_output
|
|
icon = 'icons/mob/screen1.dmi'
|
|
icon_state = "x3"
|
|
name = "Selected Output area"
|
|
desc = "Where we put things that we wanted."
|
|
density = 0
|
|
anchored = 1.0
|
|
New()
|
|
icon_state = "blank" |