Fen Dweller пре 7 година
родитељ
комит
52046a7dd1
2 измењених фајлова са 28 додато и 0 уклоњено
  1. +1
    -0
      feast.js
  2. +27
    -0
      vore.js

+ 1
- 0
feast.js Прегледај датотеку

@@ -278,6 +278,7 @@ function advanceTime(amount) {
player.restoreStamina(amount);
update(player.stomach.digest(amount));
update(player.butt.digest(amount));
update(player.balls.digest(amount));
}

function renderTime(time) {


+ 27
- 0
vore.js Прегледај датотеку

@@ -7,6 +7,7 @@ function Creature(name = "Creature", str = 10, dex = 10, con = 10) {
this.bowels = new Bowels();
this.stomach = new Stomach(this, this.bowels);
this.butt = new Butt(this, this.bowels, this.stomach);
this.balls = new Balls(this);
this.attacks = [];

this.baseStr = str;
@@ -433,6 +434,32 @@ function WasteContainer(name) {
};
}

function Balls(owner) {
Container.call(this, owner);
WasteContainer.call(this, "Balls");

this.describeDamage = function(prey) {
return "Your balls slosh as they wear down the " + prey.description("the") + " trapped within.";
};

this.describeKill = function(prey) {
return prey.description("The") + "'s struggles cease, overpowered by your cum-filled balls.";
};

this.describeFinish = function(prey) {
return "Your churning balls have melted " + prey.description("a") + " down to musky cum.";
};

this.fill = function(amount) {
this.add(amount);
};

this.finish = function(prey) {
if (prey.prefs.scat)
this.contents.push(prey);
};
}

function Bowels() {
WasteContainer.call(this, "Bowels");
}


Loading…
Откажи
Сачувај