Blood Patch (#11751)

This commit is contained in:
Geeves
2021-04-30 02:04:55 +02:00
committed by GitHub
parent fa5d58205c
commit 6e0f0393b5
4 changed files with 63 additions and 2 deletions

View File

@@ -361,4 +361,17 @@
/datum/gear/accessory/kneepads
display_name = "kneepads"
path = /obj/item/clothing/accessory/kneepads
path = /obj/item/clothing/accessory/kneepads
/datum/gear/accessory/blood_patch
display_name = "blood patch selection"
description = "An embroidered patch indicating the wearer's blood type."
path = /obj/item/clothing/accessory/blood_patch
/datum/gear/accessory/blood_patch/New()
..()
var/list/patches = list()
for(var/type in typesof(/obj/item/clothing/accessory/blood_patch))
var/obj/item/clothing/accessory/blood_patch/BP = type
patches[initial(BP.name)] = type
gear_tweaks += new /datum/gear_tweak/path(patches)