Skip to content

Commit

Permalink
buff mauzilla
Browse files Browse the repository at this point in the history
  • Loading branch information
Kim committed Feb 2, 2020
1 parent 7afb7d4 commit 0ffac01
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions Assets/Scripts/Mauzilla.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ public class Mauzilla : MonoBehaviour {
public bool colliding = false; // Is Mauzilla currently near a Building?
public Building collidingBuilding; // The Building Mauzilla is near



public int maxHealth;
public int health;
public Image healthbar;
Expand All @@ -21,7 +19,7 @@ public class Mauzilla : MonoBehaviour {

// Start is called before the first frame update
void Start() {
maxHealth = 80;
maxHealth = 300;
health = maxHealth;
healthbar = GameObject.Find("MauzillaHealthbar").transform.GetChild(1).gameObject.GetComponent<Image>();
healthbar.fillAmount = 1.0f;
Expand Down

0 comments on commit 0ffac01

Please sign in to comment.