add_namespace = taobeirx
country_event = {
	id = taobeirx.12
	title = taobeirx.12.t
	desc = taobeirx.12.d
	picture = texan_senate
	is_triggered_only = yes
	hidden = yes
	option = {
		name = taobeirx.12.o1
		
		###############################################
		# AGGRESSIVE INFLATION DECAY SYSTEM
		# Prevents runaway GDP growth from factories
		###############################################
		
		# Tier 1: Subsistence (GDP PC < 80)
		# 0.5% monthly decay (6% annual)
		if = {
			limit = {
				check_variable = { country_GDP_per_capita < 80 }
			}
			multiply_variable = { country_GDP = 0.995 }
		}
		
		# Tier 2: Extreme Poverty (80-130)
		# 0.8% monthly decay (9.6% annual)
		if = {
			limit = {
				check_variable = { country_GDP_per_capita > 79 }
				check_variable = { country_GDP_per_capita < 130 }
			}
			multiply_variable = { country_GDP = 0.992 }
		}
		
		# Tier 3: Deep Poverty (130-200)
		# 1.2% monthly decay (14.4% annual)
		if = {
			limit = {
				check_variable = { country_GDP_per_capita > 129 }
				check_variable = { country_GDP_per_capita < 200 }
			}
			multiply_variable = { country_GDP = 0.988 }
		}
		
		# Tier 4: Developing (200-300)
		# 1.8% monthly decay (21.6% annual)
		if = {
			limit = {
				check_variable = { country_GDP_per_capita > 199 }
				check_variable = { country_GDP_per_capita < 300 }
			}
			multiply_variable = { country_GDP = 0.982 }
		}
		
		# Tier 5: Emerging (300-450)
		# 2.5% monthly decay (30% annual)
		if = {
			limit = {
				check_variable = { country_GDP_per_capita > 299 }
				check_variable = { country_GDP_per_capita < 450 }
			}
			multiply_variable = { country_GDP = 0.975 }
		}
		
		# Tier 6: Lower-Middle (450-650)
		# 3.5% monthly decay (42% annual)
		if = {
			limit = {
				check_variable = { country_GDP_per_capita > 449 }
				check_variable = { country_GDP_per_capita < 650 }
			}
			multiply_variable = { country_GDP = 0.965 }
		}
		
		# Tier 7: Upper-Middle (650-900)
		# 4.5% monthly decay (54% annual) - SWEDEN ZONE
		if = {
			limit = {
				check_variable = { country_GDP_per_capita > 649 }
				check_variable = { country_GDP_per_capita < 900 }
			}
			multiply_variable = { country_GDP = 0.955 }
		}
		
		# Tier 8: Industrialized (900-1300)
		# 5.5% monthly decay (66% annual)
		if = {
			limit = {
				check_variable = { country_GDP_per_capita > 899 }
				check_variable = { country_GDP_per_capita < 1300 }
			}
			multiply_variable = { country_GDP = 0.945 }
		}
		
		# Tier 9: Advanced (1300-1800)
		# 6.5% monthly decay (78% annual)
		if = {
			limit = {
				check_variable = { country_GDP_per_capita > 1299 }
				check_variable = { country_GDP_per_capita < 1800 }
			}
			multiply_variable = { country_GDP = 0.935 }
		}
		
		# Tier 10: High Income (1800-2500)
		# 7.5% monthly decay (90% annual) - CRUSHING PRESSURE
		if = {
			limit = {
				check_variable = { country_GDP_per_capita > 1799 }
				check_variable = { country_GDP_per_capita < 2500 }
			}
			multiply_variable = { country_GDP = 0.925 }
		}
		
		# Tier 11: Very High Income (2500-3500)
		# 9.0% monthly decay (108% annual)
		if = {
			limit = {
				check_variable = { country_GDP_per_capita > 2499 }
				check_variable = { country_GDP_per_capita < 3500 }
			}
			multiply_variable = { country_GDP = 0.910 }
		}
		
		# Tier 12: Wealthy (3500-5000)
		# 10.5% monthly decay (126% annual)
		if = {
			limit = {
				check_variable = { country_GDP_per_capita > 3499 }
				check_variable = { country_GDP_per_capita < 5000 }
			}
			multiply_variable = { country_GDP = 0.895 }
		}
		
		# Tier 13: Prosperous (5000-7000)
		# 12.0% monthly decay (144% annual)
		if = {
			limit = {
				check_variable = { country_GDP_per_capita > 4999 }
				check_variable = { country_GDP_per_capita < 7000 }
			}
			multiply_variable = { country_GDP = 0.880 }
		}
		
		# Tier 14: Leading (7000-10000)
		# 14.0% monthly decay (168% annual)
		if = {
			limit = {
				check_variable = { country_GDP_per_capita > 6999 }
				check_variable = { country_GDP_per_capita < 10000 }
			}
			multiply_variable = { country_GDP = 0.860 }
		}
		
		# Tier 15: Peak Prosperity (10000+)
		# 16.0% monthly decay (192% annual) - BASICALLY IMPOSSIBLE TO MAINTAIN
		if = {
			limit = {
				check_variable = { country_GDP_per_capita > 9999 }
			}
			multiply_variable = { country_GDP = 0.840 }
		}
		
		country_event = { months = 1 id = taobeirx.12 }
	}
}