Skip to content
Snippets Groups Projects
Products.java 3.56 KiB
/* check out these products! */
public class Products { /* a good class, but not as good as cse391 */

    public Product rairai77sProudct() {
        return new Product(
            "Cheeto Dust",
            "Just the good part (spicy)",
            "cheetos.png",
            "News about cheeto dust taking over",
            42.024
        );
    }
    public Product mehulcsProduct() {
    	return new Product(
	    "Giant Gummy Bear",
	    "Big fatty tast gummy bear",
	    "gummybear.jpg",
	    "Picture of a beautiful gummy bear",
	    10000.10	    
	);
    }
    public Product kevinsProduct(){
	return new Product(
	    "Basketball",
	    "Bouncy bouncy orange ball",
	    "basketball.jpg",
	    "Picture of a basketball",
	    42.0
	);
    }

    public Product joshsProduct() {
        return new Product(
            "Dirt",
            "The good stuff",
            "dirt.jpeg",
            "some normal brown dirt",
            0.0
        );
    }

    public Product antoniosProduct() {
	return new Product(
	    "Emacs",
	    "It's better than Vim",
	    "emacs_icon.png",
	    "GNU emacs logo",
	    0.0
	);
    }

    public Product iansProduct() {
        return new Product(
            "Pasta",
            "Very nutritious",
            "pasta.jpg",
            "Bowl of pasta",
            100.0
        );
    }

    public Product aryasProduct() {
        return new Product(
	    "Monkey",
	    "Just an animal",
	    "monkey.jpg",
	    "monkey image",
	    4.29
	);
    }

    public Product petersProduct() {
        return new Product(
	    "Goggles",
	    "Better then reality",
	    "visiongoggles.jpg",
	    "image of goggles",
	    3498
	);
    }

    public Product tuongcatProduct() {
        return new Product(
            "Panda",
            "panda",
            "panda.jpg",
            "panda image",
            10000
        );
    }

    public Product raosProduct() {
	return new Product(
	    "Keychain",
	    "A cool keychain",
	    "keychain.jpg",
	    "image of a cool keychain",
	    5.95
	);
    }

    public Product isaacsProduct() {
	return new Product(
	    "Bucolic Green Hills",
	    "Take a deep breath and relax",
	    "windows_xp_bliss.jpeg",
	    "rolling grass fields, blue skies, white clouds",
	    100000
        );
    }

    public Product aamangusProduct() {
    	return new Product(
		"Broody Chicken",
		"It screams!",
		"Discord Chicken.PNG",
		"image of a broody chicken",
		1.01
	);
    }

    public Product tanjalsProduct() {
	return new Product(
		"Creatine",
		"Big muscle",
		"creatine.jpg",
		"Number 1 lifting supplement",
		39.95
	);
    }

    public Product keshavsProduct() {
	return new Product(
		"Dirt",
		"Great for plants!",
		"dirt.jpg",
		"image of the product",
		4.67
		);
	}

    public Product dhvbnlProduct() {
        return new Product (
                "proteen",
                "gets you jacked",
                "proteen.jpg",
                "image of proteen powder",
                9.99
        );
    }

    public Product yixuan19Product(){
    	return new Product (
		"Goomba",
		"The No.1 VTB from Hololive",
		"Avatar.png",
		"Picture of Gawr Gura",
		114514.0
   	);
    }

    public Product swangsamProduct(){
   	return new Product(
		"Pullup Bar",
		"It builds back",
		"pullup.png",
		"pullup bar image",
		1.2
	);
    }

    public Product ank05Product(){
    	return new Product(
		"Water",
		"Yum",
		"water.jpg",
		"bottled water",
		100
	);	
	
    }

    public Product skuttyProduct() {
	return new Product(
	    "Rake",
	    "A rake to gather leaves",
	    "rake.jpg",
	    "image of a rake",
	    5959.59
	);
    }
}