001/**
002 * 
003 */
004package com.fs.starfarer.api.campaign.econ;
005
006public enum PriceVariability {
007        V0(0), // price holds steady regardless of demand
008        V1(0.4f),
009        //V1(0.6f),
010        V2(0.8f),
011        V3(1.2f),
012        V4(1.6f), // "normal"
013        V5(2.0f),
014        V6(2.4f),
015        V7(2.8f),
016        V8(3.2f),
017        V9(3.6f),
018        V10(4.0f),
019        ;
020        public float v;
021        private PriceVariability(float v) {
022                this.v = v;
023        }
024}