class Dragon extends Competitor 
{	public Dragon(String nm) 
	{	super(nm);
	}

	public void fight(Competitor other) 
	{	if (this.getHealth() > 0 && other.getHealth() > 0) 
		{	System.out.println(this.getName() + " singes " + other.getName() + " with his firey dragon breath!");
			int blow = gen.nextInt(this.getHealth());
			other.decHealth(blow);
}	}	}