makes decal painter a basic tool (#51762)

* makes decal painter a basic tool

Makes the Decal Painter into a Basic Tool instead of a BEPIS unlock. It's very meh for a BEPIS unlock, especially for the Scientists that'll be using it. Though, it does have a use that some builders might like.

* Update maintenance_loot.dm

* decal painter value decrease

decal painter now contains much less mats since it is a basic tool

* decal painter no longer needs an empty ink cartridge to eject
This commit is contained in:
Radacitus
2020-06-27 18:26:57 -03:00
committed by GitHub
parent 6ee02f84fe
commit 2e2fa5579f
5 changed files with 12 additions and 9 deletions
+1 -7
View File
@@ -150,7 +150,7 @@
icon = 'icons/obj/objects.dmi'
icon_state = "decal_sprayer"
inhand_icon_state = "decalsprayer"
custom_materials = list(/datum/material/iron=2000, /datum/material/glass=500)
custom_materials = list(/datum/material/iron=50, /datum/material/glass=50)
var/stored_dir = 2
var/stored_color = ""
var/stored_decal = "warningline"
@@ -176,12 +176,6 @@
if(use_paint(user) && isturf(F))
F.AddComponent(/datum/component/decal, 'icons/turf/decals.dmi', stored_decal_total, stored_dir, CLEAN_STRONG, color, null, null, alpha)
/obj/item/airlock_painter/decal/attack_self(mob/user)
if((ink) && (ink.charges >= 1))
to_chat(user, "<span class='notice'>[src] beeps to prevent you from removing the toner until out of charges.</span>")
return
. = ..()
/obj/item/airlock_painter/decal/AltClick(mob/user)
. = ..()
ui_interact(user)