Skip to content
Snippets Groups Projects
Commit e0eeb06d authored by brickode's avatar brickode
Browse files

Adjusted rates

parent 8a713702
No related branches found
No related tags found
1 merge request!7059Farmyard Rework
...@@ -112,9 +112,17 @@ App.Facilities.Farmyard.farmShowsIncome = function (slave) { ...@@ -112,9 +112,17 @@ App.Facilities.Farmyard.farmShowsIncome = function (slave) {
if (arcology.FSPaternalist !== "unset") { if (arcology.FSPaternalist !== "unset") {
if (V.seeBestiality) { if (V.seeBestiality) {
if (V.farmyardBreeding) { if (V.farmyardBreeding) {
cash *= 0.8; if (V.farmyardRestraints) {
cash *= 0.5;
} else {
cash *= 0.7;
}
} else { } else {
cash *= 0.9; if (V.farmyardRestraints) {
cash *= 0.8;
} else {
cash *= 0.9;
}
} }
} }
} }
...@@ -123,12 +131,16 @@ App.Facilities.Farmyard.farmShowsIncome = function (slave) { ...@@ -123,12 +131,16 @@ App.Facilities.Farmyard.farmShowsIncome = function (slave) {
if (V.seeBestiality) { if (V.seeBestiality) {
if (V.farmyardBreeding) { if (V.farmyardBreeding) {
if (V.farmyardRestraints) { if (V.farmyardRestraints) {
cash *= 1.4; cash *= 1.5;
} else { } else {
cash *= 1.2; cash *= 1.3;
} }
} else { } else {
cash *= 1.1; if (V.farmyardRestraints) {
cash *= 1.2;
} else {
cash *= 1.1;
}
} }
} }
} }
...@@ -162,7 +174,9 @@ App.Facilities.Farmyard.farmShowsIncome = function (slave) { ...@@ -162,7 +174,9 @@ App.Facilities.Farmyard.farmShowsIncome = function (slave) {
} }
if (arcology.FSSlimnessEnthusiast !== "unset") { if (arcology.FSSlimnessEnthusiast !== "unset") {
if (!slimLawPass(slave)) { if (slimLawPass(slave)) {
cash *= 1.1;
} else {
cash *= 0.9; cash *= 0.9;
} }
} }
...@@ -171,9 +185,11 @@ App.Facilities.Farmyard.farmShowsIncome = function (slave) { ...@@ -171,9 +185,11 @@ App.Facilities.Farmyard.farmShowsIncome = function (slave) {
if (slave.weight > 10) { // slave is curvy or more if (slave.weight > 10) { // slave is curvy or more
cash *= 1.1; // TODO: not sure what weight this should be cash *= 1.1; // TODO: not sure what weight this should be
} // TODO: should implants affect income? } // TODO: should implants affect income?
if (isStacked(slave)) { if (isStacked(slave)) {
cash *= 1.1; // TODO: should this be smaller? cash *= 1.1;
} }
if (slave.butt > 3) { // slave has bigger than a bubble butt if (slave.butt > 3) { // slave has bigger than a bubble butt
cash *= 1.1; cash *= 1.1;
} }
...@@ -183,6 +199,7 @@ App.Facilities.Farmyard.farmShowsIncome = function (slave) { ...@@ -183,6 +199,7 @@ App.Facilities.Farmyard.farmShowsIncome = function (slave) {
if (isStacked(slave)) { if (isStacked(slave)) {
cash *= 1.2; cash *= 1.2;
} }
if (slave.lactation > 0) { if (slave.lactation > 0) {
cash *= 1.1; cash *= 1.1;
} }
......
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