Skip to content
Snippets Groups Projects
Commit affbb83b authored by Pregmodder's avatar Pregmodder
Browse files

Fixes

parent d641e28f
No related branches found
No related tags found
1 merge request!7088RECI futa
...@@ -87,6 +87,7 @@ App.Events.RECIFuta = class RECIFuta extends App.Events.BaseEvent { ...@@ -87,6 +87,7 @@ App.Events.RECIFuta = class RECIFuta extends App.Events.BaseEvent {
]); ]);
function love() { function love() {
t = [];
t.push(`You swing your legs up onto your desk and`); t.push(`You swing your legs up onto your desk and`);
if (V.PC.belly < 5000) { if (V.PC.belly < 5000) {
t.push(`jump`); t.push(`jump`);
...@@ -196,9 +197,12 @@ App.Events.RECIFuta = class RECIFuta extends App.Events.BaseEvent { ...@@ -196,9 +197,12 @@ App.Events.RECIFuta = class RECIFuta extends App.Events.BaseEvent {
t.push(`${girl} maintain ${his} delusions and <span class="devotion inc">${his} love for you.</span> Of all your sins, this is perhaps the smallest.`); t.push(`${girl} maintain ${his} delusions and <span class="devotion inc">${his} love for you.</span> Of all your sins, this is perhaps the smallest.`);
eventSlave.devotion += 4; eventSlave.devotion += 4;
t.push(VCheck.Vaginal(1, eventSlave)); t.push(VCheck.Vaginal(1, eventSlave));
return t;
} }
function hate() { function hate() {
t = [];
t.push(`You point at the`); t.push(`You point at the`);
if (eventSlave.belly >= 300000) { if (eventSlave.belly >= 300000) {
t.push(`${his} stomach, and ${he} leans forward onto ${his} ${belly} belly, giggling with ${his} butt stuck out invitingly.`); t.push(`${his} stomach, and ${he} leans forward onto ${his} ${belly} belly, giggling with ${his} butt stuck out invitingly.`);
...@@ -265,6 +269,8 @@ App.Events.RECIFuta = class RECIFuta extends App.Events.BaseEvent { ...@@ -265,6 +269,8 @@ App.Events.RECIFuta = class RECIFuta extends App.Events.BaseEvent {
t.push(`face. ${He} will remain devoted to you, mostly from a lack of alternatives, but ${his} trust in you has <span class="trust dec">suffered immensely.</span>`); t.push(`face. ${He} will remain devoted to you, mostly from a lack of alternatives, but ${his} trust in you has <span class="trust dec">suffered immensely.</span>`);
eventSlave.trust = jsRandom(-90, -75); eventSlave.trust = jsRandom(-90, -75);
t.push(VCheck.Both(1, eventSlave)); t.push(VCheck.Both(1, eventSlave));
return t;
} }
function virginityWarningSingle() { function virginityWarningSingle() {
......
...@@ -18,6 +18,7 @@ App.Events.getIndividualEvents = function(slave) { ...@@ -18,6 +18,7 @@ App.Events.getIndividualEvents = function(slave) {
new App.Events.RESSWaistlineWoes(), new App.Events.RESSWaistlineWoes(),
new App.Events.RESSAssFitting(), new App.Events.RESSAssFitting(),
new App.Events.RECIButthole(), new App.Events.RECIButthole(),
new App.Events.RECIFuta(),
] ]
.filter(e => (e.eventPrerequisites().every(p => p()) && e.castActors(slave))) .filter(e => (e.eventPrerequisites().every(p => p()) && e.castActors(slave)))
.reduce((res, cur) => res.concat(Array(cur.weight).fill(cur)), []); .reduce((res, cur) => res.concat(Array(cur.weight).fill(cur)), []);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment