diff --git a/player variables documentation - Pregmod.txt b/player variables documentation - Pregmod.txt index 3fa9a587f2fdb8fcbdeb2d556f8b196d20732380..3536d47f5d3ddd3f79150c2642c1feb79d2ab0e2 100644 --- a/player variables documentation - Pregmod.txt +++ b/player variables documentation - Pregmod.txt @@ -433,6 +433,16 @@ counter: how many children you've had accepts int + abortions: + + number of abortions you've had + accepts int + + miscarriages: + + number of miscarriage you've had + accepts int + birthElite: how many children you've carried for the SE diff --git a/src/player/js/PlayerState.js b/src/player/js/PlayerState.js index c555ba67c2a3f734de1a5c7fd85ea7735c37aaef..f3274d7f283508f575a871711d91309f122e1cc6 100644 --- a/src/player/js/PlayerState.js +++ b/src/player/js/PlayerState.js @@ -111,6 +111,10 @@ App.Entity.PlayerActionsCountersState = class { this.cum = 0; /** number of births as your slave */ this.birthsTotal = 0; + /** number of abortions as your slave */ + this.abortions = 0; + /** number of miscarriages as your slave */ + this.miscarriages = 0; this.laborCount = 0; /** How many slaves you have sired. */ this.slavesFathered = 0;