*if name_set
	*text_image self.png center Self
	You are called ${prenom}.
	*if chara_generation_done
		A proud
		*if gender = "male"
			son
			*goto continue_block
		*elseif gender = "female"
			daughter
			*goto continue_block
		*else
			member
			*goto continue_block
		*label continue_block
		of the ${tribe} clan.
	*if wolf_moon_selected
		*goto continue_block_2
	*else
		*goto continue_block_2
	*label continue_block_2
	*if wolf_moon_selected
		Ruled by the $!{wolf_moon} Wolf Moon.
		*goto continue_block_3
	*label continue_block_3
	*if pacifism 
		You are a pacifist.
	*if deviousness
		You are truly devious. 

*comment The character description above reads as a series of sentences about the 
*comment character. Because the description is iterative, I've designed it as a
*comment series of "blocks" in order to ensure that the spacing is always 
*comment appropriate.
 
*text_image skills.png center Skills
*stat_chart
	text Survival
	text Combat
	text Ritual
	text Quickthinking Quick-Thinking
	text Sensitivity
	text Influence
	text Restraint
*comment endif

*text_image disposition.png center Disposition
How you tend to approach conflicts:
*stat_chart
	opposed_pair Action
		Deliberation
	opposed_pair Selfishness
		Equity 
*comment endif

*text_image favor.png center Favor
*if riser_affinity <= 35
	You are [b]enemies[/b] with the Rising Sun.
	*goto eel_favor
*elseif riser_affinity < 50
	You are [b]mistrusted[/b] by the Rising Sun.
	*goto eel_favor
*elseif riser_affinity > 50
	You are [b]trusted[/b] by the Rising Sun.
	*goto eel_favor
*elseif riser_affinity >= 70
	You are an [b]ally[/b] of the Rising Sun.
	*goto eel_favor
*else
	You have no particular relationship with the Rising Sun.
	*goto eel_favor
*label eel_favor
*if eel_affinity <= 35
	*line_break
	You are an [b]enemy[/b] of the god Eel.
	*goto spider_favor
*elseif eel_affinity < 50
	*line_break
	You are [b]mistrusted[/b] by the god Eel.
	*goto spider_favor
*elseif eel_affinity > 50
	*line_break
	You are [b]trusted[/b] by the god Eel.
	*goto spider_favor
*elseif eel_affinity >= 70
	*line_break
	You are an [b]ally[/b] of the god Eel.
	*goto spider_favor
*else
	*line_break
	You have no particular relationship with the god Eel.
	*goto spider_favor
*label spider_favor
*if ara_affinity <= 35 
	*line_break
	You are an [b]enemy[/b] of the spider avatar, ${ara_name}.
	*goto hawk_favor
*elseif ara_affinity < 50
	*line_break
	You are [b]mistrusted[/b] by the spider avatar, ${ara_name}.
	*goto hawk_favor
*elseif ara_affinity > 50
	*line_break
	You are [b]trusted[/b] by the spider avatar, ${ara_name}.
	*goto hawk_favor
*elseif ara_affinity >= 70
	*line_break
	You are an [b]ally[/b] of the spider avatar, ${ara_name}.
	*goto hawk_favor
*else
	*line_break
	You have no particular relationship with the Spider avatar.
	*goto hawk_favor
*label hawk_favor
*if hawk_affinity <= 35
	*line_break
	You are an [b]enemy[/b] of the god Hawk.
	*goto bear_favor
*elseif hawk_affinity < 50
	*line_break
	You are [b]mistrusted[/b] by the god Hawk.
	*goto bear_favor
*elseif hawk_affinity > 50
	*line_break
	You are [b]trusted[/b] by the god Hawk.
	*goto bear_favor
*elseif hawk_affinity >= 70
	*line_break
	You are an [b]ally[/b] of the god Hawk.
	*goto bear_favor
*else
	*line_break
	You have no particular relationship with the god Hawk.
	*goto bear_favor
*label bear_favor
*if bear_affinity <= 35
	*line_break
	You are an [b]enemy[/b] of the god Bear.
	*goto path_choice
*elseif bear_affinity < 50
	*line_break
	You are [b]mistrusted[/b] by the god Bear.
	*goto path_choice
*elseif bear_affinity > 50
	*line_break
	You are [b]trusted[/b] by the god Bear.
	*goto path_choice
*elseif bear_affinity >= 70
	*line_break
	You are an [b]ally[/b] of the god Bear.
	*goto path_choice
*else
	*line_break
	You have no particular relationship with the god Bear.
	*goto path_choice
*label path_choice

*if (action > deliberation) and (selfishness >= equity)
	*set path_title "Wolf"
	*set path_description "You are like [b]Wolf[/b], savage and oft violently individualistic."
	*goto path_title 
*elseif (deliberation > action) and (equity >= selfishness)
	*set path_title "Bear"
	*set path_description "Like [b]Bear[/b] you are deliberate, ponderous and unyielding."
	*goto path_title
*elseif (action >= deliberation) and (equity > selfishness)
	*set path_title "Hawk"
	*set path_description "You are closest to [b]Hawk[/b]—focused on equality, justice, and doing the best for the most."
	*goto path_title
*elseif (deliberation >= action) and (selfishness > equity)
	*set path_title "Spider"
	*set path_description "A shrewd thinker concerned with their own impulses; you are most like [b]Spider[/b]."
	*goto path_title

*label path_title

Path: ${path_title}
*line_break
${path_description} 

Gods' Regard: ${pantheon_regard}
*line_break
*if pantheon_regard < 5
	The pantheon of gods has a collectively unfavorable view of your actions.
	*goto end_of_stats
*if ((pantheon_regard > 5) and (pantheon_regard <= 9))
	Collectively the pantheon of gods has a somewhat positive view of your actions.
	*goto end_of_stats
*if pantheon_regard >= 10
	The pantheon of gods has a collectively positive view of your actions.
	*goto end_of_stats
*if pantheon_regard = 5 
	The pantheon of gods has no particular collective opinion on your actions.
	*goto end_of_stats
	
*label end_of_stats