Skip to content

Commit

Permalink
NPC taunts for feltotem
Browse files Browse the repository at this point in the history
  • Loading branch information
JasXSL committed Apr 20, 2018
1 parent f56ca9e commit 5668c30
Showing 1 changed file with 92 additions and 2 deletions.
94 changes: 92 additions & 2 deletions lib_RPText.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1111,6 +1111,7 @@ aTable.rpTexts = function(self)
id = "DAGLOP_NIPPLE_TWIST_TEXT",
is_chat = true,
sound = 770,
text_bystander = true,
text_receiver = "Daglop: Work harder, minion!",
requirements = {}
}));
Expand All @@ -1127,6 +1128,7 @@ aTable.rpTexts = function(self)
id = "DAGLOP_WEDIGE_TEXT",
is_chat = true,
sound = 770,
text_bystander = true,
text_receiver = "Daglop: Huh, interesting choice in underwear!",
requirements = {}
}));
Expand All @@ -1143,13 +1145,15 @@ aTable.rpTexts = function(self)
id = "DAGLOP_BUTTKICK_TEXT",
is_chat = true,
sound = 770,
text_bystander = true,
text_receiver = "Daglop: Get to it, chop chop!",
requirements = {}
}));
table.insert(R, ExiWoW.RPText:new({
id = "DAGLOP_BUTTKICK_TEXT",
is_chat = true,
sound = 770,
text_bystander = true,
text_receiver = "Daglop: Big butts are bound to be beaten for motivation!",
requirements = {rtc.largeButt}
}));
Expand All @@ -1166,13 +1170,15 @@ aTable.rpTexts = function(self)
id = "DAGLOP_BOOB_GRAB_TEXT",
is_chat = true,
sound = 770,
text_bystander = true,
text_receiver = "Daglop: Oh sorry, I was er... slipping...",
requirements = {}
}));
table.insert(R, ExiWoW.RPText:new({
id = "DAGLOP_BOOB_GRAB_TEXT",
is_chat = true,
sound = 770,
text_bystander = true,
text_receiver = "Daglop: Why don't I hold onto these big things so you don't get back problems?",
requirements = {rtc.largeBreasts}
}));
Expand All @@ -1189,6 +1195,7 @@ aTable.rpTexts = function(self)
id = "DAGLOP_MOUTH_FINGER_TEXT",
is_chat = true,
sound = 770,
text_bystander = true,
text_receiver = "Daglop: Just making sure my minion is in good health.",
requirements = {}
}));
Expand All @@ -1197,6 +1204,7 @@ aTable.rpTexts = function(self)
id = "DAGLOP_RITUAL_TEXT",
is_chat = true,
sound = 770,
text_bystander = true,
text_receiver = "Daglop: Partake in a ritual some time! I could strap you to an altar, remove your %Tundies and you know...",
requirements = {}
}));
Expand Down Expand Up @@ -1239,10 +1247,10 @@ aTable.rpTexts = function(self)
requirements = {rtc.spellAdd, rtc.victimBreasts},
fn = ef.addExcitementMasochisticCrit
}))
--

-- CUSTOM TICKING BUFFS/DEBUFFS

-- CUSTOM TICKING BUFFS/DEBUFFS
-- Living goo
table.insert(R, ExiWoW.RPText:new({
id = "FX_OozeInClothesAdd",
Expand Down Expand Up @@ -1335,8 +1343,90 @@ aTable.rpTexts = function(self)
fn = ef.addExcitementCrit
}))

--
--

-- Voice chats

-- Feltotem bull
table.insert(R, ExiWoW.RPText:new({
id = "_WHISPER_",
is_chat = true,
sound = 48315,
text_receiver = "%S whispers: Soon you'll be choking on my fel empowered bull cock!",
requirements = {
rtc.attackerIsFeltotemMale,
rtc.maleWhispers, -- User allows whispers from male
},
}))
table.insert(R, ExiWoW.RPText:new({
id = "_WHISPER_",
is_chat = true,
sound = 48315,
text_receiver = "%S whispers: Ever had fel infused bull dick shoved in your %Tvagina? You'll soon find out what that feels like!",
requirements = {
rtc.victimVagina,
rtc.attackerIsFeltotemMale,
rtc.maleWhispers, -- User allows whispers from male
},
}))
table.insert(R, ExiWoW.RPText:new({
id = "_WHISPER_",
is_chat = true,
sound = 48315,
text_receiver = "%S whispers: Ever had fel infused bull dick shoved in your %Tbutt? You'll soon find out what that feels like!",
requirements = {
rtc.victimPenis,
rtc.attackerIsFeltotemMale,
rtc.maleWhispers, -- User allows whispers from male
},
}))
table.insert(R, ExiWoW.RPText:new({
id = "_WHISPER_",
is_chat = true,
sound = 48315,
text_receiver = "%S whispers: Why don't skip directly to the point where I pin you to the ground and pound your %Tbutt relentlessy?",
requirements = {
rtc.victimPenis,
rtc.attackerIsFeltotemMale,
rtc.maleWhispers, -- User allows whispers from male
},
}))
table.insert(R, ExiWoW.RPText:new({
id = "_WHISPER_",
is_chat = true,
sound = 48315,
text_receiver = "%S whispers: Why don't skip directly to the point where I pin you to the ground and pound your %Tvagina relentlessy?",
requirements = {
rtc.victimVagina,
rtc.attackerIsFeltotemMale,
rtc.maleWhispers, -- User allows whispers from male
},
}))
table.insert(R, ExiWoW.RPText:new({
id = "_WHISPER_",
is_chat = true,
sound = 48315,
text_receiver = "%S whispers: Nice %Tbreasts. Can't wait to stick my fel empowered %Spenis between them!",
requirements = {
rtc.victimBreasts,
rtc.attackerIsFeltotemMale,
rtc.maleWhispers, -- User allows whispers from male
},
}))
table.insert(R, ExiWoW.RPText:new({
id = "_WHISPER_",
is_chat = true,
sound = 48315,
text_receiver = "%S whispers: I will have my way with you before handing you to my demon masters!",
requirements = {
rtc.attackerIsFeltotemMale,
rtc.maleWhispers, -- User allows whispers from male
},
}))




return R;
end

0 comments on commit 5668c30

Please sign in to comment.