diff --git a/combat.js b/combat.js
index b1d9378..a313b4c 100644
--- a/combat.js
+++ b/combat.js
@@ -220,7 +220,8 @@ function grappleAnalVore(attacker) {
function(attacker, defender) { return isNormal(attacker) && isGrappled(defender) && defender.flags.shrunk != true ; }
], conditions: [
function(attacker, defender) { return defender.prefs.prey; },
- function(attacker, defender) { return defender.prefs.vore.anal > 0; }
+ function(attacker, defender) { return defender.prefs.vore.anal > 0; },
+ function(attacker, defender) { return attacker.prefs.pred.anal; }
],
priority: 1,
};
diff --git a/feast.css b/feast.css
index c7eda9e..838eb7c 100644
--- a/feast.css
+++ b/feast.css
@@ -189,6 +189,11 @@ button {
width: 150px;
}
+.pref-gray {
+ background: #111 !important;
+ color: #333 !important;
+}
+
.pref-radio:checked + label.pref-disable {
background: #711;
color: #eee;
diff --git a/feast.html b/feast.html
index 4b1edd2..0d19b4b 100644
--- a/feast.html
+++ b/feast.html
@@ -205,6 +205,15 @@
Player stuff
+ -
+ Ass
+
+
+
+
+
+
+
-
Cock/balls
diff --git a/feast.js b/feast.js
index f5d5c1d..506f155 100644
--- a/feast.js
+++ b/feast.js
@@ -258,10 +258,22 @@ function updateDisplay() {
document.getElementById("stat-dex").innerHTML = "Dex: " + player.dex;
document.getElementById("stat-con").innerHTML = "Con: " + player.con;
document.getElementById("stat-stomach").innerHTML = "Stomach: " + round(player.stomach.fullness(),0) + "/" + player.stomach.capacity;
- document.getElementById("stat-bowels").innerHTML = "Bowels: " + round(player.bowels.fullness(),0) + "/" + player.bowels.capacity;
- document.getElementById("stat-balls").innerHTML = "Balls: " + round(player.balls.fullness(),0) + "/" + player.balls.capacity;
- document.getElementById("stat-womb").innerHTML = "Womb: " + round(player.womb.fullness(),0) + "/" + player.womb.capacity;
- document.getElementById("stat-breasts").innerHTML = "Breasts: " + round(player.breasts.fullness(),0) + "/" + player.breasts.capacity;
+ if (player.prefs.pred.anal || player.prefs.scat)
+ document.getElementById("stat-bowels").innerHTML = "Bowels: " + round(player.bowels.fullness(),0) + "/" + player.bowels.capacity;
+ else
+ document.getElementById("stat-bowels").innerHTML = "";
+ if (player.prefs.pred.cock)
+ document.getElementById("stat-balls").innerHTML = "Balls: " + round(player.balls.fullness(),0) + "/" + player.balls.capacity;
+ else
+ document.getElementById("stat-balls").innerHTML = "";
+ if (player.prefs.pred.unbirth)
+ document.getElementById("stat-womb").innerHTML = "Womb: " + round(player.womb.fullness(),0) + "/" + player.womb.capacity;
+ else
+ document.getElementById("stat-womb").innerHTML = "";
+ if (player.prefs.pred.breast)
+ document.getElementById("stat-breasts").innerHTML = "Breasts: " + round(player.breasts.fullness(),0) + "/" + player.breasts.capacity;
+ else
+ document.getElementById("stat-breasts").innerHTML = "";
}