Some early trendy phrase work.

This commit is contained in:
Greg Edwards 2014-08-05 03:07:08 -04:00
parent 7c7540d1c0
commit eb6737bc9c
2 changed files with 128 additions and 0 deletions

View File

@ -78,6 +78,7 @@
<Compile Include="Support\LogHelper.cs" />
<Compile Include="Support\StreamExtender.cs" />
<Compile Include="Support\StringHelper.cs" />
<Compile Include="Support\TrendyPhrase4.cs" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />

View File

@ -0,0 +1,127 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace PkmnFoundations.Support
{
public class TrendyPhrase4
{
// todo: For a rainy day
public static String[,] PHRASES = new String[,]
{
{
"Please!\n{0}!",
"Go! {0}!",
"Ill battle with\n{0}!",
"Its {0}!",
"{0}, Im going\nwith {1}!",
"Look at {0}!",
"Ill show you {0}!",
"Now!\n{0}!",
"Ill show you my\n{0} strategy!",
"Ill {0}!",
"Ill shock you with\n{0}!",
"This is the beginning\nof {0}!",
"This battle is\n{0}!",
"I dont think Ill\never lose at {0}!",
"Team {0} is here!",
"You think you can beat\n{0}?",
"{0}!\n{1} power!",
"This is the {0}\nPokémon!",
"{0} wont lose!",
"Please {0}!\n{1}!"
},
{
"I win!\n{0}!",
"I won!\nI won with {0}!",
"{0} is strong,\nisnt it?",
"Its {0}\n{1} after all!",
"{0}, yay!",
"Yay, {0}!\n{1}!",
"Sorry, its {0}\n{1}.",
"{0}!\nThank you!",
"The way I feel now is\n{0}!",
"I wanted people to look at\nmy {0}!",
"Its all thanks to\n{0}.",
"I might have won with\n{0}!",
"I get the happiest with\n{0}!",
"{0} secured\nthe victory!",
"This {0}\nwas really good!",
"{0}\nwas fun, wasnt it?",
"Huh?\n{0}?!",
"{0} is the toughest!",
"Happy!\n{0} happy!",
"Hows that?!\n{0}!"
},
{
"You win...\n{0}",
"{0} was the one\nthing I wanted to avoid...",
"Waaah!\n{0}!",
"I want to go home with\n{0}...",
"{0}!\n{1}!",
"Could it be...?\n{0}...?",
"{0}!\nHow awful!",
"I was confident about\n{0}, too.",
"You're {0},\narent you?",
"{0}!\nCant be anything else but.",
"I feel so helplessly angry...\nIts {0}!",
"{0} makes me sad...",
"I feel sorry for\n{0}!",
"The way I feel now is\n{0}...",
"I lost, but I won at\n{0}!",
"I wouldve won if this\nwere {0}...",
"My heads filled with only\n{0} now!",
"The way I lost...\nIts like {0}...",
"Isnt {0}\n{1}?",
"Aww... Thats really\n{0}..."
},
{
"Hello!\n{0}!",
"I love {0}!",
"I love {0}!\nI love {1}, too!",
"This {0} is\n{1}, isnt it?",
"I can do anything for\n{0}!",
"This {0} is\n{1}!",
"{0} is the real\n{1}!",
"It might be {0}...",
"Theres only {0}\nleft!",
"Its {0}!\nIts {1}!",
"I prefer {0}\nafter all!",
"Is {0}\n{1}?",
"Do you like {0}?",
"What do you think of\n{0}?",
"{0} is so\n{1}!",
"{0} are\n{1}!",
"{0}, right?",
"Did you know {0}?\nIts {1}!",
"Excuse me...\nIts {0}!",
"{0}, right?\n{1}!"
},
{
"{0}!\nHello!",
"Glad to meet you!\nI love {0}!",
"Im a {0} Trainer!\nPlease battle me!",
"Please trade!\nIm offering {0}!",
"Please trade!\nI want a {0}!",
"Ive entered the Union Room.",
"Lets draw! I want to draw\n{0}!",
"Ive got to go!\n{0}!",
"Please leave me alone...",
"Anyone want to\n{0}?",
"Lets {0}!",
"Want to {0}?",
"I want to {0}!",
"OK!",
"I dont want to\n{0}.",
"Ill go wait at the Colosseum\nnow.",
"Please talk to me!",
"Do you know where I am?",
"I want to trade my {0}.\nPlease talk to me.",
"I want a {0} battle!\nPlease talk to me!"
}
};
}
}