Configuration

Outline

I have my configurations files mostly figured out as of 1/16/12. There is an "aliases.yml" which creates aliases and group aliases for items to be used in the other configuration files. "research.yml" governs the tech tree and "config.yml" handles basic global configuration.

Research.yml

Here's a sample of what I'm using to test with.

  novice_tinkerer:
    cost: 60000
    description: "Simple tinkering and mechanical knowledge"
    craft:
      - redstone_torch
    use:
      - redstone
      - redstone_torch
    collect:
      - redstone
      - redstone_torch
      - redstone_torch_off # it has a different item id
  
  skilled_tinkering:
    cost: 50000
    description: "Simple triggers for devices"
    craft:
      - button
      - lever
    collect:
      - button
      - lever
    req: 
      - novice_tinkering

Aliases.yml

This is subject to change significantly. I'm trying to come up with a convenient way to include data, my current method doesn't work for everything.

light_blue_wool: 35.03

diamond_helm: 310
diamond_tunic: 311
diamond_pants: 312
diamond_boots: 313

diamond_armor:
  - diamond_helm
  - diamond_tunic
  - diamond_pants
  - diamond_boots

Comments

Posts Quoted:
Reply
Clear All Quotes