Add gargoyle boss to aoe plugin

This commit is contained in:
Tyler Hardy
2018-01-19 14:23:37 -06:00
committed by Adam
parent 9aded64e04
commit 096469a202
4 changed files with 19 additions and 0 deletions

View File

@@ -47,6 +47,9 @@ public class ProjectileID
public static final int GALVEK_MINE = 1495;
public static final int GALVEK_BOMB = 1491;
public static final int DAWN_FREEZE = 1445;
public static final int DUSK_CEILING = 1435;
public static final int VETION_LIGHTNING = 280;
public static final int CHAOS_FANATIC_AOE = 551; //for lack of a better word

View File

@@ -59,6 +59,9 @@ public enum AoeProjectileInfo
GALVEK_MINE(ProjectileID.GALVEK_MINE, 3600, 3),
GALVEK_BOMB(ProjectileID.GALVEK_BOMB, 2400, 3),
DAWN_FREEZE(ProjectileID.DAWN_FREEZE, 3000, 3),
DUSK_CEILING(ProjectileID.DUSK_CEILING, 3000, 3),
/**
* the AOE of Vet'ion
*/

View File

@@ -115,6 +115,16 @@ public interface AoeWarningConfig extends Config
return true;
}
@ConfigItem(
keyName = "gargboss",
name = "Gargoyle Boss",
description = "Configs whether or not AoE Projectile Warnings for Dawn/Dusk are displayed"
)
default boolean isGargBossEnabled()
{
return true;
}
@ConfigItem(
keyName = "vetion",
name = "Vet'ion",

View File

@@ -137,6 +137,9 @@ public class AoeWarningPlugin extends Plugin
case GALVEK_BOMB:
case GALVEK_MINE:
return config.isGalvekEnabled();
case DAWN_FREEZE:
case DUSK_CEILING:
return config.isGargBossEnabled();
case OLM_FALLING_CRYSTAL:
case OLM_BURNING:
return config.isOlmEnabled();