mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 18:32:03 +00:00
* starting the crusade against relative pathing * new() part1 * new() part 2 * FOR VALHALLA * you sneaky buggers * part 5: the reckoning * chapter 6: rejuvination * chapter 7: age of conflict * dammit travis
35 lines
736 B
Plaintext
35 lines
736 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
|
|
|
|
/obj/machinery/mineral/input/New()
|
|
..()
|
|
icon_state = "blank"
|
|
|
|
/obj/machinery/mineral/output
|
|
icon = 'icons/mob/screen1.dmi'
|
|
icon_state = "x"
|
|
name = "Output area"
|
|
density = 0
|
|
anchored = 1.0
|
|
|
|
/obj/machinery/mineral/output/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
|
|
|
|
/obj/machinery/mineral/selected_output/New()
|
|
..()
|
|
icon_state = "blank" |