Advertisement
Guest User

Untitled

a guest
Jan 9th, 2014
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. digraph {
  2. compound=true
  3.  
  4. Mother [label="Mother of All"]
  5. Hellhounds
  6. Leviathan
  7. Reapers
  8.  
  9. subgraph cluster_angels {
  10. label="Angels"
  11. Metatron
  12. Castiel
  13. subgraph cluster_archangels {
  14. label="Archangels"
  15. Lucifer
  16. Gabriel
  17. Michael
  18. Raphael
  19. }
  20.  
  21. Lucifer -> Castiel [ltail=cluster_archangels]
  22. Michael -> Lucifer
  23. Castiel -> Metatron
  24. }
  25. Leviathan -> Castiel
  26. Alastair -> Reapers
  27. subgraph cluster_demons {
  28. label="Demons"
  29. Lilith
  30. Azazel
  31. Alastair
  32. Crowley
  33. subgraph cluster_black {
  34. label="Black-Eyed Demons"
  35. Meg
  36. Ruby
  37. }
  38.  
  39. Lilith -> Azazel
  40. Lilith -> Alastair
  41. Crowley -> Meg
  42. Crowley -> Ruby
  43. Alastair -> Meg
  44. Alastair -> Ruby
  45. Alastair -> Crowley
  46. }
  47. Hellhounds -> Meg [lhead=cluster_black]
  48. subgraph cluster_horsement {
  49. label="Four Horsemen"
  50. Death
  51. War
  52. Famine
  53. Pestilence
  54. Death -> War -> Pestilence -> Famine [style="invis"]
  55. }
  56. {rank=same
  57. God
  58. Death
  59. }
  60. God -> Death
  61. Death -> God
  62. God -> Michael [lhead=cluster_archangels]
  63.  
  64. Lucifer -> Lilith
  65.  
  66. Leviathan -> Mother [style="invis"]
  67. Famine -> Castiel
  68. Mother -> Castiel
  69. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement