diff --git a/Products.java b/Products.java index 3c7675cc8371ce1f53720dac649cc1ec8dd5d2d2..00e0bcf1c33e3b3e08ade700613b0c7cce764d5e 100644 --- a/Products.java +++ b/Products.java @@ -1,5 +1,14 @@ /* 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 joshsProduct() { return new Product( "Dirt", @@ -69,4 +78,14 @@ public class Products { /* a good class, but not as good as cse391 */ 5.95 ); } + + public Product aamangusProduct() { + return new Product( + "Broody Chicken", + "It screams!", + "Discord Chicken.PNG", + "image of a broody chicken", + 1.01 + ); + } } diff --git a/Staff.java b/Staff.java index 035db254624618e20112c449ee70969a9a3f0fe3..549122b5474f7fdde4e69c4ba032ac3b4ccb2ab7 100644 --- a/Staff.java +++ b/Staff.java @@ -1,5 +1,13 @@ public class Staff { - + public Employee rairai77() { + return new Employee( + "Raahil Jain", + "Student", + "Sleepy", + "snorlax.png", + "A snorlax sitting" + ); + } public Employee faangPup() { return new Employee( "Steve", @@ -20,6 +28,16 @@ public class Staff { ); } + public Employee mxw() { + return new Employee( + "Matt", + "candy thrower", + "tired", + "matt.png", + "matt smiling in front of a polka-dotted wall." + ); + } + public Employee antonio6() { return new Employee( "Antonio", @@ -79,4 +97,14 @@ public class Staff { "A dog!" ); } + + public Employee aamangus() { + return new Employee( + "Anthony", + "Student", + "studies", + "Discord Chicken.PNG", + "funny chicken" + ); + } } diff --git a/images/products/cheeto.png b/images/products/cheeto.png new file mode 100644 index 0000000000000000000000000000000000000000..f214c70fcccebf9da799deb04e4eec6b267a4d3e Binary files /dev/null and b/images/products/cheeto.png differ diff --git a/images/staff/Discord Chicken.PNG b/images/staff/Discord Chicken.PNG new file mode 100644 index 0000000000000000000000000000000000000000..96fa649a65daa0aaeed5458cda9263a9edf28d21 Binary files /dev/null and b/images/staff/Discord Chicken.PNG differ diff --git a/images/staff/matt.png b/images/staff/matt.png new file mode 100644 index 0000000000000000000000000000000000000000..dd8176989ab173e9dc41568f7e4c3d4a69dc95b0 Binary files /dev/null and b/images/staff/matt.png differ diff --git a/images/staff/snorlax.png b/images/staff/snorlax.png new file mode 100644 index 0000000000000000000000000000000000000000..7e4cb191089d41cc90ff14d6422c5bd421877da3 Binary files /dev/null and b/images/staff/snorlax.png differ