Skip to content

Commit

Permalink
Added new phrases
Browse files Browse the repository at this point in the history
  • Loading branch information
Gitaarwerk committed Aug 9, 2020
1 parent bc83b0b commit 621b87c
Show file tree
Hide file tree
Showing 9 changed files with 1,145 additions and 49 deletions.
939 changes: 895 additions & 44 deletions .idea/workspace.xml

Large diffs are not rendered by default.

12 changes: 12 additions & 0 deletions public/.idea/ExpressYourElf.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions public/.idea/encodings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions public/.idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions public/.idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

200 changes: 200 additions & 0 deletions public/.idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 6 additions & 3 deletions public/Features/DanceWithMe/DanceWithMe.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
ExpressYourElf.DanceWithMe = {}

ExpressYourElf.DanceWithMe.list = {
'Hey love crusader, I want to be your space invader!',
'Tom bo li de se de moi ya, yeah jambo jambo.',
'Are we ${race}, or are we dancers.',
"Beats so big I'm stepping on gnomes.",
Expand All @@ -13,7 +12,10 @@ ExpressYourElf.DanceWithMe.list = {
"Is this the real life? Is this just fantasy?",
"${race} ${girlBoy}s, we're so unforgettable. Tiny bracers and tabards on top! Fel-kissed skin, so hot we'll melt your armor! Ooh oh ooh, Ooh oh ooh!",
"It's murder on the dungeon floor. But you'd better not steal the moves. Yhea Yhea! Boss' gonna burn this dungeon down right now!",
"Like a ${race}, raiding for the very first time"
"Like a ${race}, raiding for the very first time",
"They're out to get you, there's demons closing in on every side. That this is thriller, thriller night!",
"What you gon' do with all that junk? All that junk inside that trunk? I'ma get, get, get, get, you drunk, Get you love drunk off my hump. My hump my hump my hump my hump my hump",
"I just want to show you off to all of my ${race}s friends, make them drool on their chiny, chin, chins."
}

ExpressYourElf.DanceWithMe.listWithTarget = {
Expand All @@ -22,7 +24,8 @@ ExpressYourElf.DanceWithMe.listWithTarget = {
'${hisHer} name was ${name}, ${heShe} was a show ${guyGirl}.',
'Hey ${name} love crusader, I want to be your space invader.',
"I'm gonna take my ${name} to the hotel room.",
"So, ${name} are you ok, are you ok ${name}?"
"So, ${name} are you ok, are you ok ${name}?",
"${guyGirl}, I can thrill you more than any ghost would dare to try"
}

function ExpressYourElf.DanceWithMe.getPlayerMessages(name, gender, class, race, level, girlBoy)
Expand Down
8 changes: 7 additions & 1 deletion public/Features/Flirt/Flirt.lua
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,12 @@ function ExpressYourElf.Flirt.GetMessage(
'Do you play Heartstone? I can show you my deck.',
'That tabard looks great on you… as a matter of fact, so would I.',
'You’re so hot, you make the Tanaris look like the Northrend.',
'I must be in Medivh`s tower, because you are truly magical!'
'I must be in Medivh`s tower, because you are truly magical!',
'Your voice melt chocolates.',
'you`re so hot, my armor melts',
'Say baby. You`re pretty, I`m pretty, what say we go back to my place and stare at each other for a while.',
'If loving me is wrong, you don`t wanna be right!',
'How much does a Titanweigh? Enough to break the ice.'
}

-- from
Expand Down Expand Up @@ -141,6 +146,7 @@ function ExpressYourElf.Flirt.GetMessage(

if (targetRace == "Void Elf" or targetRace == "Blood Elf" or targetRace == "Nightborne") then
table.insert(flirtLines, "Your leafy long ears remind of the trees at my mother's home")
table.insert(flirtLines, "No bush is too big for me.")
end


Expand Down
8 changes: 7 additions & 1 deletion public/Features/RandomPhrases/RandomPhrases.lua
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,12 @@ targetHisHer
"What if Trump was Warchief. He would build a great, great wall.",
"I think I am actually humble. I think I’m much more humble than you would understand.",
"Everything is a mount, as long as you're brave enough.",
"Just an ordinary gas cloud. But watch out, because that's no ordinary gas cloud!",
"I’m intelligent. Some people would say I’m very, very, very intelligent.",
"I think the only difference between me and other guildies is that I'm more honest and my ${oppositeSex} are more beautiful.",
"I saved a big war. I saved a couple of them.",
"He calls me Mr. ${playerRace}. I've known this guy forever. He used to call me, 'Hey, ${playerName}, let's go out to dinner.' You know, before, he'll go, 'Hey, let's go out to dinner.' Now he goes, 'Mr. ${playerRace}, ${playerSirMam}, how are you?' "
"He calls me Mr. ${playerRace}. I've known this guy forever. He used to call me, 'Hey, ${playerName}, let's go out to dinner.' You know, before, he'll go, 'Hey, let's go out to dinner.' Now he goes, 'Mr. ${playerRace}, ${playerSirMam}, how are you?'",
'No, no. But I don`t say -- I say flames, we`ll put out the flames. And we`ll put out in some cases just burning embers. We also have burning embers. We have embers and we do have flames. Mount Hyjal became more flame like, but it`s going to be under control.'
}

-- self
Expand All @@ -64,6 +66,10 @@ targetHisHer
table.insert(listOfPhrases, "I never understood Fel.")
end

if (playerClass == "Hunter" or playerClass == "Demon Hunter") then
table.insert(listOfPhrases, "But Hunter, where's Hunter? Where is Hunter, by the way?")
end

if (playerRace == "Gnome" or playerRace == "Mechagnome") then
table.insert(listOfPhrases, "Crowded elevators smell different to gnomes.")
end
Expand Down

0 comments on commit 621b87c

Please sign in to comment.