diff --git a/code/game/objects/items/devices/flash.dm b/code/game/objects/items/devices/flash.dm index 4f076e154a..35679544f1 100644 --- a/code/game/objects/items/devices/flash.dm +++ b/code/game/objects/items/devices/flash.dm @@ -13,11 +13,11 @@ var/times_used = 0 //Number of times it's been used. var/broken = FALSE //Is the flash burnt out? var/last_used = 0 //last world.time it was used. - var/max_flashes = 20 // How many times the flash can be used before needing to self recharge. //VOREStation Edit + var/max_flashes = 10 // How many times the flash can be used before needing to self recharge. var/halloss_per_flash = 30 var/break_mod = 3 // The percent to break increased by every use on the flash. - var/can_break = FALSE // Can the flash break? //VOREStation Edit + var/can_break = TRUE // Can the flash break? var/can_repair = FALSE // Can you repair the flash? var/repairing = FALSE // Are we repairing right now? diff --git a/code/game/objects/items/devices/flash_vr.dm b/code/game/objects/items/devices/flash_vr.dm new file mode 100644 index 0000000000..43fa3cd2d9 --- /dev/null +++ b/code/game/objects/items/devices/flash_vr.dm @@ -0,0 +1,3 @@ +/obj/item/device/flash + max_flashes = 20 // How many times the flash can be used before needing to self recharge. + can_break = FALSE // Can the flash break?