Ejemplo n.º 1
0
 public void VaccineLevel1()
 {
     if (totalFunds >= 500)
     {
         totalFunds         -= 500;
         vaccinesPerSec      = 100;
         readyToSentVaccines = true;
         VAC2.SetActive(true);
         MT2.SetActive(true);
     }
 }
Ejemplo n.º 2
0
 public void InformationLevel1()
 {
     if (totalFunds >= 500)
     {
         gameObject.GetComponent <Plague>().insideChance  *= 0.8f;
         gameObject.GetComponent <Plague>().outsideChance *= 0.8f;
         totalFunds -= 500;
         I2.SetActive(true);
         MT2.SetActive(true);
     }
 }
Ejemplo n.º 3
0
 public void MoneyLevel1()
 {
     if (totalFunds >= 500)
     {
         if (passiveIncome == 10)
         {
             passiveIncome += 20;
             totalFunds    -= 500;
             MB2.SetActive(true);
             MT2.SetActive(true);
         }
     }
 }