Guest User

Untitled

a guest
Jun 22nd, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. '''
  2. Dinozords Standard factory.
  3. '''
  4. from abc import ABCMeta, abstractmethod
  5.  
  6. class Dinozord(metaclass = ABCMeta):
  7.  
  8. @abstractmethod
  9. def power_up(self):
  10. pass
  11.  
  12. @abstractmethod
  13. def attack(self):
  14. pass
  15.  
  16. class Tyrannosaurus(Dinozord):
  17. '''A red Tyrannosaurus zord piloted by Jason Lee Scott, the Red Ranger.
  18. It can shoot laser beams from both its eyes and mouth, hover for short
  19. distances, and disintegrate enemies with a ground charge attack.
  20. '''
  21. pass
  22.  
  23. class Mastodon(Dinozord):
  24. '''A black mastodon zord piloted by Zack Taylor, the Black Ranger.
  25. It can freeze enemies by blasting liquid nitrogen from its trunk.
  26. '''
  27.  
  28. class Triceratops(Dinozord):
  29. '''A blue Triceratops zord piloted by Billy Cranston, the Blue Ranger.
  30. It has a tail-mounted laser cannon, and can launch its two horns
  31. to capture the enemies with chains.
  32. '''
  33. pass
  34.  
  35. class Sabertooth_Tiger(Dinozord):
  36. '''
  37. A yellow sabertooth tiger zord piloted by Trini Kwan, the Yellow Ranger.
  38. It has a tail-mounted laser cannon.
  39. '''
  40. pass
  41.  
  42. class Pterodactyl(Dinozord):
  43. '''A pink pterodactyl zord piloted by Kimberly Hart, the Pink Ranger.
  44. It is the only Dinozord that can fly, and has twin laser cannons.
  45. '''
  46. pass
Add Comment
Please, Sign In to add comment