diff --git a/code/modules/clothing/clothing.dm b/code/modules/clothing/clothing.dm index 52c3c7cdc67..16beaacac93 100644 --- a/code/modules/clothing/clothing.dm +++ b/code/modules/clothing/clothing.dm @@ -76,7 +76,7 @@ BLIND // can't see anything body_parts_covered = HANDS slot_flags = SLOT_GLOVES attack_verb = list("challenged") - species_restricted = list("exclude","Unathi","Tajara") + species_restricted = list("exclude","Unathi","Tajaran") /obj/item/clothing/gloves/examine() set src in usr @@ -121,7 +121,7 @@ BLIND // can't see anything permeability_coefficient = 0.50 slowdown = SHOES_SLOWDOWN - species_restricted = list("exclude","Unathi","Tajara") + species_restricted = list("exclude","Unathi","Tajaran") //Suit /obj/item/clothing/suit diff --git a/code/modules/clothing/spacesuits/rig.dm b/code/modules/clothing/spacesuits/rig.dm index 24b209f9a6f..c7f46569b4b 100644 --- a/code/modules/clothing/spacesuits/rig.dm +++ b/code/modules/clothing/spacesuits/rig.dm @@ -1,3 +1,34 @@ +//Species modification item. + +/obj/item/weapon/modkit/tajaran + name = "hardsuit modification kit" + desc = "A kit containing all the needed tools and parts to modify a hardsuit for another species. This one looks like it's meant for Tajara." + icon = 'icons/obj/custom_items.dmi' + icon_state = "royce_kit" + +/obj/item/clothing/head/helmet/space/rig/attackby(obj/item/I as obj, mob/user as mob) + if(istype(I,/obj/item/weapon/modkit/tajaran)) + user.drop_item() + playsound(src.loc, 'sound/items/Screwdriver.ogg', 100, 1) + user << "\red You painstakingly modify [src] to make it more suitable for a Tajaran user." + new /obj/item/clothing/head/helmet/space/rig/tajara(user.loc) + del(I) + del(src) + return + ..() + +/obj/item/clothing/suit/space/rig/attackby(obj/item/I as obj, mob/user as mob) + if(istype(I,/obj/item/weapon/modkit/tajaran)) + user.drop_item() + playsound(src.loc, 'sound/items/Screwdriver.ogg', 100, 1) + user << "\red You painstakingly modify [src] to make it more suitable for a Tajaran user." + new /obj/item/clothing/suit/space/rig/tajara(user.loc) + del(I) + del(src) + return + ..() + + //Regular rig suits /obj/item/clothing/head/helmet/space/rig name = "engineering hardsuit helmet"