Files
vgstation13/code/modules/RCD/tile painter.dm
PJB3005 c7b3994fff Adds the ability to clear decals to the tile painter. (#10960)
* Adds an option to the Tile Painter to clear decals on a tile.

* changelog

* Remove useless check
2016-07-13 21:46:37 +01:00

18 lines
486 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
schematics = list(/datum/rcd_schematic/clear_decals)
/obj/item/device/rcd/tile_painter/New()
schematics += typesof(/datum/rcd_schematic/tile)
. = ..()