Kaelygon

nms flowchart

Mar 25th, 2025 (edited)
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. ---
  2. config:
  3. theme: neo-dark
  4. layout: fixed
  5. ---
  6. flowchart LR
  7. Start["Jump to a new <br> Star System"] --> HasTwoMoons{"Has a planet <br> with 2 moons?"}
  8. HasTwoMoons -- Yes<br>P = 3/5 --> GoodBiomes{"Has suitable <br> biomes?"}
  9. HasTwoMoons -- No --> Fail["Bad System"]
  10. GoodBiomes -- Yes<br> P = 3/20 --> IsClosest{"Is closest <br> to the station?"}
  11. GoodBiomes -- No --> Fail
  12. IsClosest -- Yes <br> P = 7/41 --> Perfect["Perfect System<br>1 in 315"]
  13. IsClosest -- No <br> P = 18/41 --> Okay["Okay System<br>1 in 25"]
  14. Fail --> Start
  15. HasTwoMoons:::decision
  16. GoodBiomes:::decision
  17. Fail:::failure
  18. IsClosest:::decision
  19. Perfect:::outcome
  20. Okay:::outcome
  21. classDef decision fill:#f9f,stroke:#333,color:#000
  22. classDef outcome fill:#9f9,stroke:#333,color:#000
  23. classDef failure fill:#f99,stroke:#333,color:#000
  24.  
Advertisement
Add Comment
Please, Sign In to add comment