示例#1
0
 // Function from file: mutations.dm
 public override void on_life(Mob_Living owner = null)
 {
     if (owner.getFireLoss() != 0)
     {
         if (Rand13.PercentChance(1))
         {
             owner.heal_organ_damage(0, 1);
         }
     }
     return;
 }