@Test
 public void testChgMAN() throws IOException, InterruptedException {
   Scanner sc = new Scanner(System.in);
   Name ok = new Name();
   Player gram = new Warrior(ok);
   gram.chgMAN(1);
   assertTrue(gram.ex_mana == 1);
 }