// Store goods merchant AUTO BUY settings
// For each ammo type, the button will buy this many rounds per cannon
#define BALLS_PER 15.0 // FLOAT - suggested balls_per: 15.0
#define GRAPE_PER 15.0 // FLOAT - suggested grape_per: 15.0
#define CHAIN_PER 15.0 // FLOAT - suggested chain_per: 15.0
#define BOMBS_PER 0.0 // FLOAT - suggested bombs_per: 15.0
#define POWDER_PER 0.6667 // FLOAT - enough cannon powder to fire this fraction of your ammo
// For sail and plank, the button will buy this many units of sail / plank per point of hull HP of the ship
#define SAIL_PER 0.01 // FLOAT - suggested sail_per: 0.01
#define PLANKS_PER 0.02 // FLOAT - suggested sail_per: 0.02
// For wheat and rum, the button will buy this many days' worth of wheat, or rum, for your current crew size.
// Note that this is for /double/ rum rations; so normally set this to half the number of days' worth of rum.
#define WHEAT_DAYS 30.0 // FLOAT - suggested wheat_per: 30.0
#define RUM_DAYS 15.0 // FLOAT - suggested rum_per: 15.0, 30 days at normal rum rations.