this.face = (int) (Math.abs(face % 6) + 1);
return this.face;
Die d = new Die(2); for (int i = 0; i < 10; i++) { d.roll(); System.out.println(d.getFace()); }
this.face = (int) ((Math.abs(shooter.nextInt()) % 6) + 1); return this.face;