Starsector API
Loading...
Searching...
No Matches
PriceVariability.java
Go to the documentation of this file.
1
4package com.fs.starfarer.api.campaign.econ;
5
6public enum PriceVariability {
7 V0(0), // price holds steady regardless of demand
8 V1(0.4f),
9 //V1(0.6f),
10 V2(0.8f),
11 V3(1.2f),
12 V4(1.6f), // "normal"
13 V5(2.0f),
14 V6(2.4f),
15 V7(2.8f),
16 V8(3.2f),
17 V9(3.6f),
18 V10(4.0f),
19 ;
20 public float v;
21 private PriceVariability(float v) {
22 this.v = v;
23 }
24}