Bladeren bron

Added balls

tags/v0.2.8
Fen Dweller 7 jaren geleden
bovenliggende
commit
52046a7dd1
2 gewijzigde bestanden met toevoegingen van 28 en 0 verwijderingen
  1. +1
    -0
      feast.js
  2. +27
    -0
      vore.js

+ 1
- 0
feast.js Bestand weergeven

@@ -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 Bestand weergeven

@@ -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");
}


Laden…
Annuleren
Opslaan