diff --git a/code/modules/clothing/suits/armor_vr.dm b/code/modules/clothing/suits/armor_vr.dm index 5b5000dc34..fb5f22189d 100644 --- a/code/modules/clothing/suits/armor_vr.dm +++ b/code/modules/clothing/suits/armor_vr.dm @@ -9,4 +9,22 @@ body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|FEET|ARMS|HANDS slowdown = 5 // If you're a tank you're gonna move like a tank. flags_inv = HIDEGLOVES|HIDESHOES|HIDEJUMPSUIT - siemens_coefficient = 0 \ No newline at end of file + siemens_coefficient = 0 + + + +/obj/item/clothing/suit/armor/vest/wolftaur + name = "wolf-taur armor vest" + desc = "An armored vest that protects against some damage. It appears to be created for a wolf-taur." + species_restricted = null //Species restricted since all it cares about is a taur half + icon_override = 'icons/mob/taursuits_vr.dmi' + icon_state = "heavy_wolf_armor" + mob_can_equip(var/mob/living/carbon/human/H, slot, disable_warning = 0) + if(istype(H) && istype(H.tail_style, /datum/sprite_accessory/tail/taur/wolf)) + icon_override = 'icons/mob/taursuits_vr.dmi' //Just in case + icon_state = "heavy_wolf_armor" //Just in case + pixel_x = -16 + return 1 + else + H << "You need to have a wolf-taur half to wear this." + return 0 \ No newline at end of file diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm index 4f53c5866a..5d4acbd2d8 100644 --- a/code/modules/vore/fluffstuff/custom_items_vr.dm +++ b/code/modules/vore/fluffstuff/custom_items_vr.dm @@ -343,3 +343,31 @@ obj/item/weapon/material/hatchet/tacknife/combatknife/fluff/katarina/handle_shie /obj/item/clothing/accessory/medal/gold/fluff/lucina name = "Medal of Medical Excellence" desc = "A medal awarded to Lucina Darkarim for excellence in medical service." + +//SilencedMP5A5:Serdykov Antoz +/* +/obj/item/clothing/suit/armor/vest/wolftaur/serdy //SilencedMP5A5's specialty armor suit. Uncomment if/when they make their custom item app and are accepted. + name = "Modified wolf-taur armor vest" + desc = "An armored vest that protects against some damage. It appears to be created for a wolf-taur, and seems modified." + species_restricted = null //Species restricted since all it cares about is a taur half + icon_override = 'icons/mob/taursuits_vr.dmi' //Needs to be this since it's 64*32 + icon_state = "serdy_armor" + mob_can_equip(var/mob/living/carbon/human/H, slot, disable_warning = 0) + if(istype(H) && istype(H.tail_style, /datum/sprite_accessory/tail/taur/wolf)) + icon_override = 'icons/mob/taursuits_vr.dmi' //Just in case + icon_state = "serdy_armor" //Just in case + pixel_x = -16 + return 1 + else + H << "You need to have a wolf-taur half to wear this." + return 0 + +/obj/item/clothing/head/helmet/serdy //SilencedMP5A5's specialty helmet. Uncomment if/when they make their custom item app and are accepted. + name = "Modified helmet" + desc = "Standard Security gear. Protects the head from impacts. This one appears to be modified." + icon = 'icons/vore/custom_clothes_vr.dmi' + icon_state = "serdyhelm" + + icon_override = 'icons/vore/custom_clothes_vr.dmi' + item_state = "serdyhelm_mob" +*/ \ No newline at end of file diff --git a/icons/mob/taursuits_vr.dmi b/icons/mob/taursuits_vr.dmi index a7b2da5182..af470bb546 100644 Binary files a/icons/mob/taursuits_vr.dmi and b/icons/mob/taursuits_vr.dmi differ diff --git a/icons/vore/custom_clothes_vr.dmi b/icons/vore/custom_clothes_vr.dmi index ad900bfe7b..87ee741cd4 100644 Binary files a/icons/vore/custom_clothes_vr.dmi and b/icons/vore/custom_clothes_vr.dmi differ