Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MODULAR] Two new mememotes and custom pin selection #1176

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions modular_splurt/code/modules/client/loadout/accessory.dm
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,9 @@
/datum/gear/accessory/formalcrop
name = "Formal croptop"
path = /obj/item/clothing/accessory/formalcrop

/datum/gear/accessory/genericpin
name = "Holographic pin"
path = /obj/item/clothing/accessory/pride/other
loadout_flags = LOADOUT_CAN_NAME | LOADOUT_CAN_DESCRIPTION
cost = 0
21 changes: 21 additions & 0 deletions modular_splurt/code/modules/clothing/under/accessories.dm
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,24 @@
icon_state = "formalcrop"
item_state = "formalcrop"
minimize_when_attached = FALSE

/obj/item/clothing/accessory/pride/other
name = "blank pin"
desc = "A holographic pin for showing off anything you wish. Comes with some basic selection."
icon = 'modular_splurt/icons/obj/clothing/accessories.dmi'
mob_overlay_icon = 'modular_splurt/icons/mob/clothing/accessories.dmi'
icon_state = "pin_blank"
always_reskinnable = TRUE
unique_reskin = list(
"blank" = list("icon_state" = "pin_blank"),
"green" = list("icon_state" = "pin_green"),
"yellow" = list("icon_state" = "pin_yellow"),
"mute" = list("icon_state" = "pin_mute"),
"xenophilia" = list("icon_state" = "pin_xenophilia"),
"peace" = list("icon_state" = "pin_peace"),
"shy" = list("icon_state" = "pin_shy"),
"sub" = list("icon_state" = "pin_sub"),
"dom" = list("icon_state" = "pin_dom"),
"switch" = list("icon_state" = "pin_switch"),
"missing texture" = list("icon_state" = "pin_css")
)
17 changes: 17 additions & 0 deletions modular_splurt/code/modules/mob/living/emotes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1498,3 +1498,20 @@
emote_cooldown = 0.95 SECONDS
emote_pitch_variance = FALSE

/datum/emote/living/audio/flabbergast
key = "flabbergast"
key_third_person = "is flabbergasted"
message = "looks flabbergasted!"
emote_sound = 'modular_splurt/sound/voice/flabbergasted.ogg'
emote_cooldown = 3.0 SECONDS
emote_pitch_variance = FALSE
emote_volume = 70

/datum/emote/living/audio/sadness
key = "sadness"
key_third_person = "feels sadness"
message = "is experiencing <b><i>Profound Sadness</i></b>!"
emote_sound = 'modular_splurt/sound/voice/sadness.ogg'
emote_cooldown = 4.0 SECONDS
emote_pitch_variance = FALSE
emote_volume = 30
3 changes: 2 additions & 1 deletion modular_splurt/code/modules/vending/clothesmate.dm
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@
/obj/item/clothing/wrists/armwarmer_striped/long = 3,
/obj/item/clothing/under/pants/yoga = 3,
/obj/item/clothing/under/blutigen_undergarment = 3,
/obj/item/clothing/glasses/contact = 3
/obj/item/clothing/glasses/contact = 3,
/obj/item/clothing/accessory/pride/other = 30
)
var/list/extra_contraband = list(
/obj/item/clothing/under/rank/civilian/lawyer/galaxy_red = 3,
Expand Down
Binary file modified modular_splurt/icons/mob/clothing/accessories.dmi
Binary file not shown.
Binary file modified modular_splurt/icons/obj/clothing/accessories.dmi
Binary file not shown.
Binary file added modular_splurt/sound/voice/flabbergasted.ogg
Binary file not shown.
Binary file added modular_splurt/sound/voice/sadness.ogg
Binary file not shown.
Loading