diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm index 1d8a7d97ce3..0ca43fd25b5 100644 --- a/code/modules/vore/fluffstuff/custom_items_vr.dm +++ b/code/modules/vore/fluffstuff/custom_items_vr.dm @@ -1979,4 +1979,24 @@ from_helmet = /obj/item/clothing/head/helmet/space/void/security from_suit = /obj/item/clothing/suit/space/void/security/taur to_helmet = /obj/item/clothing/head/helmet/space/void/security/hasd - to_suit = /obj/item/clothing/suit/space/void/security/hasd \ No newline at end of file + to_suit = /obj/item/clothing/suit/space/void/security/hasd + +//InterroLouis - Kai Highlands +/obj/item/borg/upgrade/modkit/chassis_mod/kai + name = "kai chassis" + desc = "Makes your KA green. All the fun of having a more powerful KA without actually having a more powerful KA." + cost = 0 + denied_type = /obj/item/borg/upgrade/modkit/chassis_mod + chassis_icon = "kineticgun_K" + chassis_name = "Kai-netic Accelerator" + var/chassis_desc = "A self recharging, ranged mining tool that does increased damage in low temperature. Capable of holding up to six slots worth of mod kits. It seems to have been painted an ugly green, and has a small image of a bird scratched crudely into the stock." + var/chassis_icon_file = 'icons/vore/custom_guns_vr.dmi' + +/obj/item/borg/upgrade/modkit/chassis_mod/kai/install(obj/item/weapon/gun/energy/kinetic_accelerator/KA, mob/user) + KA.desc = chassis_desc + KA.icon = chassis_icon_file + ..() +/obj/item/borg/upgrade/modkit/chassis_mod/kai/uninstall(obj/item/weapon/gun/energy/kinetic_accelerator/KA) + KA.desc = initial(KA.desc) + KA.icon = initial(KA.icon) + ..() \ No newline at end of file diff --git a/config/custom_items.txt b/config/custom_items.txt index 34e28c056f9..c3eb6761b7c 100644 --- a/config/custom_items.txt +++ b/config/custom_items.txt @@ -326,6 +326,12 @@ character_name: Ruda Lizden item_path:/obj/item/clothing/accessory/badge/holo/detective/ruda } +{ +ckey: interrolouis +character_name: Kai Highlands +/obj/item/borg/upgrade/modkit/chassis_mod/kai +} + { ckey: ivymoomoo character_name: Ivy Baladeva diff --git a/icons/vore/custom_guns_vr.dmi b/icons/vore/custom_guns_vr.dmi index dfd79ab451e..c09ac65d222 100644 Binary files a/icons/vore/custom_guns_vr.dmi and b/icons/vore/custom_guns_vr.dmi differ