﻿# goods						The good being referenced
# weight					The base weight that is applied to this good based on market Sell Order share
# max_weight				The maximum weight that can be applied to this good based on market Sell Order share, only meaningful in relation to weight
# min_weight				The minimum weight that can be applied to this good based on market Sell Order share, only meaningful in relation to weight

popneed_basic_food = {
	default = grain

	entry = {
		goods = grain
		
		weight = 1.5
		max_weight = 4.0 # Maxes out at 80% of supply share
		min_weight = 0.0
	}
	
	entry = {
		goods = fish
		
		weight = 1
		max_weight = 4.0 # Maxes out at 80% of supply share
		min_weight = 0.0
	}
	
	entry = {
		goods = animal_products
		
		weight = 1
		max_weight = 2.0 # Maxes out at 80% of supply share
		min_weight = 0.0
	}
	
	entry = {
		goods = fruit
		
		weight = 0.5
		max_weight = 2.0 # Maxes out at 80% of supply share
		min_weight = 0.0
	}
	
	entry = {
		goods = bread
		
		weight = 2
		max_weight = 4.0 # Maxes out at 80% of supply share
		min_weight = 0.0
	}
	entry = {
		goods = canned_food
		
		weight = 1
		max_weight = 4.0 # Maxes out at 80% of supply share
		min_weight = 0.0
	}
}

popneed_luxury_food = {
	default = sausage
	
	entry = {
		goods = fruit
		
		weight = 1
		max_weight = 2.0 # Maxes out at 40% of supply share
		min_weight = 0.0
	}
	
	entry = {
		goods = sausage
		
		weight = 1.5
		max_weight = 2.0 # Maxes out at 40% of supply share
		min_weight = 0.0
	}
	
	entry = {
		goods = sugar
		
		weight = 0.5
		max_weight = 2.0 # Maxes out at 80% of supply share
		min_weight = 0.0
	}
	entry = {
		goods = chocolate
		
		weight = 1
		max_weight = 2.0 # Maxes out at 40% of supply share
		min_weight = 0.0
	}
	entry = {
		goods = spices
		
		weight = 1
		max_weight = 2.0 # Maxes out at 40% of supply share
		min_weight = 0.0
	}
}
