I am having trouble finding the issue with my problem. Everything checks out right when I test my program except for one thing. In my print statements while I execute the program, they do not update the health correctly like they should.
import java.util.Random;
import java.util.Scanner;
public class Dragon {
    private static int health;
    private static int attack;
    private static boolean isAlive = true;
    private static int dragonHealth;
    private static int dragonAttack;
    private static boolean isDragonAlive = true;
    public static int getHealth() {
        if(health <= 0)
        {
            health = 0;
        }
        return health;
    }
    public void setHealth(int health) {
        this.health = health;
    }
    public int getAttack() {
        return attack;
    }
    public void setAttack(int attack) {
        this.attack = attack;
    }
    public static int getDamage()
    {
        Random generator = new Random();
        int attack = generator.nextInt(10) + 1;
        health = health - dragonAttack;
        return attack;
    }
    public static boolean getAlive()
    {
        if(getHealth() <= 0)
        {
            isAlive = false;
        }
        return isAlive;
    }    
    ///////////////////////////////////////////////////////
    public static int getDragonHealth()
    {
        if(dragonHealth <= 0)
        {
            dragonHealth = 0;
        }
        return dragonHealth;
    }
    public void setDragonHealth(int dragonHealth)
    {
        this.dragonHealth = dragonHealth;
    }
    public int getDragonAttack() {
        return dragonAttack;
    }
    public void setDragonAttack(int dragonAttack) {
        this.dragonAttack = dragonAttack;
    }
    public static int getDragonDamage()
    {
        Random generator = new Random();
        int dragonAttack = generator.nextInt(10) + 1;
        dragonHealth = dragonHealth - attack;
        return dragonAttack;
    } 
    public static boolean getDragonAlive()
    {
        if(getDragonHealth() <= 0)
        {
            isDragonAlive = false;
        }
        return isDragonAlive;
    }    
    /////////////////////////////
    public String getWelcome()
    {
        String welcome = "Hello and welcome to Dragonslayer!";
        return welcome;
    }
    public static String getStab()
    {
        String stab = "You choose to stab the dragon and dealt " + getDamage() + " damage. The dragon now has " + getDragonHealth() + " health remaining.";
        return stab;
    }
    public static String getSlash()
    {
        String slash = "You choose to slash the dragon and dealt " + getDamage() + " damage. The dragon now has " + getDragonHealth() + " health remaining.";
        return slash;
    }
    public static String getCut()
    {
        String cut = "You choose to cut the dragon and dealt " + getDamage() + " damage. The dragon now has " + getDragonHealth() + " health remaining.";
        return cut;
    }
    public static String dragonAttack()
    {
        String dragonsAttack = "The dragon has done " + getDragonDamage() + " to you. You now have " + getHealth() + " health remaining.";
        return dragonsAttack;
    }
    public static String getWinner()
    {
        String result = "";
        if(getAlive() == false && getDragonAlive() == false)
        {
            result = "It is a horrid day today, as both you and the dragon have fallen.";
        }
        else if(getAlive() == true && getDragonAlive() == false)
        {
            result = "Congratulations you have killed the dragon, and survived!";
        }
        else if(getAlive() == false && getDragonAlive() == true)
        {
            result = "You have sadly fallen to the dragon, better luck next time.";
        }
        else
        {
            result = "SOMETHING WENT WRONG!!!";
        }
        return result;
    }
    public static void main(String[] args)
    {
        Scanner in = new Scanner(System.in);
        System.out.print("You come across the dragon and you have two options.  Do you run or fight? ");
        Dragon dragon1 = new Dragon();
        dragon1.setHealth(50);
        Dragon dragon2 = new Dragon();
        dragon2.setDragonHealth(50);
        while(in.hasNextLine())
        {
            switch(in.nextLine())
            {
                case "run":
                    System.out.println("I am so sorry, you could not outrun the dragon, you have been killed!");
                    break;
                case "fight":
                    while(getAlive() && getDragonAlive())
                    {
                        System.out.println("Do you want to stab, slash, or cut the dragon? ");
                        switch(in.nextLine())
                        {
                            case "stab":
                                System.out.println(getStab() + "\n" + dragonAttack());
                                break;
                            case "slash":
                                System.out.println(getSlash() + "\n" + dragonAttack());
                                break;
                            case "cut":
                                System.out.println(getCut() + "\n" + dragonAttack());
                                break;
                            default:
                                System.out.println("I am sorry that is not valid, try again. ");
                        }
                    }
                    break;
                default:
                    System.out.println(getWinner());
                    break;
            }
            System.out.println("Congratulations, you have slayed the dragon!");
            break;
        }//end of while loop in.hasNextLine().
    }//end of main
}//end of class
 
     
     
    