public NPC() {
   location = new Location(10 * StaticVar.terrainImageWidth, 10 * StaticVar.terrainImageHeight);
   direction = 270;
   canPassMountain = false; // if anything this should be under skills (Sam)
   canPassWater = false;
   inventory = new Inventory();
   equipment = new Equipment();
   stats = new NPCStats();
   stats.setLife(100);
   stats.setCurrentLife(100);
   stats.setAttackTime(StaticVar.fps);
 }