diff --git a/code/modules/vore/fluffstuff/custom_boxes_vr.dm b/code/modules/vore/fluffstuff/custom_boxes_vr.dm index b08f422400..7f550d9ccf 100644 --- a/code/modules/vore/fluffstuff/custom_boxes_vr.dm +++ b/code/modules/vore/fluffstuff/custom_boxes_vr.dm @@ -80,3 +80,15 @@ has_items = list( /obj/item/fluff/permit/archermaximus, /obj/item/weapon/gun/projectile/colt/fluff/archercolt) + +// arokha:Aronai Kadigan +/obj/item/weapon/storage/backpack/dufflebag/emt/fluff/aro + name = "Aronai's Equipment" + desc = "A big dufflebag, containing the stuff Aronai likes to carry with him." + + New() + ..() + new /obj/item/clothing/head/helmet/space/fluff/aronai(src) + new /obj/item/clothing/suit/space/fluff/aronai(src) + new /obj/item/device/suit_cooling_unit(src) + new /obj/item/weapon/card/id/centcom/fluff/aro(src) \ No newline at end of file diff --git a/code/modules/vore/fluffstuff/custom_clothes_vr.dm b/code/modules/vore/fluffstuff/custom_clothes_vr.dm index 025d9c03c7..08c45ae2c8 100644 --- a/code/modules/vore/fluffstuff/custom_clothes_vr.dm +++ b/code/modules/vore/fluffstuff/custom_clothes_vr.dm @@ -561,3 +561,34 @@ var/mob/living/carbon/human/H = user if(H.head == src) H.update_inv_head() + +// arokha : Aronai Kadigan +/obj/item/clothing/head/helmet/space/fluff/aronai + name = "Aronai's Helmet" + desc = "This spacesuit helmet appears to be custom-made for someone with pointed ears and a muzzle. \ + It is form-fitting enough that it's unlikely to fit anyone but the person it was intended for. \ + 'Aronai' is printed on the back of the helmet." + + icon = 'icons/vore/custom_clothes_vr.dmi' + icon_state = "arohelm" + + icon_override = 'icons/vore/custom_clothes_vr.dmi' + item_state = "arohelm_mob" + + light_overlay = "helmet_light_dual" + camera_networks = list(NETWORK_MEDICAL) + +/obj/item/clothing/suit/space/fluff/aronai + name = "Aronai's Spacesuit" + desc = "This spacesuit appears to be custom-made for someone with digitigrade legs and a tail. \ + It is form-fitting enough that it's unlikely to fit anyone but the person it was intended for. \ + 'Aronai' is printed just above the spine on the back of the neckpiece. It has no space for an O2 tank. \ + In fact, it's practically paper-thin. It doesn't seem to retain body heat at all." + + icon = 'icons/vore/custom_clothes_vr.dmi' + icon_state = "arosuit" + + icon_override = 'icons/vore/custom_clothes_vr.dmi' + item_state = "arosuit_mob" + w_class = 4 //Oh but I can. + allowed = list(/obj/item/device/suit_cooling_unit) //Can't fit O2 tanks diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm index cccbb3de82..fb27d73381 100644 --- a/code/modules/vore/fluffstuff/custom_items_vr.dm +++ b/code/modules/vore/fluffstuff/custom_items_vr.dm @@ -237,3 +237,11 @@ else user << "This isn't even an ID card you idiot." return + +//arokha:Aronai Kadigan +/obj/item/weapon/card/id/centcom/fluff/aro + registered_name = "Aronai Kadigan" + assignment = "CC Medical" + + New() + update_name() diff --git a/icons/vore/custom_clothes_vr.dmi b/icons/vore/custom_clothes_vr.dmi index 21931b0d1b..e95cfef2f2 100644 Binary files a/icons/vore/custom_clothes_vr.dmi and b/icons/vore/custom_clothes_vr.dmi differ