mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-10 09:22:05 +00:00
Removes the non-functional paint kits
This commit is contained in:
@@ -222,7 +222,6 @@ Sells devices, odds and ends, and medical stuff
|
||||
possible_origins = list("Buy 'n Save", "Drug Carnival", "C&B", "Fentles", "Dr. Goods", "Beevees")
|
||||
possible_trading_items = list(
|
||||
/obj/item/device/flashlight = TRADER_ALL,
|
||||
/obj/item/device/kit/paint = TRADER_SUBTYPES_ONLY,
|
||||
/obj/item/aicard = TRADER_THIS_TYPE,
|
||||
/obj/item/device/binoculars = TRADER_THIS_TYPE,
|
||||
/obj/item/device/flash = TRADER_THIS_TYPE,
|
||||
|
||||
@@ -65,23 +65,4 @@
|
||||
species_restricted = list(H.species.get_bodytype())
|
||||
kit.use(1,user)
|
||||
return 1
|
||||
return ..()
|
||||
|
||||
/obj/item/device/kit/paint
|
||||
name = "exosuit customisation kit"
|
||||
desc = "A kit containing all the needed tools and parts to repaint an exosuit."
|
||||
var/removable = null
|
||||
|
||||
/obj/item/device/kit/paint/examine()
|
||||
. = ..()
|
||||
to_chat(usr, "This kit will add a '[new_name]' decal to a exosuit'.")
|
||||
|
||||
/obj/item/device/kit/paint/powerloader/flames_red
|
||||
name = "\"Firestarter\" exosuit customisation kit"
|
||||
new_name = "red flames"
|
||||
new_icon = "flames_red"
|
||||
|
||||
/obj/item/device/kit/paint/powerloader/flames_blue
|
||||
name = "\"Burning Chrome\" exosuit customisation kit"
|
||||
new_name = "blue flames"
|
||||
new_icon = "flames_blue"
|
||||
return ..()
|
||||
@@ -323,18 +323,6 @@
|
||||
to_chat(user, "<span class='warning'>\The [thing] could not be installed in that hardpoint.</span>")
|
||||
return
|
||||
|
||||
else if(istype(thing, /obj/item/device/kit/paint))
|
||||
user.visible_message("<span class='notice'>\The [user] opens \the [thing] and spends some quality time customising \the [src].</span>")
|
||||
var/obj/item/device/kit/paint/P = thing
|
||||
desc = P.new_desc
|
||||
for(var/obj/item/mech_component/comp in list(arms, legs, head, body))
|
||||
comp.decal = P.new_icon
|
||||
if(P.new_icon_file)
|
||||
icon = P.new_icon_file
|
||||
queue_icon_update()
|
||||
P.use(1, user)
|
||||
return 1
|
||||
|
||||
else
|
||||
if(user.a_intent != I_HURT)
|
||||
if(thing.ismultitool())
|
||||
|
||||
@@ -628,7 +628,6 @@ var/list/worths = list(
|
||||
/obj/item/device/soulstone = 10000,
|
||||
/obj/item/device/dociler = 450,
|
||||
/obj/item/device/mmi = 1200,
|
||||
/obj/item/device/kit/paint = 500,
|
||||
/obj/item/device/kit = 100,
|
||||
/obj/item/aicard = 6000,
|
||||
/obj/item/device/chameleon = 4000,
|
||||
|
||||
@@ -26,8 +26,6 @@ var/global/list/minevendor_list = list( //keep in order of price
|
||||
new /datum/data/mining_equipment("Deployable Ladder", /obj/item/ladder_mobile, 5, 200),
|
||||
new /datum/data/mining_equipment("Deployable Hoist Kit", /obj/item/hoist_kit, 5, 200),
|
||||
new /datum/data/mining_equipment("Material Scanners", /obj/item/clothing/glasses/material, 15, 200),
|
||||
new /datum/data/mining_equipment("Paint Kit, Red Flames", /obj/item/device/kit/paint/powerloader/flames_red, 15, 200),
|
||||
new /datum/data/mining_equipment("Paint Kit, Blue Flames", /obj/item/device/kit/paint/powerloader/flames_blue, 15, 200),
|
||||
new /datum/data/mining_equipment("Mining Drill", /obj/item/pickaxe/drill, 10, 200),
|
||||
new /datum/data/mining_equipment("Deep Ore Scanner", /obj/item/mining_scanner, 10, 250),
|
||||
new /datum/data/mining_equipment("Magboots", /obj/item/clothing/shoes/magboots, 10, 300),
|
||||
|
||||
Reference in New Issue
Block a user