Files
vgstation13/code/modules/mining/machine_input_output_plates.dm
Paul Ritter 9e371f3884 starting the crusade against relative pathing (#22593)
* 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
2019-04-29 13:33:46 -03:00

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"