View Javadoc

1   package cz.cuni.amis.pogamut.udk.communication.translator.itemdescriptor;
2   
3   /**
4    * Health descriptor provides an additional information about health items like vials, medkits etc.
5    *
6    * @author Ondrej
7    */
8   public class HealthDescriptor extends ItemDescriptor {
9       
10          private boolean superHealth;
11  
12  	@Override
13  	public String toString() {
14  		// TODO Auto-generated method stub
15  		return null;
16  	}
17          
18          /**
19           * If this health can heal above maximum health (usually above 100).
20           * 
21           * @return superHealth
22           */
23          public boolean isSuperHealth() {
24              return superHealth;
25          }
26                  
27  
28  }
29