1: The spousal lines that all spouses share are located in Strings/StringsFromCSFiles.xnb 2: The xnb files where the game is attempting to load inlaw dialogue are located in Characters/Dialogue/<Character>.xnb The pseudocode for the method used to determine what the character will say is this: public StardewValley.Dialogue tryToRetrieveDialogue(string preface, int heartLevel, string appendToEnd = "") First, it calculates the game year. if it's greater than 2, then the value is 2.Then, if the appendToEnd string is empty, it tries to find inlaw dialogue recursively by making "_inlaw_" + the spouse's name the appendToEnd string and invoking tryToRetrieveDialogue again.Then it tries to find dialogue in this order (by checking if the string is exactly equal to the preface value and:The Day of the Month + appendToEnd stringThe Day of the Month + "_" + year value +appendToEnd stringThe Day of the week + heartLevel + "_" + year value + appendToEnd stringThe Day of the week + heartLevel + "_" + appendToEnd stringThe Day of the week + "_" + year value + appendToEnd stringThe Day of the week + appendToEnd string To better understand: for any NPC, given the farmer is married to Abigail, this is all it searches for, given the day is the 1st of the season: 1_inlaw_Abigail : Dialog from an inlaw of Abigail every 1st of the season 1_2_inlaw_Abigail : Dialog from an inlaw of Abigail every 1st of the season for year 2 onwards Mon10_2_inlaw_Abigail : Dialog from an inlaw of Abigail every monday with a heart level of 10 for year 2 onwards Mon10_inlaw_Abigail : Dialog from an inlaw of Abigail every monday with a heart level of 10 Mon_2_inlaw_Abigail : Dialog from an inlaw of Abigail every monday for year 2 onwards Mon_inlaw_Abigail : Dialog from an inlaw of Abigail every monday 1 : Dialog for every 1st of the season 1_2 : Dialog for every 1st of the season for year 2 onwards Mon10_2 : Dialog for an NPC every monday with a heart level of 10 for year 2 onwards Mon10 : Dialog for an NPC every monday with a heart level of 10 Mon_2 : Dialog for an NPC every monday for year 2 onwards Mon : Dialog for an NPC every monday Oh, and for the last question? Data/Events/Town.xnb