diff --git a/code/modules/xenoarcheaology/finds/eguns_vr_ch.dm b/code/modules/xenoarcheaology/finds/eguns_vr_ch.dm new file mode 100644 index 0000000000..600de59ad7 --- /dev/null +++ b/code/modules/xenoarcheaology/finds/eguns_vr_ch.dm @@ -0,0 +1,12 @@ +//The chomp override of the VR override VR:CH +/obj/item/weapon/gun/energy/laser/xenoarch + icon = 'icons/obj/xenoegun/xeno-eguns_ch.dmi' + +/obj/item/weapon/gun/energy/laser/practice/xenoarch + icon = 'icons/obj/xenoegun/xeno-eguns_ch.dmi' + +/obj/item/weapon/gun/energy/xray/xenoarch + icon = 'icons/obj/xenoegun/xeno-eguns_ch.dmi' + +/obj/item/weapon/gun/energy/captain/xenoarch + icon = 'icons/obj/xenoegun/xeno-eguns_ch.dmi' diff --git a/code/modules/xenoarcheaology/finds/find_spawning.dm b/code/modules/xenoarcheaology/finds/find_spawning.dm index b121724219..2e6dc4de31 100644 --- a/code/modules/xenoarcheaology/finds/find_spawning.dm +++ b/code/modules/xenoarcheaology/finds/find_spawning.dm @@ -295,7 +295,7 @@ if(spawn_type) var/obj/item/weapon/gun/energy/new_gun = new spawn_type(src.loc) new_item = new_gun - new_item.icon_state = "egun[rand(1,12)]" + new_item.icon_state = "egun[rand(1,18)]" //CHOMPStation Edit: We now reference our own DMI which has 18 unique guns. new_gun.desc = "This is an antique energy weapon, you're not sure if it will fire or not." //5% chance to explode when first fired @@ -551,7 +551,7 @@ var/obj/item/weapon/reagent_containers/syringe/S = new_item S.volume = 30 - //If S hasn't initialized yet, S.reagents will be null. + //If S hasn't initialized yet, S.reagents will be null. //However, in that case Initialize will set the maximum volume to the volume for us, so we don't need to do anything. S.reagents?.maximum_volume = 30 diff --git a/icons/obj/xenoegun/xeno-eguns_ch.dmi b/icons/obj/xenoegun/xeno-eguns_ch.dmi new file mode 100644 index 0000000000..79b1c89bf8 Binary files /dev/null and b/icons/obj/xenoegun/xeno-eguns_ch.dmi differ diff --git a/vorestation.dme b/vorestation.dme index b5550e20e1..aa85867bd4 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -4010,6 +4010,7 @@ #include "code\modules\xenoarcheaology\effects\teleport.dm" #include "code\modules\xenoarcheaology\effects\vampire.dm" #include "code\modules\xenoarcheaology\finds\eguns.dm" +#include "code\modules\xenoarcheaology\finds\eguns_vr_ch.dm" #include "code\modules\xenoarcheaology\finds\find_spawning.dm" #include "code\modules\xenoarcheaology\finds\finds.dm" #include "code\modules\xenoarcheaology\finds\finds_defines.dm"