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 {
sideWinder.habitat = new Habitat("Desert", 40);
animals.add(sideWinder);
animal forestCobra = new Reptiles("Snowy Owl", "Hedwig", "M", "Screech", "Glides", 10, 10, 70, 3000);
forestCobra.dietType = new Carnivores("Mice");
forestCobra.habitat = new Habitat("Forest", 3);
animal forestCobra = new Reptiles("Forest Cobra", "Bandit", "M", "Hissss", "Bites", 5, 10, 70, 3600);
forestCobra.dietType = new Carnivores("Bird eggs");
forestCobra.habitat = new Habitat("Forest", 30);
animals.add(forestCobra);
animal leopardTortoise = new Reptiles("Snowy Owl", "Hedwig", "M", "Screech", "Glides", 10, 10, 70, 3000);
leopardTortoise.dietType = new Carnivores("Mice");
leopardTortoise.habitat = new Habitat("Grassland", 3);
animal leopardTortoise = new Reptiles("Leopard Tortoise", "Simon", "M", "Clack", "Trots", 65, 100, 80, 20000);
leopardTortoise.dietType = new Herbivores("Leafy greens");
leopardTortoise.habitat = new Habitat("Grassland", 26);
animals.add(leopardTortoise);
// *****Mammal Types*****
animal northamericanBeaver = new Mammals("Bat Falcon", "Griffith", "M", "Screech", "Soars", 9, 18, 30, 230);
northamericanBeaver.dietType = new Carnivores("Bats");
northamericanBeaver.habitat = new Habitat("Aquatic", 34);
animal northamericanBeaver = new Mammals("North American Beaver", "Tiana", "F", "Crick", "Paddles", 9, 20, 90, 320000);
northamericanBeaver.dietType = new Herbivores("Wood bark");
northamericanBeaver.habitat = new Habitat("Aquatic", 16);
animals.add(northamericanBeaver);
animal meerkat = new Mammals("Snowy Owl", "Hedwig", "M", "Screech", "Glides", 10, 10, 70, 3000);
......@@ -57,41 +57,41 @@ public class main {
meerkat.habitat = new Habitat("Desert", 3);
animals.add(meerkat);
animal silverbackGorilla = new Mammals("Snowy Owl", "Hedwig", "M", "Screech", "Glides", 10, 10, 70, 3000);
silverbackGorilla.dietType = new Carnivores("Mice");
silverbackGorilla.habitat = new Habitat("Forest", 3);
animal silverbackGorilla = new Mammals("Silverback Gorilla", "King", "M", "Oo oo", "Stomps", 13, 30, 173, 270000);
silverbackGorilla.dietType = new Herbivores("Shoots");
silverbackGorilla.habitat = new Habitat("Forest", 27);
animals.add(silverbackGorilla);
animal cheetah = new Mammals("Snowy Owl", "Hedwig", "M", "Screech", "Glides", 10, 10, 70, 3000);
cheetah.dietType = new Carnivores("Mice");
cheetah.habitat = new Habitat("Grassland", 3);
animal cheetah = new Mammals("Cheetah", "Zoom", "M", "Purr", "Sprints", 10, 20, 100, 34000);
cheetah.dietType = new Carnivores("Gazelles");
cheetah.habitat = new Habitat("Grassland", 30);
animals.add(cheetah);
animal arcticFox = new Mammals("Snowy Owl", "Hedwig", "M", "Screech", "Glides", 10, 10, 70, 3000);
arcticFox.dietType = new Carnivores("Mice");
arcticFox.habitat = new Habitat("Tundra", 3);
animal arcticFox = new Mammals("Arctic Fox", "Belle", "F", "Yip", "Pounce", 2, 4, 30, 3000);
arcticFox.dietType = new Omnivores("Lemmings", "Berries");
arcticFox.habitat = new Habitat("Tundra", 0);
animals.add(arcticFox);
// *****Fish Types*****
animal greatwhiteShark = new Fish("Bat Falcon", "Griffith", "M", "Screech", "Soars", 9, 18, 30, 230);
greatwhiteShark.dietType = new Carnivores("Bats");
greatwhiteShark.habitat = new Habitat("Aquatic", 34);
animal greatwhiteShark = new Fish("Great White Shark", "Jaws", "M", "...", "Aggressive Swimming", 26, 60, 600, 2000000);
greatwhiteShark.dietType = new Carnivores("Smaller shark");
greatwhiteShark.habitat = new Habitat("Aquatic", 25);
animals.add(greatwhiteShark);
// *****Amphibian Types*****
animal axolotl = new Amphibians("Bat Falcon", "Griffith", "M", "Screech", "Soars", 9, 18, 30, 230);
axolotl.dietType = new Carnivores("Bats");
axolotl.habitat = new Habitat("Aquatic", 34);
animal axolotl = new Amphibians("Axolotl", "Milo", "M", "...", "Smiles", 9, 15, 15, 3000);
axolotl.dietType = new Carnivores("Worms");
axolotl.habitat = new Habitat("Aquatic", 16);
animals.add(axolotl);
animal desertToad = new Amphibians("Bat Falcon", "Griffith", "M", "Screech", "Soars", 9, 18, 30, 230);
desertToad.dietType = new Carnivores("Bats");
desertToad.habitat = new Habitat("Desert", 34);
animal desertToad = new Amphibians("Desert Toad", "Wendy", "F", "Screech", "Bloats", 4, 18, 18, 230);
desertToad.dietType = new Carnivores("Spiders");
desertToad.habitat = new Habitat("Desert", 40);
animals.add(desertToad);
animal woodFrog = new Amphibians("Bat Falcon", "Griffith", "M", "Screech", "Soars", 9, 18, 30, 230);
woodFrog.dietType = new Carnivores("Bats");
woodFrog.habitat = new Habitat("Tundra", 34);
animal woodFrog = new Amphibians("Wood Frog", "Griffith", "M", "Screech", "Soars", 1, 3, 7, 220);
woodFrog.dietType = new Carnivores("Smaller Invertebrates");
woodFrog.habitat = new Habitat("Tundra", 22);
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