Generate Dynamic AXL Instances

What is this?

This simple JavaScript tool allows you to generate a lot of instances at once for your ArchiveXL YAML file. It takes a list of items, or even TWO lists of items, and builds the necessary code for your YAML. Don't know what any of this gibberish means? Check out my Resources list to learn how to mod Cyberpunk 2077 yourself!

Why did I make this?

Converting my customizable tee framework to dynamic AXL meant I could generate all 10 logos for all colors, but I dreaded writing the yaml for it, to the point that I built a mini-webapp to do it for me. 😅

Also available:

Generate Item Spawn Codes and Atelier Codes - Coming Soon :tm:

Instructions for Use

  • Add first key
    From YAML:
    • - { color: black }
  • Add list of items to assign to that key. The items must be separated by new lines or by commas. Spaces inside the items will be converted to underscores. Ex: bw zebra => bw_zebra
    From YAML:
    • - { color: black }
    • - { color: white }
    • - { color: red }
    • - { color: green }
  • Optional: Add second key
    From YAML:
    • - { color: black, decal: 01 }
  • Add list of items to assign to second key. The items must be separated by new lines or by commas. Spaces inside the items will be converted to underscores. Ex: bw zebra => bw_zebra
    From YAML:
    • - { color: black, decal: 01 }
    • - { color: black, decal: 02 }
    • - { color: black, decal: 03 }
    • - { color: black, decal: 04 }
  • Click "Convert"

To-Dos