Add gargoyle boss to aoe plugin
This commit is contained in:
@@ -47,6 +47,9 @@ public class ProjectileID
|
|||||||
public static final int GALVEK_MINE = 1495;
|
public static final int GALVEK_MINE = 1495;
|
||||||
public static final int GALVEK_BOMB = 1491;
|
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 VETION_LIGHTNING = 280;
|
||||||
|
|
||||||
public static final int CHAOS_FANATIC_AOE = 551; //for lack of a better word
|
public static final int CHAOS_FANATIC_AOE = 551; //for lack of a better word
|
||||||
|
|||||||
@@ -59,6 +59,9 @@ public enum AoeProjectileInfo
|
|||||||
GALVEK_MINE(ProjectileID.GALVEK_MINE, 3600, 3),
|
GALVEK_MINE(ProjectileID.GALVEK_MINE, 3600, 3),
|
||||||
GALVEK_BOMB(ProjectileID.GALVEK_BOMB, 2400, 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
|
* the AOE of Vet'ion
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -115,6 +115,16 @@ public interface AoeWarningConfig extends Config
|
|||||||
return true;
|
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(
|
@ConfigItem(
|
||||||
keyName = "vetion",
|
keyName = "vetion",
|
||||||
name = "Vet'ion",
|
name = "Vet'ion",
|
||||||
|
|||||||
@@ -137,6 +137,9 @@ public class AoeWarningPlugin extends Plugin
|
|||||||
case GALVEK_BOMB:
|
case GALVEK_BOMB:
|
||||||
case GALVEK_MINE:
|
case GALVEK_MINE:
|
||||||
return config.isGalvekEnabled();
|
return config.isGalvekEnabled();
|
||||||
|
case DAWN_FREEZE:
|
||||||
|
case DUSK_CEILING:
|
||||||
|
return config.isGargBossEnabled();
|
||||||
case OLM_FALLING_CRYSTAL:
|
case OLM_FALLING_CRYSTAL:
|
||||||
case OLM_BURNING:
|
case OLM_BURNING:
|
||||||
return config.isOlmEnabled();
|
return config.isOlmEnabled();
|
||||||
|
|||||||
Reference in New Issue
Block a user