mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 02:09:41 +00:00
17 lines
692 B
Plaintext
17 lines
692 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" |