Yu-Gi-Oh! Deck Building and Card Inventory Management web interface written in Common Lisp, utilizing HTMX.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

41 lines
995B

  1. digraph G {
  2. fontname="Helvetica,Arial,sans-serif"
  3. edge [fontname="Helvetica,Arial,sans-serif"]
  4. node [fontname="Helvetica,Arial,sans-serif"];
  5. subgraph cluster_0 {
  6. style=filled;
  7. color=lightgrey;
  8. node [style=filled,color=white];
  9. "YGO-SET-PASSCODE" -> "YGO-SET-ID";
  10. label = "YGO-SET";
  11. }
  12. subgraph cluster_1 {
  13. node [style=filled];
  14. label = "YGO-CARD";
  15. "YGO-CARD-PASSCODE";
  16. color=blue;
  17. }
  18. start -> "Mystic Tomato" -> 83011278;
  19. 83011278 -> "YGO-CARD-PASSCODE";
  20. 83011278 -> "YGO-SET-PASSCODE";
  21. "YGO-CARD-PASSCODE" -> "YGO-SET-PASSCODE";
  22. "YGO-SET-PASSCODE" -> "YGO-CARD-PASSCODE";
  23. // "YGO-CARD-PASSCODE" -> end;
  24. // "YGO-SET-PASSCODE" -> end;
  25. 83011277 -> "YGO-ALTERNATE-ID" -> "YGO-CARD-PASSCODE";
  26. "VARIANT-CONDITION" -> "YGO-SET-ITEM";
  27. "YGO-SET-ID" -> "YGO-SET-ITEM";
  28. "YGO-SET-ITEM" -> end;
  29. start [shape=Mdiamond];
  30. end [shape=Msquare];
  31. }