v0.8.0: sub-parts of bosses are now considered minibosses

This commit is contained in:
Evan Debenham 2020-03-19 13:34:26 -04:00
parent 099073dd89
commit 60453b2a4e
3 changed files with 4 additions and 4 deletions

View File

@ -57,7 +57,7 @@ public class Pylon extends Mob {
maxLvl = -2; maxLvl = -2;
properties.add(Property.BOSS); properties.add(Property.MINIBOSS);
properties.add(Property.INORGANIC); properties.add(Property.INORGANIC);
properties.add(Property.ELECTRIC); properties.add(Property.ELECTRIC);
properties.add(Property.IMMOVABLE); properties.add(Property.IMMOVABLE);

View File

@ -222,7 +222,7 @@ public class Yog extends Mob {
state = WANDERING; state = WANDERING;
properties.add(Property.BOSS); properties.add(Property.MINIBOSS);
properties.add(Property.DEMONIC); properties.add(Property.DEMONIC);
properties.add(Property.ACIDIC); properties.add(Property.ACIDIC);
} }
@ -294,7 +294,7 @@ public class Yog extends Mob {
state = WANDERING; state = WANDERING;
properties.add(Property.BOSS); properties.add(Property.MINIBOSS);
properties.add(Property.DEMONIC); properties.add(Property.DEMONIC);
properties.add(Property.FIERY); properties.add(Property.FIERY);
} }

View File

@ -63,7 +63,7 @@ public abstract class YogFist extends Mob {
state = WANDERING; state = WANDERING;
properties.add(Property.BOSS); properties.add(Property.MINIBOSS);
properties.add(Property.DEMONIC); properties.add(Property.DEMONIC);
} }