Commit e638dd70 authored by elijah vasquez's avatar elijah vasquez 🦍

commits

parent 6de8e4c3
No preview for this file type
No preview for this file type
File added
File added
No preview for this file type
File added
File added
File added
No preview for this file type
No preview for this file type
...@@ -36,20 +36,20 @@ public class main { ...@@ -36,20 +36,20 @@ public class main {
sideWinder.habitat = new Habitat("Desert", 40); sideWinder.habitat = new Habitat("Desert", 40);
animals.add(sideWinder); animals.add(sideWinder);
animal forestCobra = new Reptiles("Snowy Owl", "Hedwig", "M", "Screech", "Glides", 10, 10, 70, 3000); animal forestCobra = new Reptiles("Forest Cobra", "Bandit", "M", "Hissss", "Bites", 5, 10, 70, 3600);
forestCobra.dietType = new Carnivores("Mice"); forestCobra.dietType = new Carnivores("Bird eggs");
forestCobra.habitat = new Habitat("Forest", 3); forestCobra.habitat = new Habitat("Forest", 30);
animals.add(forestCobra); animals.add(forestCobra);
animal leopardTortoise = new Reptiles("Snowy Owl", "Hedwig", "M", "Screech", "Glides", 10, 10, 70, 3000); animal leopardTortoise = new Reptiles("Leopard Tortoise", "Simon", "M", "Clack", "Trots", 65, 100, 80, 20000);
leopardTortoise.dietType = new Carnivores("Mice"); leopardTortoise.dietType = new Herbivores("Leafy greens");
leopardTortoise.habitat = new Habitat("Grassland", 3); leopardTortoise.habitat = new Habitat("Grassland", 26);
animals.add(leopardTortoise); animals.add(leopardTortoise);
// *****Mammal Types***** // *****Mammal Types*****
animal northamericanBeaver = new Mammals("Bat Falcon", "Griffith", "M", "Screech", "Soars", 9, 18, 30, 230); animal northamericanBeaver = new Mammals("North American Beaver", "Tiana", "F", "Crick", "Paddles", 9, 20, 90, 320000);
northamericanBeaver.dietType = new Carnivores("Bats"); northamericanBeaver.dietType = new Herbivores("Wood bark");
northamericanBeaver.habitat = new Habitat("Aquatic", 34); northamericanBeaver.habitat = new Habitat("Aquatic", 16);
animals.add(northamericanBeaver); animals.add(northamericanBeaver);
animal meerkat = new Mammals("Snowy Owl", "Hedwig", "M", "Screech", "Glides", 10, 10, 70, 3000); animal meerkat = new Mammals("Snowy Owl", "Hedwig", "M", "Screech", "Glides", 10, 10, 70, 3000);
...@@ -57,41 +57,41 @@ public class main { ...@@ -57,41 +57,41 @@ public class main {
meerkat.habitat = new Habitat("Desert", 3); meerkat.habitat = new Habitat("Desert", 3);
animals.add(meerkat); animals.add(meerkat);
animal silverbackGorilla = new Mammals("Snowy Owl", "Hedwig", "M", "Screech", "Glides", 10, 10, 70, 3000); animal silverbackGorilla = new Mammals("Silverback Gorilla", "King", "M", "Oo oo", "Stomps", 13, 30, 173, 270000);
silverbackGorilla.dietType = new Carnivores("Mice"); silverbackGorilla.dietType = new Herbivores("Shoots");
silverbackGorilla.habitat = new Habitat("Forest", 3); silverbackGorilla.habitat = new Habitat("Forest", 27);
animals.add(silverbackGorilla); animals.add(silverbackGorilla);
animal cheetah = new Mammals("Snowy Owl", "Hedwig", "M", "Screech", "Glides", 10, 10, 70, 3000); animal cheetah = new Mammals("Cheetah", "Zoom", "M", "Purr", "Sprints", 10, 20, 100, 34000);
cheetah.dietType = new Carnivores("Mice"); cheetah.dietType = new Carnivores("Gazelles");
cheetah.habitat = new Habitat("Grassland", 3); cheetah.habitat = new Habitat("Grassland", 30);
animals.add(cheetah); animals.add(cheetah);
animal arcticFox = new Mammals("Snowy Owl", "Hedwig", "M", "Screech", "Glides", 10, 10, 70, 3000); animal arcticFox = new Mammals("Arctic Fox", "Belle", "F", "Yip", "Pounce", 2, 4, 30, 3000);
arcticFox.dietType = new Carnivores("Mice"); arcticFox.dietType = new Omnivores("Lemmings", "Berries");
arcticFox.habitat = new Habitat("Tundra", 3); arcticFox.habitat = new Habitat("Tundra", 0);
animals.add(arcticFox); animals.add(arcticFox);
// *****Fish Types***** // *****Fish Types*****
animal greatwhiteShark = new Fish("Bat Falcon", "Griffith", "M", "Screech", "Soars", 9, 18, 30, 230); animal greatwhiteShark = new Fish("Great White Shark", "Jaws", "M", "...", "Aggressive Swimming", 26, 60, 600, 2000000);
greatwhiteShark.dietType = new Carnivores("Bats"); greatwhiteShark.dietType = new Carnivores("Smaller shark");
greatwhiteShark.habitat = new Habitat("Aquatic", 34); greatwhiteShark.habitat = new Habitat("Aquatic", 25);
animals.add(greatwhiteShark); animals.add(greatwhiteShark);
// *****Amphibian Types***** // *****Amphibian Types*****
animal axolotl = new Amphibians("Bat Falcon", "Griffith", "M", "Screech", "Soars", 9, 18, 30, 230); animal axolotl = new Amphibians("Axolotl", "Milo", "M", "...", "Smiles", 9, 15, 15, 3000);
axolotl.dietType = new Carnivores("Bats"); axolotl.dietType = new Carnivores("Worms");
axolotl.habitat = new Habitat("Aquatic", 34); axolotl.habitat = new Habitat("Aquatic", 16);
animals.add(axolotl); animals.add(axolotl);
animal desertToad = new Amphibians("Bat Falcon", "Griffith", "M", "Screech", "Soars", 9, 18, 30, 230); animal desertToad = new Amphibians("Desert Toad", "Wendy", "F", "Screech", "Bloats", 4, 18, 18, 230);
desertToad.dietType = new Carnivores("Bats"); desertToad.dietType = new Carnivores("Spiders");
desertToad.habitat = new Habitat("Desert", 34); desertToad.habitat = new Habitat("Desert", 40);
animals.add(desertToad); animals.add(desertToad);
animal woodFrog = new Amphibians("Bat Falcon", "Griffith", "M", "Screech", "Soars", 9, 18, 30, 230); animal woodFrog = new Amphibians("Wood Frog", "Griffith", "M", "Screech", "Soars", 1, 3, 7, 220);
woodFrog.dietType = new Carnivores("Bats"); woodFrog.dietType = new Carnivores("Smaller Invertebrates");
woodFrog.habitat = new Habitat("Tundra", 34); woodFrog.habitat = new Habitat("Tundra", 22);
animals.add(woodFrog); animals.add(woodFrog);
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment