Lowered immunity chance, it fires way too often with multiple viruses and such.

This commit is contained in:
Chinsky
2013-10-06 13:25:23 +04:00
parent 35a09b5bfc
commit e76721b6e8

View File

@@ -38,7 +38,7 @@
if(mob.stat == 2)
return
if(stage <= 1 && clicks == 0) // with a certain chance, the mob may become immune to the disease before it starts properly
if(prob(20))
if(prob(5))
mob.antibodies |= antigen // 20% immunity is a good chance IMO, because it allows finding an immune person easily
else
if(mob.radiation > 50)