Skip to content

Commit

Permalink
bwoink
Browse files Browse the repository at this point in the history
  • Loading branch information
TobyThorne committed Apr 5, 2024
1 parent 8d7ff77 commit ee382b2
Show file tree
Hide file tree
Showing 8 changed files with 80 additions and 0 deletions.
1 change: 1 addition & 0 deletions baystation12.dme
Original file line number Diff line number Diff line change
Expand Up @@ -1802,6 +1802,7 @@
#include "code\modules\clothing\under\accessories\holster.dm"
#include "code\modules\clothing\under\accessories\lockets.dm"
#include "code\modules\clothing\under\accessories\medals.dm"
#include "code\modules\clothing\under\accessories\pins.dm"
#include "code\modules\clothing\under\accessories\stethoscope.dm"
#include "code\modules\clothing\under\accessories\storage.dm"
#include "code\modules\clothing\under\accessories\ties.dm"
Expand Down
22 changes: 22 additions & 0 deletions code/modules/client/preference_setup/loadout/lists/accessories.dm
Original file line number Diff line number Diff line change
Expand Up @@ -131,3 +131,25 @@
dogtag.stored_name = H.real_name
dogtag.religion = H.religion
dogtag.stored_blood_type = H.b_type

/datum/gear/accessory/pin
display_name = "pin selection"
description = "A Nanotrasen holographic pin to show off your loyalty to the company, reminding the crew of your unwavering commitment to whatever NanoTrasen's up to!"
path = /obj/item/clothing/accessory/pin

/datum/gear/accessory/pride_pin/New()
..()
var/prides = list()
prides["NanoTrasen pin"] = /obj/item/clothing/accessory/pin
prides["pig pin"] = /obj/item/clothing/accessory/pin/pig
prides["skull pin"] = /obj/item/clothing/accessory/pin/skull
prides["rainbow pin"] = /obj/item/clothing/accessory/pin/rainbow
prides["bisexual pride pin"] = /obj/item/clothing/accessory/pin/bi
prides["pansexual pride pin"] = /obj/item/clothing/accessory/pin/pan
prides["asexual pride pin"] = /obj/item/clothing/accessory/pin/ace
prides["non-binary pride pin"] = /obj/item/clothing/accessory/pin/enby
prides["transgender pride pin"] = /obj/item/clothing/accessory/pin/trans
prides["intersex pride pin"] = /obj/item/clothing/accessory/pin/intersex
prides["lesbian pride pin"] = /obj/item/clothing/accessory/pin/lesbian

gear_tweaks += new /datum/gear_tweak/path(prides)
57 changes: 57 additions & 0 deletions code/modules/clothing/under/accessories/pins.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@

/obj/item/clothing/accessory/pin
name = "NT pin"
desc = "A Nanotrasen holographic pin to show off your loyalty to the company, reminding the crew of your unwavering commitment to whatever NanoTrasen's up to!"
icon_state = "nt"
slot_flags = SLOT_TIE
slot = ACCESSORY_SLOT_INSIGNIA

/obj/item/clothing/accessory/pin/pig
name = "pig pin"
desc = "A holographic pin to show off your true nature."
icon_state = "pride_bi"

/obj/item/clothing/accessory/pin/skull
name = "skull pin"
desc = "A holographic pin to show off your edgy nature."
icon_state = "pride_bi"

/obj/item/clothing/accessory/pin/rainbow
name = "rainbow pin"
desc = "A Nanotrasen Diversity & Inclusion Center-sponsored holographic pin to show off your pride, reminding the crew of their unwavering commitment to equity, diversity, and inclusion!"
icon_state = "pride_bi"

/obj/item/clothing/accessory/pin/bi
name = "bisexual pride pin"
desc = "A Nanotrasen Diversity & Inclusion Center-sponsored holographic pin to show off your pride, reminding the crew of their unwavering commitment to equity, diversity, and inclusion!"
icon_state = "pride_bi"

/obj/item/clothing/accessory/pin/pan
name = "pansexual pride pin"
desc = "A Nanotrasen Diversity & Inclusion Center-sponsored holographic pin to show off your pride, reminding the crew of their unwavering commitment to equity, diversity, and inclusion!"
icon_state = "pride_pan"

/obj/item/clothing/accessory/pin/ace
name = "asexual pride pin"
desc = "A Nanotrasen Diversity & Inclusion Center-sponsored holographic pin to show off your pride, reminding the crew of their unwavering commitment to equity, diversity, and inclusion!"
icon_state = "pride_ace"

/obj/item/clothing/accessory/pin/enby
name = "non-binary pride pin"
desc = "A Nanotrasen Diversity & Inclusion Center-sponsored holographic pin to show off your pride, reminding the crew of their unwavering commitment to equity, diversity, and inclusion!"
icon_state = "pride_enby"

/obj/item/clothing/accessory/pin/trans
name = "transgender pride pin"
desc = "A Nanotrasen Diversity & Inclusion Center-sponsored holographic pin to show off your pride, reminding the crew of their unwavering commitment to equity, diversity, and inclusion!"
icon_state = "pride_trans"

/obj/item/clothing/accessory/pin/intersex
name = "intersex pride pin"
desc = "A Nanotrasen Diversity & Inclusion Center-sponsored holographic pin to show off your pride, reminding the crew of their unwavering commitment to equity, diversity, and inclusion!"
icon_state = "pride_intersex"

/obj/item/clothing/accessory/pin/lesbian
name = "lesbian pride pin"
desc = "A Nanotrasen Diversity & Inclusion Center-sponsored holographic pin to show off your pride, reminding the crew of their unwavering commitment to equity, diversity, and inclusion!"
icon_state = "pride_lesbian"
Binary file modified icons/inv_slots/acessories/mob.dmi
Binary file not shown.
Binary file modified icons/inv_slots/acessories/mob_fat.dmi
Binary file not shown.
Binary file modified icons/inv_slots/acessories/mob_slim.dmi
Binary file not shown.
Binary file modified icons/inv_slots/acessories/mob_slim_m.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/ties.dmi
Binary file not shown.

0 comments on commit ee382b2

Please sign in to comment.