public void BolsonaroPartidoOff() { MeuPartido.Remove(Bolsonaro); BolsoPartido.SetActive(false); BolsoDentroPartido = 0; PlayerPrefs.SetInt("BolsoDentroPartido", BolsoDentroPartido); PlayerPrefs.SetInt("BolsoComprado", 1); }
// ------------------------------------------------------------------ // // -------------------- BOLSONARO ------------------------ // public void BolsonaroPartidoOn() { int precoBolso = 200; int bolsoComprado = 0; if (PlayerPrefs.GetInt("Verba") >= precoBolso) { PlayerPrefs.SetInt("PodeComprarBolso", 1); } if (PlayerPrefs.GetInt("PodeComprarBolso") == 1) { if (MeuPartido.Count < 4 && PlayerPrefs.GetInt("BolsoComprado") == 0) { PlayerPrefs.SetInt("Verba", (PlayerPrefs.GetInt("Verba") - precoBolso)); bolsoComprado = 1; PlayerPrefs.SetInt("BolsoComprado", bolsoComprado); } if (MeuPartido.Count >= 4) { print("O partido pode contar apenas 4 políticos."); } } if (PlayerPrefs.GetInt("BolsoComprado") == 1) { precoBolso = 0; if (MeuPartido.Count < 4) { BolsoPartido.SetActive(true); BolsoDentroPartido = 1; PlayerPrefs.SetInt("BolsoDentroPartido", BolsoDentroPartido); if (!MeuPartido.Contains(Bolsonaro)) { MeuPartido.Add(Bolsonaro); } } } }