mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 02:09:41 +00:00
# Conflicts: # code/global.dm # config/custom_items.txt # icons/mob/human_races/r_xenochimera.dmi # vorestation.dme
23 lines
891 B
Plaintext
23 lines
891 B
Plaintext
/obj/item/clothing/gloves/weddingring
|
|
name = "golden wedding ring"
|
|
desc = "For showing your devotion to another person. It has a golden glimmer to it."
|
|
icon = 'icons/obj/clothing/gloves_vr.dmi'
|
|
icon_state = "wedring_g"
|
|
item_state = "wedring_g"
|
|
var/partnername = ""
|
|
body_parts_covered = null
|
|
|
|
/obj/item/clothing/gloves/weddingring/attack_self(mob/user)
|
|
partnername = copytext(sanitize(input(user, "Would you like to change the holoengraving on the ring?", "Name your betrothed", "Bae") as null|text),1,MAX_NAME_LEN)
|
|
name = "[initial(name)] - [partnername]"
|
|
|
|
/obj/item/clothing/gloves/weddingring/silver
|
|
name = "silver wedding ring"
|
|
icon_state = "wedring_s"
|
|
item_state = "wedring_s"
|
|
|
|
/obj/item/clothing/gloves/color
|
|
desc = "A pair of gloves, they don't look special in any way."
|
|
item_state_slots = list(slot_r_hand_str = "white", slot_l_hand_str = "white")
|
|
icon_state = "latex"
|