Skip to content

Commit

Permalink
Resprites Pride Pins and adds a few More (#21563)
Browse files Browse the repository at this point in the history
* Update accessories.dm

* Adds more pride pins

More pins more pride

* Resprites Pride pins & Adds more of them

MORE PRIDE!!!!

* list of pins now has list things

* triple checks the list of pride pins is actually a proper list

mentors cant count sure but i cant list things apparently

* fully replaces the 'P' variable with 'Pin'
  • Loading branch information
YashinHak authored Mar 14, 2024
1 parent c93aed1 commit ab6f02a
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
23 changes: 21 additions & 2 deletions code/modules/clothing/under/accessories.dm
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,25 @@
"Lesbian Pride" = list(
"icon" = "pride_lesbian",
"info" = "Orange and pink shaded stripes that represent Lesbian pride, pride in same-gender love among women!"),
"Gay Pride" = list(
"icon" = "pride_gay",
"info" = "Navy and turquoise shaded stripes that represent Gay pride, pride in same-gender love among men!"),
//meme pins under this
"Ian Pride" = list( //we love ian
"icon" = "pride_ian",
"info" = "A orange corgi, pride in the HoP's beloved pet!"),
"Void Pride" = list( //darkness antag
"icon" = "pride",
"info" = "Nothing, pride in NOTHING!!!"),
"Suspicious Pride Pin" = list( //syndicate
"icon" = "pride_suspicious",
"info" = "A black S on a red banner, pride in chaos!"),
"Grey Pride" = list( //assistants
"icon" = "pride_grey",
"info" = "A robust toolbox over a grey background, pride in what is stationwide!"),
"Command Pride" = list(
"icon" = "pride_command",
"info" = "A blue background with an elaborate white trim, pride in your superiors!")
)

/obj/item/clothing/accessory/pride/attack_self(mob/user)
Expand All @@ -474,5 +493,5 @@
choice.image = icon(icon, pride_reskins[pin_type]["icon"])
choice.info = pride_reskins[pin_type]["info"]
radial_menu[pin_type] = choice
var/P = show_radial_menu(user, user, radial_menu, tooltips = TRUE)
icon_state = P ? pride_reskins[P]["icon"] : initial(icon_state)
var/Pin = show_radial_menu(user, user, radial_menu, tooltips = TRUE)
icon_state = Pin ? pride_reskins[Pin]["icon"] : initial(icon_state)
Binary file modified icons/mob/clothing/accessories.dmi
Binary file not shown.
Binary file modified icons/obj/clothing/accessories.dmi
Binary file not shown.

0 comments on commit ab6f02a

Please sign in to comment.