mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-01-06 07:22:15 +00:00
Adds zippo lighters and a colorable trenchcoat to the loadout. (#9665)
* Fixes high skirt. * Lighters and Trenchcoats * Himeo Zippo, Cross Zippo * Adds support for different lighter flames. * Lighter in-hand sprites * Merges .dmis with adds ninja hardsuit selection #9631 * More trenchcoat fixes * The last iteration of the trenchcoat, I swear. * Removes redundant code for lighter sounds. * Decapitalization of ZIPPO LIGHTER * Made a set_flame_light proc * New zippo color system: variable edition * set_flame_light proc destroyed
This commit is contained in:
@@ -4,9 +4,24 @@
|
||||
sort_category = "Smoking"
|
||||
|
||||
/datum/gear/smoking/zippo
|
||||
display_name = "zippo"
|
||||
display_name = "zippo lighter selection"
|
||||
path = /obj/item/flame/lighter/zippo
|
||||
|
||||
/datum/gear/smoking/zippo/New()
|
||||
..()
|
||||
var/zippolighters = list()
|
||||
zippolighters["regular zippo"] = /obj/item/flame/lighter/zippo
|
||||
zippolighters["black zippo"] = /obj/item/flame/lighter/zippo/black
|
||||
zippolighters["black cross zippo"] = /obj/item/flame/lighter/zippo/black/cross
|
||||
zippolighters["golden zippo"] = /obj/item/flame/lighter/zippo/gold
|
||||
zippolighters["royal zippo"] = /obj/item/flame/lighter/zippo/royal
|
||||
zippolighters["dominian zippo"] = /obj/item/flame/lighter/zippo/dominia
|
||||
zippolighters["coalition zippo"] = /obj/item/flame/lighter/zippo/coalition
|
||||
zippolighters["solarian zippo"] = /obj/item/flame/lighter/zippo/sol
|
||||
zippolighters["bieselite zippo"] = /obj/item/flame/lighter/zippo/tcfl
|
||||
zippolighters["himeo zippo"] = /obj/item/flame/lighter/zippo/himeo
|
||||
gear_tweaks += new/datum/gear_tweak/path(zippolighters)
|
||||
|
||||
/datum/gear/smoking/lighter
|
||||
display_name = "cheap lighter"
|
||||
path = /obj/item/flame/lighter
|
||||
|
||||
@@ -146,6 +146,11 @@
|
||||
coat["trenchcoat, grey alternate"] = /obj/item/clothing/suit/storage/toggle/trench/grey_alt
|
||||
gear_tweaks += new/datum/gear_tweak/path(coat)
|
||||
|
||||
/datum/gear/suit/trenchcoat_colorable
|
||||
display_name = "colorable trenchcoat"
|
||||
description = "A sleek canvas trenchcoat in 167,777,216 designer colors."
|
||||
path = /obj/item/clothing/suit/storage/toggle/trench/colorable
|
||||
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION
|
||||
|
||||
/datum/gear/suit/det_trenchcoat
|
||||
display_name = "detective trenchcoat selection"
|
||||
|
||||
Reference in New Issue
Block a user