diff --git a/src/js/wombJS.tw b/src/js/wombJS.tw
index 71947a497a2c82ca355d4248851cd8e9d3ea30fd..62f04539963b8149a846742a8c65df9e70768e16 100644
--- a/src/js/wombJS.tw
+++ b/src/js/wombJS.tw
@@ -321,6 +321,53 @@ window.fetalSplit = function(actor) {
 	WombNormalizePreg(actor);
 };
 
+//safe alternative to .womb.length.
+window.WombFetusCount(actor){
+    WombInit(actor);
+    return actor.womb.length;
+}
+
+//give reference to fetus object, but not remove fetus, use for manupulation in the womb.
+window.WombGetFetus = function(actor, fetusNum){
+    WombInit(actor);
+    if (actor.womb.length >= fetusNum)
+        return actor.womb[fetusNum];
+    else 
+        return null;
+}
+
+//give reference to fetus object, and remove it form the womb.
+window.WombRemoveFetus = function(actor, fetusNum){
+    WombInit(actor);
+    if (actor.womb.length >= fetusNum){
+        ft = actor.womb[fetusNum];
+        actor.womb.splice(fetusNum, 1);
+        WombSort(actor);
+    }
+    else
+        return null;
+}
+
+//to add fetus object in the womb. Be warned - you can add one single fetus to many wombs, or even add it many times to one womb. It's will not show error, but behavior become strange, as fetus object will be the same - it's reference, not full copies. If this not desired - use deepCopy on fetus before adding.
+window.WombAddFetus = function(actor, fetus)
+{
+    WombInit(actor);
+    actor.womb.push(fetus);
+    WombSort(actor);
+}
+
+// change property for all fetuses. Like fetus.age = X.
+window.WombChangeFetus = function(actor, propName, newValue){
+    WombInit(actor);
+    actor.womb.forEach(ft => ft[propName] = newValue);
+}
+
+// change genetic property of all fetuses. Like fetus.genetic.intelligence = X
+window.WombChangeGene = function(actor, geneName, newValue){
+    WombInit(actor);
+    actor.womb.forEach(ft => ft.genetic[geneName] = newValue);
+}
+
 /* alt
 window.fetalSplit = function(actor)
 {