public class Main {
    public static void main(String[] args) {

        Ailer trex = new Ailer("toto", 100001, 500, 100);
        Trex trex2 = new Trex("toto2", 100000, 500);


        trex.grosCoup(trex2);


        trex.fiche();
        trex2.fiche();
    }
}
