diff --git a/7-classes-objects/38_pokedex_1.py b/7-classes-objects/38_pokedex_1.py index 6b533ee..a043d31 100644 --- a/7-classes-objects/38_pokedex_1.py +++ b/7-classes-objects/38_pokedex_1.py @@ -33,7 +33,13 @@ def display_details(self): pikachu = Pokemon(25, 'Pikachu', ['Electric'], 'It has small electric sacs on both its cheeks. If threatened, it looses electric charges from the sacs.', True) charizard = Pokemon(3, 'Charizard', ['Fire', 'Flying'], 'It spits fire that is hot enough to melt boulders. It may cause forest fires by blowing flames.', False) gyarados = Pokemon(130, 'Gyarados', ['Water', 'Flying'], 'It has an extremely aggressive nature. The HYPER BEAM it shoots from its mouth totally incinerates all targets.', False) +bulbasaur = Pokemon(1, 'Bulbasaur', ['Grass', 'Poison'], 'A strange seed was planted on its back at birth. The plant sprouts and grows with this Pokemon.', True) +squirtle = Pokemon(7, 'Squirtle', ['Water'], 'When it retracts its long neck into its shell, it squirts out water with vigorous force.', True) +dragonite = Pokemon(149, 'Dragonite', ['Dragon', 'Flying'], 'It can circle the globe in just 16 hours. A kindhearted Pokemon, it leads lost and foundering ships in a storm to the safety of land.', False) pikachu.speak() charizard.speak() -gyarados.speak() \ No newline at end of file +gyarados.speak() +bulbasaur.speak() +squirtle.speak() +dragonite.speak()