v0.3.2: added prison guards

This commit is contained in:
Evan Debenham
2015-10-30 16:11:06 -04:00
parent 951bd49d92
commit d829e63f19
6 changed files with 237 additions and 9 deletions
@@ -78,13 +78,14 @@ public class Dungeon {
//enum of items which have limited spawns, records how many have spawned
//could all be their own separate numbers, but this allows iterating, much nicer for bundling/initializing.
//TODO: this is fairly brittle when it comes to bundling, should look into a more flexible solution.
public static enum limitedDrops{
//limited world drops
strengthPotions,
upgradeScrolls,
arcaneStyli,
//all unlimited health potion sources
//all unlimited health potion sources (except guards, which are at the bottom.
swarmHP,
batHP,
warlockHP,
@@ -101,7 +102,9 @@ public class Dungeon {
seedBag,
scrollBag,
potionBag,
wandBag;
wandBag,
guardHP;
public int count = 0;