⚙️Basic Properties

Each item has a series of configurable properties.

  • initial-price: Each item has to have an initial price. You have to estimate a fair price at the beginning. Once the market develops its own valuations, the initial price will have low influence.

  • alias: Is how the item will be known and displayed to players.

  • elasticity: Determines how easily (And by how much) a price will change.

It's recommended to increase elasticity on items that you don't expect that will have a lot of transactions (Highly valuable, rare etc...)

  • noise-intensity: How much should the price of the item be affected by noise (pseudo-random fluctuations)


Example of properties of an item:

items.yml
items:
  # Identifier of the item.
  cobblestone:
    # REQUIRED:
    initial-price: 0.05
    # OPTIONAL: 
    alias: 'Cobble'
    # OPTIONAL: 
    elasticity: 0.5
    # OPTIONAL: 
    noise-intensity: 1.4
    # ...
    

Last updated