diff --git a/code/__defines/mobs.dm b/code/__defines/mobs.dm index 5142a3e02e1..b55d3be735f 100644 --- a/code/__defines/mobs.dm +++ b/code/__defines/mobs.dm @@ -393,6 +393,7 @@ #define PROSTHETIC_DIONA "Unknown Model" #define PROSTHETIC_AUTAKH "Aut'akh Manufactured" #define PROSTHETIC_TESLA "Tesla Powered Prosthetics" +#define PROSTHETIC_VAURCA "Vaurca Robotic Limb" //Brain Damage defines #define BRAIN_DAMAGE_MILD 10 diff --git a/code/modules/organs/robolimbs.dm b/code/modules/organs/robolimbs.dm index a7b1b32ebfb..7ee75374fc1 100644 --- a/code/modules/organs/robolimbs.dm +++ b/code/modules/organs/robolimbs.dm @@ -123,3 +123,9 @@ var/global/datum/robolimb/basic_robolimb return FALSE else return TRUE + +/datum/robolimb/vaurca + company = PROSTHETIC_VAURCA + desc = "This limb design is from old Sedantis, still manufactured by the Hives when providing maintenace to most of the basic Vaurcesian bioforms." + icon = 'icons/mob/human_races/vaurca/r_vaurcalimbs.dmi' + species_can_use = list(SPECIES_VAURCA_WORKER, SPECIES_VAURCA_WARRIOR) \ No newline at end of file diff --git a/html/changelogs/desven-robobug.yml b/html/changelogs/desven-robobug.yml new file mode 100644 index 00000000000..2cdc17d5a17 --- /dev/null +++ b/html/changelogs/desven-robobug.yml @@ -0,0 +1,4 @@ +author: Desven, RyverStyx, Myphicbowser +delete-after: True +changes: + - rscadd: "Added unique robotic limbs for Vaurca Worker and Vaurca Warrior. They are only selectable via the loadout." \ No newline at end of file diff --git a/icons/mob/human_races/vaurca/r_vaurcalimbs.dmi b/icons/mob/human_races/vaurca/r_vaurcalimbs.dmi new file mode 100644 index 00000000000..0097a0a1d61 Binary files /dev/null and b/icons/mob/human_races/vaurca/r_vaurcalimbs.dmi differ