Whale Watchers plugin (#12)

Whale Watchers plugin
This commit is contained in:
Kyleeld
2019-04-20 06:38:08 +01:00
committed by Tyler Bochard
parent 4f4c8c0be9
commit 3f72947945
6 changed files with 410 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
package net.runelite.client.plugins.whalewatchers;
import java.awt.*;
import net.runelite.client.config.*;
@ConfigGroup("WhaleWatchers")
public interface WhaleWatchersConfig extends Config
{
@ConfigItem(position = 1, keyName = "protectItemWarning", name = "Protect Item Warning", description = "Warns you when you are skulled and don't have protect item turned on.")
default boolean protectItemWarning() {
return false;
}
@ConfigItem(position = 2, keyName = "showDamageCounter", name = "Damage Counter", description = "Shows damage you've done and damage your opponent has done to you while in a fight")
default boolean showDamageCounter() {
return true;
}
@Alpha
@ConfigItem(position = 3, keyName = "damageBackgroundColor", name = "Counter Background Color", description = "The background color for the damage counter overlay")
default Color damageBackgroundColor() {
return Color.darkGray;
}
@ConfigItem(position = 4, keyName = "smiteableWarning", name = "Smite Warning", description = "Displays a warning overlay when your prayer is at a smiteable level")
default boolean smiteableWarning() {
return true;
}
@ConfigItem(position = 5, keyName = "gloryWarning", name = "Glory Warning", description = "Displays a warning box while you are wearing an uncharged glory")
default boolean gloryWarning() {
return true;
}
}