mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
* Adds an option to the Tile Painter to clear decals on a tile. * changelog * Remove useless check
18 lines
486 B
Plaintext
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)
|
|
. = ..()
|