Skip to content

Commit

Permalink
fixed bug with the spiral sword not dropping
Browse files Browse the repository at this point in the history
  • Loading branch information
Zertuk committed Jul 2, 2014
1 parent 59659a1 commit 6980565
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions monsters.js
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ rocketScientist.damage = 250;
rocketScientist.maxHealth = 250;
rocketScientist.health = 250;
rocketScientist.monsterMoney = 12.5;
rocketScientist.dropChance = 15;
rocketScientist.dropChance = 100;
rocketScientist.specialLoot = 'spaceSword';
rocketScientist.itemName = 'Spiral Drill Sword!!';

Expand All @@ -404,16 +404,16 @@ astronaut.maxHealth = 300;
astronaut.health = 300;
astronaut.monsterMoney = 15;
astronaut.specialLoot = 'astronautSuit';
astronaut.dropChance = 15;
astronaut.dropChance = 30;
astronaut.itemName = 'Astronaut Suit!!';

var lich = new Monster();
lich.name = 'Lich';
lich.value = 'o';
lich.message = 'The Lich!';
lich.damage = 500;
lich.maxHealth = 15000;
lich.health = 15000;
lich.damage = 400;
lich.maxHealth = 10000;
lich.health = 10000;
lich.move = false;
lich.monsterMoney = 10000;

Expand Down

0 comments on commit 6980565

Please sign in to comment.