Browse Source

Removed powerup button

tags/v0.2.9
Fen Dweller 7 years ago
parent
commit
a17019ce61
2 changed files with 0 additions and 15 deletions
  1. +0
    -14
      forest.js
  2. +0
    -1
      world.js

+ 0
- 14
forest.js View File

@@ -47,20 +47,6 @@ function AnacondaTest() {
});
}

function PowerUp() {
GameObject.call(this, "Powerup");

this.actions.push({
"name": "Powerup",
"action": function() {
player.str += 10;
player.dex += 10;
player.con += 10;
updateDisplay();
}
});
}

function Wolf() {
Creature.call(this, "Wolf", 10, 15, 15);



+ 0
- 1
world.js View File

@@ -34,7 +34,6 @@ let locationsSrc = [
Bed,
Journal,
AnacondaTest,
PowerUp
],
},
{


Loading…
Cancel
Save