mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
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. (reverted from commitccb9ceb811) (reverted from commit1d9a328ba6)
16 lines
481 B
Plaintext
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.
|
|
. = ..()
|