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

twineJS correction

parent 52af0777
No related branches found
No related tags found
1 merge request!3277twineJS correction
...@@ -6,6 +6,7 @@ ...@@ -6,6 +6,7 @@
6 6
-now with even more fixes and cleaning -now with even more fixes and cleaning
-tweaked preg biometrics to require ovaries of some sort
01/09/2019 01/09/2019
......
...@@ -1262,6 +1262,44 @@ window.isItemAccessible = function(string) { ...@@ -1262,6 +1262,44 @@ window.isItemAccessible = function(string) {
} }
}; };
   
/*:: relationshipChecks [script]*/
window.rivalryTerm = function(id) {
if (id.rivalry === 1) {
return `growing rival`;
} else if (id.rivalry === 2) {
return `rival`;
} else {
return `bitter rival`;
}
}
window.relationshipTerm = function(id) {
if (id.relationship === 1) {
return `friend`;
} else if (id.relationship === 2) {
return `best friend`;
} else if (id.relationship === 3) {
return `friend with benefits`;
} else if (id.relationship === 4) {
return `lover`;
} else {
return `slave wife`;
}
}
window.relationshipTermShort = function(id) {
if (id.relationship === 1) {
return `friend`;
} else if (id.relationship === 2) {
return `BFF`;
} else if (id.relationship === 3) {
return `FWB`;
} else if (id.relationship === 4) {
return `lover`;
} else {
return `wife`;
}
}
/*:: Extended Family Mode JS [script]*/ /*:: Extended Family Mode JS [script]*/
   
/* see documentation for details /devNotes/Extended Family Mode Explained.txt */ /* see documentation for details /devNotes/Extended Family Mode Explained.txt */
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