﻿### Play with the Monkey ###
fp3_play_with_buzina_decision = { #by Ola Jentzsch
	picture = {
		reference = "gfx/interface/illustrations/decisions/decision_misc.dds"
	}
	desc = fp3_play_with_buzina_decision_desc
	selection_tooltip = fp3_play_with_buzina_decision_tooltip

	ai_check_interval = 0

	cooldown = { days = 1825 }

	is_shown = {
		has_character_modifier = fp3_sickly_monkey_modifier 
	}
	
	is_valid_showing_failures_only = { is_available = yes }

	effect = {

		random_list = {
			80 = {
				desc = you_have_fun.flavor
				send_interface_toast = {
					type = event_toast_effect_good
					title = play_with_monkey.success
					left_icon = root
					add_stress = medium_stress_loss 
				}
			}
			20 = {
				desc = you_get_scratched.flavor
				send_interface_toast = {
					type = event_toast_effect_bad
					title = play_with_monkey.failure
					left_icon = root
					increase_wounds_effect = { REASON = botched_head_binding } 
				}
			}
		}
	}
	
	ai_potential = { always = yes }

	ai_will_do = {
		base = 0

		modifier = {
			add = 100
			stress > 10
		}
	}
}

