Files
vgstation13/code/modules/RCD/tile painter.dm
PJB3005 ccb9ceb811 RCD Rework.
RCDs now work on a system of schematics, with an RPD style UI.

RPD, RCD, RSF and tile painters all implemented into this new system.
2015-08-16 01:32:00 +02:00

16 lines
481 B
Plaintext

/obj/item/device/rcd/tile_painter
name = "tile painter"
desc = "A device used to paint floors in various colours and fashions."
icon_state = "rpd" //placeholder art, someone please sprite it
starting_materials = list(MAT_IRON = 75000, MAT_GLASS = 37500)
origin_tech = "engineering=2;materials=1"
sparky = 0
/obj/item/device/rcd/tile_painter/New()
schematics = typesof(/datum/rcd_schematic/tile) //For some stupid reason typesof() isn't constant.
. = ..()