示例#1
0
 private static void BackgroundCombat()
 {
     buffer.PrintBackground();
     buffer.Print(1, 0, "COMBATE");
     buffer.Print(1, 17, "<<ATACAR -- DEFENDER -- HUIR -- HABILIDAD -- CONSUMIR>>");
     buffer.PrintText(16);
     buffer.Print(101, 3, "Hp  -> " + pl.GetHealth() + "/" + pl.GetMHealth());
     buffer.Print(101, 5, "Att -> " + pl.GetAtt());
     buffer.Print(101, 7, "Def -> " + pl.GetDef());
     buffer.Print(101, 9, "Att M. -> " + pl.GetAttMa());
     buffer.Print(101, 11, "Maná -> " + pl.GetMana() + "/" + pl.GetManaM());
     buffer.Print(101, 13, "Vel -> " + pl.GetSpeed());
     buffer.PrintScreen();
 }