From ff690c49355a2bbe61fe4e0fbd05f5357087193f Mon Sep 17 00:00:00 2001 From: Kevin Lyles Date: Thu, 17 Sep 2009 20:01:06 -0500 Subject: [PATCH] Added Feral AP --- Regexps.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Regexps.lua b/Regexps.lua index 57f89be..758dd6e 100644 --- a/Regexps.lua +++ b/Regexps.lua @@ -12,6 +12,7 @@ Preprocess = { {"^Use: Teaches you how to permanently enchant ", "Use: Permanently enchant "}, {"(%d+) to (%a)", "%1 %2"}, {"^Use: .*%. If you spend at least %d+ seconds eating you will become well fed and gain ([%a%d][%a%d, ]+) for .*%.", "%1"}, + {"Cat, Bear, Dire Bear, and Moonkin forms", "Cat/Bear/Dire Bear/Moonkin forms"}, } IgnoredLines = { @@ -62,6 +63,10 @@ SingleStatLines = { function(text, pattern) return WeightsWatcher:singleStatValueOnly(text, pattern, "DPS") end}, + {"^Increases attack power by (%d+) in Cat/Bear/Dire Bear/Moonkin forms only%.", + function(text, pattern) + return WeightsWatcher:singleStatValueOnly(text, pattern, "Feral AP") + end}, {"^%+?(%d+%%?) (%a[%a ]+)", function(text, pattern) local start, _, value, name = string.find(text, pattern) -- 1.7.9.5