diff --git a/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm b/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm index 62f007825f..a92230d32d 100644 --- a/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm +++ b/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm @@ -348,7 +348,8 @@ sprites = list( "Traumahound" = "traumavale", "Drake" = "draketrauma", - "Borgi" = "borgi-trauma" + "Borgi" = "borgi-trauma", + "Raptor V-4" = "traumaraptor" ) /obj/item/weapon/robot_module/robot/medical/traumahound/New(var/mob/living/silicon/robot/R) @@ -479,7 +480,8 @@ "Janihound model V-2" = "J9", "Borgi" = "borgi-jani", "Otieborg" = "otiej", - "Drake" = "drakejanit" + "Drake" = "drakejanit", + "Raptor V-4" = "janiraptor" ) can_be_pushed = 0 @@ -650,7 +652,8 @@ "V2 Engidog" = "thottbot", "EngiHound" = "engihound", "EngiHoundDark" = "engihounddark", - "Drake" = "drakeeng" + "Drake" = "drakeeng", + "Raptor V-4" = "engiraptor" ) can_be_pushed = 0 @@ -799,7 +802,9 @@ "Pinkhound" = "k69", "ServicehoundV2" = "serve2", "ServicehoundV2 Darkmode" = "servedark", - "Drake" = "drakemine" + "Drake" = "drakemine", + "Raptor V-4" = "serviraptor", + "Raptor V-4000" = "fancyraptor" ) can_be_pushed = 0 @@ -873,7 +878,8 @@ "KMine" = "kmine", "CargoHound" = "cargohound", "CargoHoundDark" = "cargohounddark", - "Drake" = "drakemine" + "Drake" = "drakemine", + "Raptor V-4" = "mineraptor" ) can_be_pushed = 0 diff --git a/code/modules/mob/living/silicon/robot/robot_vr.dm b/code/modules/mob/living/silicon/robot/robot_vr.dm index 39cd6a0487..6998bf458f 100644 --- a/code/modules/mob/living/silicon/robot/robot_vr.dm +++ b/code/modules/mob/living/silicon/robot/robot_vr.dm @@ -140,7 +140,7 @@ if(wideborg == TRUE) if(icontype == "Drake") // Why, Why can't we have normal nice things icon = 'icons/mob/drakeborg/drakeborg_vr.dmi' - else if(icontype == "Raptor V-4") //Added for raptor sprites + else if(icontype == "Raptor V-4" || icontype == "Raptor V-4000") //Added for raptor sprites icon = 'icons/mob/raptorborg/raptor.dmi' else icon = wideborg_dept diff --git a/icons/mob/raptorborg/raptor.dmi b/icons/mob/raptorborg/raptor.dmi index 742f3ecfee..c553840790 100644 Binary files a/icons/mob/raptorborg/raptor.dmi and b/icons/mob/raptorborg/raptor.dmi differ