Skip to content

Instantly share code, notes, and snippets.

@Radon8472
Last active April 1, 2024 09:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Radon8472/76fcdebfc1b433225b375a99d93ef20c to your computer and use it in GitHub Desktop.
Save Radon8472/76fcdebfc1b433225b375a99d93ef20c to your computer and use it in GitHub Desktop.
TerraFirmaCraft Alloy recipes

Diagram to create BlueSteel in minecraft TerraFirmaCraft

%%{ init: { 'flowchart': { 'curve': 'linear' } } }%%
flowchart TD 
    CU[Copper]
    ZN[Zinc]
    AU[Gold]
    NI[Nickel]
    AG[Silver]

    CU --> |20-40%| SS[Sterling Silver]
    AG --> |60-80%| SS

    BI[Bismuth]

    CU --> |50-65%| BB[Bismuth Bronze]
    BI --> |10-20%| BB
    ZN --> |20-30%| BB

    AG --> |10-25%| AUAGCU[Black Bronze]
    AU --> |10-25%| AUAGCU
    CU --> |50-70%| AUAGCU
    


    FE[Iron] &  C[Coal] --> |GregTech Blast F.| S[Steel]

    S --> |50-70%| WS[Weak Steel]
    NI --> |15-25%| WS
    AUAGCU--> |15-25%| WS

    WS & PI[Pig Iron] --> |Weld| CBS[Carbon Black Steel]
        --> |Anvil| BLS[Black Steel]

    SS --> |10-15%| WBS
    BB --> |10-15%| WBS
    S --> |20-25%| WBS
    BLS --> |50-55%| WBS[Weak Blue Steel]

    BLS & WBS --> |Weld| HCBS[H. Carbon Blue Steal] 
              --> |Anvil| BS[Blue Steal]

Created using https://mermaid.live

Flowchart Syntax

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment