# instantiate a herd
    herd_1 = Herd()

    # assign the herd a name
    herd_1.herd_name = "land before time"

    # add dinosaurs to herd --> for multiple, separate with commas
    print(herd_1.add_to_herd(dino, gino, nino_brown))

    # show herd stats
    herd_1.herd_stats()

    # Instantiate a weapon object. Display weapon. Generate a weapon
    weapon_1 = Weapon()
    weapon_1.display_weapon()
    print(weapon_1.generate_weapon())

    # display weapon and attain weapon
    weapon_1.display_weapon()
    print(dex.attain_weapon(weapon_1))

    # display robot full stats
    dex.robot_stats()

    # attack dinosaur
    print(dex.attack(nino_brown))
    print(dex.attack(nino_brown))
    print(dex.attack(nino_brown))
    print(dex.attack(nino_brown))

    # attack robot