[MIRROR] Makes robotic limbs all equally weak (#11206)

Co-authored-by: Cameron Lennox <killer65311@gmail.com>
Co-authored-by: Selis <12716288+ItsSelis@users.noreply.github.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2025-07-20 05:58:24 -07:00
committed by GitHub
parent 302d18238a
commit 88b7db2bef

View File

@@ -132,16 +132,15 @@
if(!(robotic >= ORGAN_ROBOT) || robotic == ORGAN_NANOFORM) //CHOMPEdit - Proteans handle EMP's differently if(!(robotic >= ORGAN_ROBOT) || robotic == ORGAN_NANOFORM) //CHOMPEdit - Proteans handle EMP's differently
return return
var/burn_damage = 0 var/burn_damage = 0
for(var/i = 1; i <= robotic; i++) switch (severity)
switch (severity) if (1)
if (1) burn_damage += rand(5, 8)
burn_damage += rand(5, 8) if (2)
if (2) burn_damage += rand(4, 6)
burn_damage += rand(4, 6) if(3)
if(3) burn_damage += rand(2, 5)
burn_damage += rand(2, 5) if(4)
if(4) burn_damage += rand(1, 3)
burn_damage += rand(1, 3)
if(burn_damage) if(burn_damage)
take_damage(0, burn_damage) take_damage(0, burn_damage)