mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-23 16:42:13 +00:00
-turn some custom items into regular ones, their original owners will keep their more snowflake version, at tishina's request due to this new policy: https://forums.aurorastation.org/viewtopic.php?f=25&t=8087 -fix the mercenary's voidsuit and the radsuit having exposed hands in their mob sprites -fix the iaa rig having no sprite when deployed -adds flannel shirts/jackets that strudel was asking me for months -adds a medical webbing and drop pouches versions of the webbings -brings back the IAC armband from old code -adds pink lipstick When the update goes into master, I will make another pr fixing the custom item paths and etc.
23 lines
741 B
Plaintext
23 lines
741 B
Plaintext
/datum/gear/cosmetic
|
|
display_name = "purple comb"
|
|
path = /obj/item/weapon/haircomb
|
|
sort_category = "Cosmetics"
|
|
|
|
/datum/gear/cosmetic/lipstick
|
|
display_name = "lipstick selection"
|
|
path = /obj/item/weapon/lipstick
|
|
|
|
/datum/gear/cosmetic/lipstick/New()
|
|
..()
|
|
var/lipsticks = list()
|
|
lipsticks["lipstick, red"] = /obj/item/weapon/lipstick
|
|
lipsticks["lipstick, purple"] = /obj/item/weapon/lipstick/purple
|
|
lipsticks["lipstick, jade"] = /obj/item/weapon/lipstick/jade
|
|
lipsticks["lipstick, black"] = /obj/item/weapon/lipstick/black
|
|
lipsticks["lipstick, pink"] = /obj/item/weapon/lipstick/pink
|
|
gear_tweaks += new/datum/gear_tweak/path(lipsticks)
|
|
|
|
/datum/gear/cosmetic/mirror
|
|
display_name = "handheld mirror"
|
|
path = /obj/item/weapon/mirror
|