Skip to content

Commit

Permalink
New mail templates
Browse files Browse the repository at this point in the history
  • Loading branch information
agilbert1412 committed Jan 28, 2023
1 parent ed83594 commit 40373bc
Showing 1 changed file with 23 additions and 11 deletions.
34 changes: 23 additions & 11 deletions StardewArchipelago/Items/Mail/Mailman.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ private void GenerateMail(string mailKey, string apItemName, string findingPlaye
{
apItemName = apItemName.Replace("<3", "<");
var mailData = Game1.content.Load<Dictionary<string, string>>("Data\\mail");
var mailContent = string.Format(GetRandomApMailString(), apItemName, findingPlayer, locationName, embedString);
var mailContentTemplate = GetRandomApMailString();
var mailContent = string.Format(mailContentTemplate, apItemName, findingPlayer, locationName, embedString);
mailData[mailKey] = mailContent;
_lettersGenerated.Add(mailKey, mailContent);
}
Expand Down Expand Up @@ -98,7 +99,9 @@ public void SendTomorrow()

private string GetRandomApMailString()
{
return ApMailStrings[_random.Next(0, ApMailStrings.Length)];
var chosenString = ApMailStrings[_random.Next(0, ApMailStrings.Length)];
chosenString += "{3}[#]Archipelago Item";
return chosenString;
}

private void SendMail(string mailTitle)
Expand Down Expand Up @@ -129,15 +132,24 @@ private void SendMail(string mailTitle)
// 2: Location
// 3: Embed
private static readonly string[] ApMailStrings = {
"Hey @, I was at {2}, minding my own business, and there I found a {0}.^I thought you would make better use of it than I ever could.^^ -{1}{3}[#]Archipelago Item",
"I found a {0} in {2}.^Enjoy!^^ -{1}{3}[#]Archipelago Item",
"There was a {0} in my {2}.^Do you think you can make it useful?^^ -{1}{3}[#]Archipelago Item",
"Hey @, I was passing by {2} when I found a {0}. You gotta stop leaving your stuff lying around!^^ -{1}{3}[#]Archipelago Item",
"This is an official notice.^You have been charged and found guilty of 1 case of Littering within multiworld bounds.^{1} was able to identify the {0} left near {2} as yours, so it has been returned to you.^Please leave your trash in appropriate receptacles.^^ -APPD{3}[#]Archipelago Item",
"Hello Valued Customer!^At Jojamart, we understand how hard it can be to get the things you need for a price you can pay.^Please take this free* gift, a {0}, as a token of our good faith.^We would greatly appreciate it if you consider your pre-approved credit card offer enclosed.^^*No monetary costs were incurred by Jojamart during the procurement of this item from {2}. The mental health of the affected employee {1} is classified.^^ -Joja Customer Representative{3}[#]Archipelago Item",
"I was thinking of you today, so when I saw this {0} at {2}, I thought it would make a perfect gift!^^ -{1}{3}[#]Archipelago Item",
"I know, I know, your birthday was a while ago. Sorry this is so late. It took me a while to get this {0}. It was only being sold at {2}, can you believe that?!^^ -{1}{3}[#]Archipelago Item",
"It's dangerous to go alone. Take this! ({0})^^ -{1}{3}[#]Archipelago Item",
"Hey @, I was at {2}, minding my own business, and there I found a {0}.^I thought you would make better use of it than I ever could.^^ -{1}",
"I found a {0} in {2}.^Enjoy!^^ -{1}",
"There was a {0} in my {2}.^Do you think you can make it useful?^^ -{1}",
"Hey @, I was passing by {2} when I found a {0}. You gotta stop leaving your stuff lying around!^^ -{1}",
"This is an official notice.^You have been charged and found guilty of 1 case of Littering within multiworld bounds.^{1} was able to identify the {0} left near {2} as yours, so it has been returned to you.^Please leave your trash in appropriate receptacles.^^ -APPD",
"Hello Valued Customer!^At Jojamart, we understand how hard it can be to get the things you need for a price you can pay.^Please take this free* gift, a {0}, as a token of our good faith.^We would greatly appreciate it if you consider your pre-approved credit card offer enclosed.^^*No monetary costs were incurred by Jojamart during the procurement of this item from {2}. The mental health of the affected employee {1} is classified.^^ -Joja Customer Representative",
"I was thinking of you today, so when I saw this {0} at {2}, I thought it would make a perfect gift!^^ -{1}",
"I know, I know, your birthday was a while ago. Sorry this is so late. It took me a while to get this {0}. It was only being sold at {2}, can you believe that?!^^ -{1}",
"It's dangerous to go alone. Take this! ({0})^^ -{1}",
"<Item>^<Location>^It was hard^You're welcome^^--<Sender>",
"You are a cool person. And because you're cool, I went all the way to {2} to grab your {0}.^^ -{1}",
"You're our 10,000th* Subscriber!^^Please take this {0}, freshly discovered for you at {2}! Click below to claim your prize!^^*Subscriber count may vary. All items are non-refundable. {1} Inc. is not liable for any illness, financial loss or harm to self that occur to the recipient.",
"Here at Jojamart, we take pride in being aggressively progressive.^We're currently surveying cooperative* individuals on our progressive products.^Please take the time to test and review this {0}. Then contact your designated reviewer {1} at 1-800-867-5309.^^*All employees, current and prior have agreed to this in their contract, lasting in perpetuity.^Unsubscription is expressly forbidden under Article 307 subsection 4546B clause 3-4",
"The Stardew Valley Tribune is proud to announce our victory in the recent Ferngill Republic Journalism Ceremony, a contest across the entire nation.^This is due in no small part to our article on your farm, @.^As a token of our gratitude, please take this {0}, which was carefully procured from {2}.^Thank you for your continued support!^^ -Agricultural Editor {1}",
"Status report.^World infiltration completed.^Retrieval of {0} from {2} successful.^Agent {1} sends their regards.^Unit will fall back and wait for further instructions.",
"i maed you a cukie but i eated it. have this {0} instaed^^ -{1}",
"Me hat seller, poke. {1} dropped {0} off here. Me giving it to you okay poke? They say it come from {2}.",
"Declaration of returned goods.^^{0} is being returned to you after seizure by multiworld officers from {1}. Suspect was found near {2} with stolen goods in hand and have been detained for further questioning.^^ -APPD",
};
}
}

0 comments on commit 40373bc

Please sign in to comment.