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

Pregmod v.3.5.4

parent f22a9262
No related branches found
No related tags found
1 merge request!7149Pregmod v.3.5.4
...@@ -2,7 +2,10 @@ Pregmod ...@@ -2,7 +2,10 @@ Pregmod
0.10.7.1-3.5.x 0.10.7.1-3.5.x
7/06/2020
4 4
-added hair to the organ farm
-more code cleanup -more code cleanup
-breast size immobilization floor raised for adult/teen slaves -breast size immobilization floor raised for adult/teen slaves
-fixes -fixes
......
App.Version = { App.Version = {
base: "0.10.7.1", // The vanilla version the mod is based off of, this should never be changed. base: "0.10.7.1", // The vanilla version the mod is based off of, this should never be changed.
pmod: "3.5.3", pmod: "3.5.4",
commitHash: null, commitHash: null,
release: 1074 release: 1074
}; };
...@@ -400,23 +400,14 @@ App.Medicine.OrganFarm.init = function() { ...@@ -400,23 +400,14 @@ App.Medicine.OrganFarm.init = function() {
s.hColor = s.origHColor; s.hColor = s.origHColor;
} }
}), }),
/* /* So apparently hair is tracked via the .earTColor variable with no differential between possible hair origin. Not worth the variable, currently.
new App.Medicine.OrganFarm.OrganImplantAction({ new App.Medicine.OrganFarm.OrganImplantAction({
name: "Ears", healthImpact: 5, name: "Ears", healthImpact: 5,
surgeryType: "addHairEarsH", autoImplant: false, surgeryType: "addHairEarsH", autoImplant: false,
canImplant: s => (s.earShape !== "normal"), canImplant: s => (s.earTShape !== "normal"),
implantError: s => getRightEyeVision(s) !== 0 ? "Slave has a working right eye." : "", implantError: "",
implant: s => { implant: s => {
s.earShape = "normal"; s.earTColor = "normal";
}
}),
new App.Medicine.OrganFarm.OrganImplantAction({
name: "Ears", healthImpact: 5,
surgeryType: "addHairEarsS", autoImplant: false,
canImplant: s => (s.earShape !== "normal"),
implantError: s => getRightEyeVision(s) !== 0 ? "Slave has a working right eye." : "",
implant: s => {
s.earShape = "normal";
} }
}), }),
*/ */
......
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