rename "type" to "aura-type" for aura gained events

This commit is contained in:
Gered 2016-02-27 18:24:15 -05:00
parent 041cca7f33
commit a82318b425
3 changed files with 10 additions and 10 deletions

View file

@ -134,7 +134,7 @@
data)
(defmethod handle-event :aura-gained
[{:keys [target-name aura-name type stacks timestamp] :as parsed} data]
[{:keys [target-name aura-name aura-type stacks timestamp] :as parsed} data]
data)
(defmethod handle-event :aura-lost

View file

@ -698,7 +698,7 @@
:target-name %1
:aura-name %2
:stacks (->int %3)
:type :buff)}
:aura-type :buff)}
{:regex #"^(.+) (?:is|are) afflicted by (.+?)(?: \((\d+)\))?\.$"
:id :aura-debuff-gained
@ -708,7 +708,7 @@
:target-name %1
:aura-name %2
:stacks (->int %3)
:type :debuff)}
:aura-type :debuff)}
{:regex #"^(.+) fades from (.+)\.$"
:id :aura-fades

View file

@ -29,7 +29,7 @@
:timestamp (parse-log-timestamp "5/25 21:21:16.385" options)
:target-name "Vasling"
:aura-name "Blink"
:type :buff
:aura-type :buff
:stacks nil}))
(is (= (parse-line "5/25 21:16:27.257 Eggs gains Renew." options)
@ -40,7 +40,7 @@
:timestamp (parse-log-timestamp "5/25 21:16:27.257" options)
:target-name "Eggs"
:aura-name "Renew"
:type :buff
:aura-type :buff
:stacks nil}))
(is (= (parse-line "5/25 23:26:03.093 Victore gains Bonereaver's Edge (2)." options)
@ -51,7 +51,7 @@
:timestamp (parse-log-timestamp "5/25 23:26:03.093" options)
:target-name "Victore"
:aura-name "Bonereaver's Edge"
:type :buff
:aura-type :buff
:stacks 2}))
(is (= (parse-line "5/25 21:42:59.537 You gain Regrowth." options)
@ -62,7 +62,7 @@
:timestamp (parse-log-timestamp "5/25 21:42:59.537" options)
:target-name owner-char-name
:aura-name "Regrowth"
:type :buff
:aura-type :buff
:stacks nil})))
(deftest aura-debuff-gained
@ -76,7 +76,7 @@
:timestamp (parse-log-timestamp "5/25 21:16:46.564" options)
:target-name "Vasling"
:aura-name "Gnomish Death Ray"
:type :debuff
:aura-type :debuff
:stacks nil}))
(is (= (parse-line "5/25 21:16:43.064 Onyxia is afflicted by Shadow Vulnerability (5)." options)
@ -87,7 +87,7 @@
:timestamp (parse-log-timestamp "5/25 21:16:43.064" options)
:target-name "Onyxia"
:aura-name "Shadow Vulnerability"
:type :debuff
:aura-type :debuff
:stacks 5}))
(is (= (parse-line "5/25 21:43:05.511 You are afflicted by Weakened Soul." options)
@ -98,5 +98,5 @@
:timestamp (parse-log-timestamp "5/25 21:43:05.511" options)
:target-name owner-char-name
:aura-name "Weakened Soul"
:type :debuff
:aura-type :debuff
:stacks nil})))