mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-27 06:54:18 +01:00
Slight decloner damage nerf, Tumors are now a chance (#23102)
Reduces decloner damage so it falls just under the threshold to give a tumor, on all but the most powerful guns. Tumors from genetic damage are now also a chance, rather than guaranteed at any genetic damage over 10. You are guaranteed to have at least one tumor if your limb reaches maximum genetic damage.
This commit is contained in:
@@ -1694,7 +1694,7 @@ Note that amputating the affected organ does in fact remove the infection from t
|
||||
var/last_gene_dam = genetic_degradation
|
||||
genetic_degradation = min(100,max(0,genetic_degradation + amount))
|
||||
if(genetic_degradation > 10)
|
||||
owner.infest_with_parasite(owner, BP_TUMOUR_SPREADING, src)
|
||||
owner.infest_with_parasite(owner, BP_TUMOUR_SPREADING, src, (genetic_degradation + 10)) //Guarantees at least one tumour if you reach maximum degredation.
|
||||
if(genetic_degradation > 20)
|
||||
if(!(status & ORGAN_MUTATED) && prob(genetic_degradation))
|
||||
mutate()
|
||||
|
||||
Reference in New Issue
Block a user