Skip to content

Commit

Permalink
hooray
Browse files Browse the repository at this point in the history
  • Loading branch information
TobyThorne committed Dec 23, 2023
1 parent a9daf28 commit f697983
Show file tree
Hide file tree
Showing 8 changed files with 55 additions and 0 deletions.
1 change: 1 addition & 0 deletions baystation12.dme
Original file line number Diff line number Diff line change
Expand Up @@ -1778,6 +1778,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
19 changes: 19 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,22 @@
dogtag.stored_name = H.real_name
dogtag.religion = H.religion
dogtag.stored_blood_type = H.b_type

/datum/gear/accessory/pride_pin
display_name = "pride pin selection"
description = "A holographic pin to show off your pride, reminding the crew of their unwavering commitment to equity, diversity, and inclusion!"
path = /obj/item/clothing/accessory/pride_pin

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

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

/obj/item/clothing/accessory/pride_pin
name = "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"
slot_flags = SLOT_TIE
slot = ACCESSORY_SLOT_INSIGNIA

/obj/item/clothing/accessory/pride_pin/bi
name = "bisexual pride pin"
icon_state = "pride_bi"

/obj/item/clothing/accessory/pride_pin/pan
name = "pansexual pride pin"
icon_state = "pride_pan"

/obj/item/clothing/accessory/pride_pin/ace
name = "asexual pride pin"
icon_state = "pride_ace"

/obj/item/clothing/accessory/pride_pin/enby
name = "non-binary pride pin"
icon_state = "pride_enby"

/obj/item/clothing/accessory/pride_pin/trans
name = "transgender pride pin"
icon_state = "pride_trans"

/obj/item/clothing/accessory/pride_pin/intersex
name = "intersex pride pin"
icon_state = "pride_intersex"

/obj/item/clothing/accessory/pride_pin/lesbian
name = "lesbian pride pin"
icon_state = "pride_lesbian"
Binary file modified icons/inv_slots/acessories/icon.dmi
Binary file not shown.
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.

0 comments on commit f697983

Please sign in to comment.