Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ---
- config:
- theme: neo-dark
- layout: fixed
- ---
- flowchart LR
- Start["Jump to a new <br> Star System"] --> HasTwoMoons{"Has a planet <br> with 2 moons?"}
- HasTwoMoons -- Yes<br>P = 3/5 --> GoodBiomes{"Has suitable <br> biomes?"}
- HasTwoMoons -- No --> Fail["Bad System"]
- GoodBiomes -- Yes<br> P = 3/20 --> IsClosest{"Is closest <br> to the station?"}
- GoodBiomes -- No --> Fail
- IsClosest -- Yes <br> P = 7/41 --> Perfect["Perfect System<br>1 in 315"]
- IsClosest -- No <br> P = 18/41 --> Okay["Okay System<br>1 in 25"]
- Fail --> Start
- HasTwoMoons:::decision
- GoodBiomes:::decision
- Fail:::failure
- IsClosest:::decision
- Perfect:::outcome
- Okay:::outcome
- classDef decision fill:#f9f,stroke:#333,color:#000
- classDef outcome fill:#9f9,stroke:#333,color:#000
- classDef failure fill:#f99,stroke:#333,color:#000
Advertisement
Add Comment
Please, Sign In to add comment