diff options
Diffstat (limited to 'test')
50 files changed, 3630 insertions, 3185 deletions
diff --git a/test/CheckComments.py b/test/CheckComments.py new file mode 100644 index 00000000..446137b0 --- /dev/null +++ b/test/CheckComments.py @@ -0,0 +1,121 @@ +import sys +import re +import os + +ok = 100.0 +if sys.argv[1] == '-l': + ok = float(sys.argv[2]) + sys.argv = [sys.argv[0]] + sys.argv[3:] + +debug = False +if sys.argv[1] == '-v': + debug = True + sys.argv = [sys.argv[0]] + sys.argv[2:] + +errors = 0 + +for path in sys.argv[1:]: + other_depth = 0 + brace_depth = 0 + code_count = 0 + comment_count = 0 + long_comment = None + long_comments = {} + kind = "function" + function_name = "<unknown>" + ctor_dtor = False + linenum = 0 + + fd = open(path, 'r') + for line in fd.readlines(): + linenum += 1 + + match = re.search('/\*\*(.*)', line) + if match: + long_comment = re.sub('\s+', '', match.group(1)) + continue + elif long_comment: + match = re.search('(.*)\*/', line) + if match: + long_comment += re.sub('\s+', '', match.group(1)) + comment_count = len(long_comment) + long_comment = None + else: + long_comment += re.sub('\s+', '', line[:-1]) + continue + + if brace_depth == 0: + match = re.search('(namespace|enum|class|struct|union)', line) + if match: + kind = match.group(1) + if debug: print "kind =", kind + elif kind == "function": + match = re.search('(\S+)\(', line) + if match: + function_name = match.group(1) + long_comments[function_name] = comment_count + comment_count = 0 + if debug: print "name found %s" % function_name + + if re.search('{', line) and not re.search('@{', line): + if kind == "function": + brace_depth += 1 + if debug: print "brace_depth =", brace_depth + else: + other_depth += 1 + kind = "function" + if debug: print "other_depth =", other_depth + + if re.search('}', line) and not re.search('@}', line): + if brace_depth > 0: + brace_depth -= 1 + if debug: print "brace_depth =", brace_depth + + if brace_depth == 0: + if debug: print "function done" + if function_name in long_comments: + comment_count += long_comments[function_name] + if code_count == 0: + percent = ok + print "%7s %4d/%4d %s:%d: %s" % \ + ("empty", comment_count, code_count, + os.path.basename(path), linenum, + function_name) + errors += 1 + else: + percent = 100.0 * (float(comment_count) / + float(code_count)) + if percent < ok and not ctor_dtor: + print "%6.0f%% %4d/%4d %s:%d: %s" % \ + (percent, comment_count, code_count, + os.path.basename(path), linenum, + function_name) + errors += 1 + code_count = 0 + comment_count = 0 + kind = "function" + function_name = "<unknown>" + ctor_dtor = False + else: + other_depth -= 1 + if debug: print "other_depth =", other_depth + + if brace_depth > 0: + if re.search("TRACE_[CD]TOR", line): + ctor_dtor = True + + line = re.sub('\s+', '', line[:-1]) + + match = re.search('//(.*)', line) + if match: + comment = match.group(1) + line = re.sub('//.*', '', line) + else: + comment = None + + if line: + code_count += len(line) + if comment: + comment_count += len(comment) + +sys.exit(errors) diff --git a/test/CheckTests.py b/test/CheckTests.py new file mode 100755 index 00000000..1a364ff4 --- /dev/null +++ b/test/CheckTests.py @@ -0,0 +1,87 @@ +#!/usr/bin/env python + +import sys +import re +import os + +from os.path import * +from subprocess import Popen, PIPE + +ledger_binary = sys.argv[1] +source_topdir = sys.argv[2] + +documented_options = [] +for line in open(join(source_topdir, 'doc', 'ledger.1')): + match = re.match('\.It Fl \\\\-([-A-Za-z]+)', line) + if match: + option = match.group(1) + if option not in documented_options: + documented_options.append(option) + +pipe = Popen('%s --debug option.names parse true' % ledger_binary, + shell=True, stdout=PIPE, stderr=PIPE) +errors = 0 + +untested_options = [ + 'anon', + 'args-only', + 'cache', + 'debug', + 'download', + 'file', + 'force-color', + 'force-pager', + 'full-help', + 'help', + 'help-calc', + 'help-comm', + 'help-disp', + 'import', + 'init-file', + 'no-color', + 'options', + 'price-db', + 'price-exp', + 'revalued-total', + 'script', + 'seed', + 'trace', + 'verbose', + 'verify', + 'version' +] + +for line in pipe.stderr: + match = re.search('\[DEBUG\] Option: (.*)', line) + if match: + option = match.group(1) + + option = re.sub('_', '-', option) + option = re.sub('-$', '', option) + + if option not in untested_options and \ + not exists(join(source_topdir, 'test', 'baseline', + 'opt-%s.test' % option)): + print "Baseline test missing for --%s" % option + errors += 1 + + if option not in documented_options: + print "Man page entry missing for --%s" % option + errors += 1 + else: + documented_options.remove(option) + +known_alternates = [ + 'cost', + 'first', + 'import', + 'last', + 'leeway', + 'period-sort' +] + +for option in documented_options: + if option not in known_alternates: + print "Man page entry for unknown option --%s" % option + +sys.exit(errors) diff --git a/test/GenerateTests.py b/test/GenerateTests.py index 70baee28..79c7ae04 100755 --- a/test/GenerateTests.py +++ b/test/GenerateTests.py @@ -130,6 +130,7 @@ def run_gen_test(i): harness.success() else: harness.failure() + return harness.failed if multiproc: pool = Pool(jobs*2) @@ -137,7 +138,7 @@ else: pool = None if pool: - pool.map(run_gen_test, range(beg_range, end_range)) + harness.failed = sum(pool.map(run_gen_test, range(beg_range, end_range))) else: for i in range(beg_range, end_range): run_gen_test(i) @@ -145,4 +146,5 @@ else: if pool: pool.close() pool.join() + harness.exit() diff --git a/test/RegressTests.py b/test/RegressTests.py index 0472ac90..2d8ef8e8 100755 --- a/test/RegressTests.py +++ b/test/RegressTests.py @@ -52,7 +52,7 @@ class RegressFile(object): def read_section(self): lines = [] line = self.fd.readline() - while not self.is_directive(line): + while line and not self.is_directive(line): lines.append(self.transform_line(line)) line = self.fd.readline() return (lines, line) @@ -154,18 +154,22 @@ class RegressFile(object): if not use_stdin: os.remove(tempdata[1]) - def run_tests(self, pool): + def run_tests(self): test = self.read_test() while test: - if pool: - pool.apply_async(RegressFile.run_test, (self, test,)) - else: - self.run_test(test) + self.run_test(test) test = self.read_test(test) + return harness.failed def close(self): self.fd.close() +def do_test(path): + entry = RegressFile(path) + failed = entry.run_tests() + entry.close() + return failed + if __name__ == '__main__': if multiproc: pool = Pool(jobs*2) @@ -173,17 +177,19 @@ if __name__ == '__main__': pool = None if os.path.isdir(tests): - for test_file in os.listdir(tests): - if re.search('\.test$', test_file): - entry = RegressFile(os.path.join(tests, test_file)) - entry.run_tests(pool) - entry.close() + tests = [os.path.join(tests, x) + for x in os.listdir(tests) if x.endswith('.test')] + if pool: + harness.failed = sum(pool.map(do_test, tests, 1)) + else: + harness.failed = sum(map(do_test, tests)) else: entry = RegressFile(tests) - entry.run_tests(pool) + entry.run_tests() entry.close() if pool: pool.close() pool.join() + harness.exit() diff --git a/test/baseline/feat-fixated-prices.test b/test/baseline/feat-fixated-prices.test index 11330dea..83c4bcce 100644 --- a/test/baseline/feat-fixated-prices.test +++ b/test/baseline/feat-fixated-prices.test @@ -22,3 +22,15 @@ P 1990/02/15 12:00:00 FOO $3 90-Feb-20 Payee Expenses:Gas $300 $800 >>>2 === 0 +reg +<<< +fixed XCD $0.374531835206 + +2008/04/08 KFC + Expenses:Food XCD 43.00 + Assets:Cash + +end fixed +>>> +08-Apr-08 KFC Expenses:Food XCD 43.00 XCD 43.00 + Assets:Cash XCD -43.00 0 diff --git a/test/baseline/opt-actual-dates.test b/test/baseline/opt-actual-dates.test new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/baseline/opt-actual-dates.test diff --git a/test/baseline/opt-add-budget.test b/test/baseline/opt-add-budget.test index 535335d3..d2cd6945 100644 --- a/test/baseline/opt-add-budget.test +++ b/test/baseline/opt-add-budget.test @@ -1,4 +1,4 @@ -reg --add-budget books cards +reg --add-budget books cards --now=2009/12/31 <<< ~ monthly Expenses:Books $10.00 diff --git a/test/baseline/opt-bold-if.test b/test/baseline/opt-bold-if.test new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/baseline/opt-bold-if.test diff --git a/test/baseline/opt-budget-format.test b/test/baseline/opt-budget-format.test new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/baseline/opt-budget-format.test diff --git a/test/baseline/opt-budget.test b/test/baseline/opt-budget.test index eb2ade9d..67b4e85e 100644 --- a/test/baseline/opt-budget.test +++ b/test/baseline/opt-budget.test @@ -1,4 +1,4 @@ -reg --budget books +reg --budget books --now=2009/12/31 <<< ~ monthly Expenses:Books $10.00 diff --git a/test/baseline/opt-budget_only.test b/test/baseline/opt-budget_only.test new file mode 100644 index 00000000..b052ed36 --- /dev/null +++ b/test/baseline/opt-budget_only.test @@ -0,0 +1,22 @@ +reg income --budget --now=2010/06/20 +<<< +~ Monthly since 2010/01/01 + Expenses:Bills:Rent $873.00 + Expenses:Household $200.00 + Income:Salary -$2491.60 + Assets:Bank:Checking + +~ biweekly from 2010/02/23 + Expenses:Bills:Housecleaning $85.00 + Assets:Bank:Checking + +2010/06/22 c897683b + Expenses:Household $100.00 + Assets:Bank:Checking +>>> +10-Jan-01 Budget transaction Income:Salary $2491.60 $2491.60 +10-Feb-01 Budget transaction Income:Salary $2491.60 $4983.20 +10-Mar-01 Budget transaction Income:Salary $2491.60 $7474.80 +10-Apr-01 Budget transaction Income:Salary $2491.60 $9966.40 +10-May-01 Budget transaction Income:Salary $2491.60 $12458.00 +10-Jun-01 Budget transaction Income:Salary $2491.60 $14949.60 diff --git a/test/baseline/opt-budget_range.test b/test/baseline/opt-budget_range.test new file mode 100644 index 00000000..7c8ee2d2 --- /dev/null +++ b/test/baseline/opt-budget_range.test @@ -0,0 +1,111 @@ +reg --now=2010/02 --sort=date exp --budget +<<< +~ monthly + Expenses:Food $100 + Expenses:Movies $20 + Assets:Cash + +~ monthly from 2009 + Expenses:Food $101 + Expenses:Movies $21 + Assets:Cash + +~ monthly to 2010 + Expenses:Food $102 + Expenses:Movies $22 + Assets:Cash + +~ monthly from 2009 to 2010 + Expenses:Food $103 + Expenses:Movies $23 + Assets:Cash + +2009/06/05 Grocery + Expenses:Food $5 + Assets:Cash +>>> +09-Jan-01 Budget transaction Expenses:Food $-101 $-101 +09-Jan-01 Budget transaction Expenses:Movies $-21 $-122 +09-Jan-01 Budget transaction Expenses:Food $-103 $-225 +09-Jan-01 Budget transaction Expenses:Movies $-23 $-248 +09-Feb-01 Budget transaction Expenses:Food $-101 $-349 +09-Feb-01 Budget transaction Expenses:Movies $-21 $-370 +09-Feb-01 Budget transaction Expenses:Food $-103 $-473 +09-Feb-01 Budget transaction Expenses:Movies $-23 $-496 +09-Mar-01 Budget transaction Expenses:Food $-101 $-597 +09-Mar-01 Budget transaction Expenses:Movies $-21 $-618 +09-Mar-01 Budget transaction Expenses:Food $-103 $-721 +09-Mar-01 Budget transaction Expenses:Movies $-23 $-744 +09-Apr-01 Budget transaction Expenses:Food $-101 $-845 +09-Apr-01 Budget transaction Expenses:Movies $-21 $-866 +09-Apr-01 Budget transaction Expenses:Food $-103 $-969 +09-Apr-01 Budget transaction Expenses:Movies $-23 $-992 +09-May-01 Budget transaction Expenses:Food $-101 $-1093 +09-May-01 Budget transaction Expenses:Movies $-21 $-1114 +09-May-01 Budget transaction Expenses:Food $-103 $-1217 +09-May-01 Budget transaction Expenses:Movies $-23 $-1240 +09-Jun-01 Budget transaction Expenses:Food $-100 $-1340 +09-Jun-01 Budget transaction Expenses:Movies $-20 $-1360 +09-Jun-01 Budget transaction Expenses:Food $-102 $-1462 +09-Jun-01 Budget transaction Expenses:Movies $-22 $-1484 +09-Jun-01 Budget transaction Expenses:Food $-101 $-1585 +09-Jun-01 Budget transaction Expenses:Movies $-21 $-1606 +09-Jun-01 Budget transaction Expenses:Food $-103 $-1709 +09-Jun-01 Budget transaction Expenses:Movies $-23 $-1732 +09-Jun-05 Grocery Expenses:Food $5 $-1727 +09-Jul-01 Budget transaction Expenses:Food $-100 $-1827 +09-Jul-01 Budget transaction Expenses:Movies $-20 $-1847 +09-Jul-01 Budget transaction Expenses:Food $-101 $-1948 +09-Jul-01 Budget transaction Expenses:Movies $-21 $-1969 +09-Jul-01 Budget transaction Expenses:Food $-102 $-2071 +09-Jul-01 Budget transaction Expenses:Movies $-22 $-2093 +09-Jul-01 Budget transaction Expenses:Food $-103 $-2196 +09-Jul-01 Budget transaction Expenses:Movies $-23 $-2219 +09-Aug-01 Budget transaction Expenses:Food $-100 $-2319 +09-Aug-01 Budget transaction Expenses:Movies $-20 $-2339 +09-Aug-01 Budget transaction Expenses:Food $-101 $-2440 +09-Aug-01 Budget transaction Expenses:Movies $-21 $-2461 +09-Aug-01 Budget transaction Expenses:Food $-102 $-2563 +09-Aug-01 Budget transaction Expenses:Movies $-22 $-2585 +09-Aug-01 Budget transaction Expenses:Food $-103 $-2688 +09-Aug-01 Budget transaction Expenses:Movies $-23 $-2711 +09-Sep-01 Budget transaction Expenses:Food $-100 $-2811 +09-Sep-01 Budget transaction Expenses:Movies $-20 $-2831 +09-Sep-01 Budget transaction Expenses:Food $-101 $-2932 +09-Sep-01 Budget transaction Expenses:Movies $-21 $-2953 +09-Sep-01 Budget transaction Expenses:Food $-102 $-3055 +09-Sep-01 Budget transaction Expenses:Movies $-22 $-3077 +09-Sep-01 Budget transaction Expenses:Food $-103 $-3180 +09-Sep-01 Budget transaction Expenses:Movies $-23 $-3203 +09-Oct-01 Budget transaction Expenses:Food $-100 $-3303 +09-Oct-01 Budget transaction Expenses:Movies $-20 $-3323 +09-Oct-01 Budget transaction Expenses:Food $-101 $-3424 +09-Oct-01 Budget transaction Expenses:Movies $-21 $-3445 +09-Oct-01 Budget transaction Expenses:Food $-102 $-3547 +09-Oct-01 Budget transaction Expenses:Movies $-22 $-3569 +09-Oct-01 Budget transaction Expenses:Food $-103 $-3672 +09-Oct-01 Budget transaction Expenses:Movies $-23 $-3695 +09-Nov-01 Budget transaction Expenses:Food $-100 $-3795 +09-Nov-01 Budget transaction Expenses:Movies $-20 $-3815 +09-Nov-01 Budget transaction Expenses:Food $-101 $-3916 +09-Nov-01 Budget transaction Expenses:Movies $-21 $-3937 +09-Nov-01 Budget transaction Expenses:Food $-102 $-4039 +09-Nov-01 Budget transaction Expenses:Movies $-22 $-4061 +09-Nov-01 Budget transaction Expenses:Food $-103 $-4164 +09-Nov-01 Budget transaction Expenses:Movies $-23 $-4187 +09-Dec-01 Budget transaction Expenses:Food $-100 $-4287 +09-Dec-01 Budget transaction Expenses:Movies $-20 $-4307 +09-Dec-01 Budget transaction Expenses:Food $-101 $-4408 +09-Dec-01 Budget transaction Expenses:Movies $-21 $-4429 +09-Dec-01 Budget transaction Expenses:Food $-102 $-4531 +09-Dec-01 Budget transaction Expenses:Movies $-22 $-4553 +09-Dec-01 Budget transaction Expenses:Food $-103 $-4656 +09-Dec-01 Budget transaction Expenses:Movies $-23 $-4679 +10-Jan-01 Budget transaction Expenses:Food $-100 $-4779 +10-Jan-01 Budget transaction Expenses:Movies $-20 $-4799 +10-Jan-01 Budget transaction Expenses:Food $-101 $-4900 +10-Jan-01 Budget transaction Expenses:Movies $-21 $-4921 +10-Feb-01 Budget transaction Expenses:Food $-100 $-5021 +10-Feb-01 Budget transaction Expenses:Movies $-20 $-5041 +10-Feb-01 Budget transaction Expenses:Food $-101 $-5142 +10-Feb-01 Budget transaction Expenses:Movies $-21 $-5163 diff --git a/test/baseline/opt-cleared-format.test b/test/baseline/opt-cleared-format.test new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/baseline/opt-cleared-format.test diff --git a/test/baseline/opt-commodity-as-account.test b/test/baseline/opt-commodity-as-account.test index 8fa813fd..20756688 100644 --- a/test/baseline/opt-commodity-as-account.test +++ b/test/baseline/opt-commodity-as-account.test @@ -4,8 +4,8 @@ reg --account=commodity Assets:Investments:Vanguard:VMMXX 0.350 VMMXX @ $1.00 Income:Dividends:Vanguard:VMMXX $-0.35 >>>1 -07-Feb-02 RD VMMXX VM:As:Inve:Vangu:VMMXX 0.350 VMMXX 0.350 VMMXX -07-Feb-02 RD VMMXX $:In:Divi:Vangua:VMMXX $-0.35 $-0.35 +07-Feb-02 RD VMMXX VM:As:Inv:Vangua:VMMXX 0.350 VMMXX 0.350 VMMXX +07-Feb-02 RD VMMXX $:In:Div:Vanguar:VMMXX $-0.35 $-0.35 0.350 VMMXX >>>2 === 0 diff --git a/test/baseline/opt-count.test b/test/baseline/opt-count.test new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/baseline/opt-count.test diff --git a/test/baseline/opt-date.test b/test/baseline/opt-date.test new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/baseline/opt-date.test diff --git a/test/baseline/opt-datetime-format.test b/test/baseline/opt-datetime-format.test new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/baseline/opt-datetime-format.test diff --git a/test/baseline/opt-decimal-comma.test b/test/baseline/opt-decimal-comma.test new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/baseline/opt-decimal-comma.test diff --git a/test/baseline/opt-empty.test b/test/baseline/opt-empty.test index 7bf830a9..507767ed 100644 --- a/test/baseline/opt-empty.test +++ b/test/baseline/opt-empty.test @@ -24,13 +24,13 @@ reg --empty Assets:Cash $-10.00 0 08-Jan-01 January Expenses:One:Books $10.00 $10.00 Expenses:One:Two:Books $10.00 $20.00 - Expe:On:Tw:Three:Books $10.00 $30.00 + Ex:One:Two:Three:Books $10.00 $30.00 Assets:Cash $-30.00 0 08-Jan-01 January Assets:Cash 0 0 Income:Books 0 0 08-Jan-01 January Assets:Cash $30.00 $30.00 Income:One:Books $-10.00 $20.00 Income:One:Two:Books $-10.00 $10.00 - Inc:On:Two:Three:Books $-10.00 0 + In:One:Two:Three:Books $-10.00 0 >>>2 === 0 diff --git a/test/baseline/opt-forecast-years.test b/test/baseline/opt-forecast-years.test new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/baseline/opt-forecast-years.test diff --git a/test/baseline/opt-forecast_only.test b/test/baseline/opt-forecast_only.test new file mode 100644 index 00000000..c63ab2a9 --- /dev/null +++ b/test/baseline/opt-forecast_only.test @@ -0,0 +1,64 @@ +reg --forecast 'date <[2011]' --now=2010/06/21 +<<< +~ Monthly since 2010/01/01 + Expenses:Bills:Rent $873.00 + Expenses:Household $200.00 + Income:Salary -$2491.60 + Assets:Bank:Checking + +~ biweekly from 2010/02/23 + Expenses:Bills:Housecleaning $85.00 + Assets:Bank:Checking +>>> +10-Jul-01 Forecast transaction Expenses:Bills:Rent $873.00 $873.00 +10-Jul-01 Forecast transaction Expenses:Household $200.00 $1073.00 +10-Jul-01 Forecast transaction Income:Salary $-2491.60 $-1418.60 +10-Jul-01 Forecast transaction Assets:Bank:Checking $1418.60 0 +10-Jun-27 Forecast transaction Exp:Bill:Housecleaning $85.00 $85.00 +10-Jun-27 Forecast transaction Assets:Bank:Checking $-85.00 0 +10-Jul-11 Forecast transaction Exp:Bill:Housecleaning $85.00 $85.00 +10-Jul-11 Forecast transaction Assets:Bank:Checking $-85.00 0 +10-Aug-01 Forecast transaction Expenses:Bills:Rent $873.00 $873.00 +10-Aug-01 Forecast transaction Expenses:Household $200.00 $1073.00 +10-Aug-01 Forecast transaction Income:Salary $-2491.60 $-1418.60 +10-Aug-01 Forecast transaction Assets:Bank:Checking $1418.60 0 +10-Jul-25 Forecast transaction Exp:Bill:Housecleaning $85.00 $85.00 +10-Jul-25 Forecast transaction Assets:Bank:Checking $-85.00 0 +10-Aug-08 Forecast transaction Exp:Bill:Housecleaning $85.00 $85.00 +10-Aug-08 Forecast transaction Assets:Bank:Checking $-85.00 0 +10-Sep-01 Forecast transaction Expenses:Bills:Rent $873.00 $873.00 +10-Sep-01 Forecast transaction Expenses:Household $200.00 $1073.00 +10-Sep-01 Forecast transaction Income:Salary $-2491.60 $-1418.60 +10-Sep-01 Forecast transaction Assets:Bank:Checking $1418.60 0 +10-Aug-22 Forecast transaction Exp:Bill:Housecleaning $85.00 $85.00 +10-Aug-22 Forecast transaction Assets:Bank:Checking $-85.00 0 +10-Sep-05 Forecast transaction Exp:Bill:Housecleaning $85.00 $85.00 +10-Sep-05 Forecast transaction Assets:Bank:Checking $-85.00 0 +10-Oct-01 Forecast transaction Expenses:Bills:Rent $873.00 $873.00 +10-Oct-01 Forecast transaction Expenses:Household $200.00 $1073.00 +10-Oct-01 Forecast transaction Income:Salary $-2491.60 $-1418.60 +10-Oct-01 Forecast transaction Assets:Bank:Checking $1418.60 0 +10-Sep-19 Forecast transaction Exp:Bill:Housecleaning $85.00 $85.00 +10-Sep-19 Forecast transaction Assets:Bank:Checking $-85.00 0 +10-Oct-03 Forecast transaction Exp:Bill:Housecleaning $85.00 $85.00 +10-Oct-03 Forecast transaction Assets:Bank:Checking $-85.00 0 +10-Nov-01 Forecast transaction Expenses:Bills:Rent $873.00 $873.00 +10-Nov-01 Forecast transaction Expenses:Household $200.00 $1073.00 +10-Nov-01 Forecast transaction Income:Salary $-2491.60 $-1418.60 +10-Nov-01 Forecast transaction Assets:Bank:Checking $1418.60 0 +10-Oct-17 Forecast transaction Exp:Bill:Housecleaning $85.00 $85.00 +10-Oct-17 Forecast transaction Assets:Bank:Checking $-85.00 0 +10-Oct-31 Forecast transaction Exp:Bill:Housecleaning $85.00 $85.00 +10-Oct-31 Forecast transaction Assets:Bank:Checking $-85.00 0 +10-Nov-14 Forecast transaction Exp:Bill:Housecleaning $85.00 $85.00 +10-Nov-14 Forecast transaction Assets:Bank:Checking $-85.00 0 +10-Dec-01 Forecast transaction Expenses:Bills:Rent $873.00 $873.00 +10-Dec-01 Forecast transaction Expenses:Household $200.00 $1073.00 +10-Dec-01 Forecast transaction Income:Salary $-2491.60 $-1418.60 +10-Dec-01 Forecast transaction Assets:Bank:Checking $1418.60 0 +10-Nov-28 Forecast transaction Exp:Bill:Housecleaning $85.00 $85.00 +10-Nov-28 Forecast transaction Assets:Bank:Checking $-85.00 0 +10-Dec-12 Forecast transaction Exp:Bill:Housecleaning $85.00 $85.00 +10-Dec-12 Forecast transaction Assets:Bank:Checking $-85.00 0 +10-Dec-26 Forecast transaction Exp:Bill:Housecleaning $85.00 $85.00 +10-Dec-26 Forecast transaction Assets:Bank:Checking $-85.00 0 diff --git a/test/baseline/opt-generated.test b/test/baseline/opt-generated.test new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/baseline/opt-generated.test diff --git a/test/baseline/opt-group-by.test b/test/baseline/opt-group-by.test new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/baseline/opt-group-by.test diff --git a/test/baseline/opt-group-title-format.test b/test/baseline/opt-group-title-format.test new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/baseline/opt-group-title-format.test diff --git a/test/baseline/opt-inject.test b/test/baseline/opt-inject.test new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/baseline/opt-inject.test diff --git a/test/baseline/opt-lot-dates.test b/test/baseline/opt-lot-dates.test index bf6dee0b..1acc93c8 100644 --- a/test/baseline/opt-lot-dates.test +++ b/test/baseline/opt-lot-dates.test @@ -356,8 +356,8 @@ D 1.00G Assets:Tajer 2006/03/17 Player: raev - Assets:Tajer:Items "Wildheart Belt" 1 {30G} - Assets:Tajer:Items "Ace of Warlords" -2 {15G} + Assets:Tajer:Items "Wildheart Belt" 1 @ 30G + Assets:Tajer:Items "Ace of Warlords" -2 @ 15G 2006/03/17 Auction House Expenses:Fees:Auction 7482c @@ -625,2650 +625,2573 @@ D 1.00G -1.25G "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] - -2.50G - "Plans: Wildthorn Mail" 1 - "Plans: Wildthorn Mail" 1 [2006/03/14] - -2.05G - "Plans: Wildthorn Mail" 1 + -1.25G "Plans: Wildthorn Mail" 1 [2006/03/14] - -2.02G - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] - -2.50G - "Plans: Wildthorn Mail" 1 + -80.00s "Plans: Wildthorn Mail" 1 [2006/03/14] - -2.03G - "Plans: Wildthorn Mail" 1 + -77.41s + -1.25G "Plans: Wildthorn Mail" 1 [2006/03/14] - -2.50G - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] + -77.80s -1.25G - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] - -2.50G - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] - -2.26G - "Plans: Wildthorn Mail" 1 + 42c + -1.25G "Plans: Wildthorn Mail" 1 [2006/03/14] - -2.50G - "Plans: Wildthorn Mail" 1 + -1.01G "Plans: Wildthorn Mail" 1 [2006/03/14] - -2.50G - "Plans: Wildthorn Mail" 1 + -1.25G "Plans: Wildthorn Mail" 1 [2006/03/14] - -2.50G - "Plans: Wildthorn Mail" 1 + -1.25G "Plans: Wildthorn Mail" 1 [2006/03/14] - -2.50G - "Plans: Wildthorn Mail" 1 + -1.25G "Plans: Wildthorn Mail" 1 [2006/03/14] - -2.50G - "Plans: Wildthorn Mail" 1 + -1.25G "Plans: Wildthorn Mail" 1 [2006/03/14] - -2.08G - "Plans: Wildthorn Mail" 1 + -1.25G "Plans: Wildthorn Mail" 1 [2006/03/14] - -2.00G - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] - -2.50G - "Plans: Wildthorn Mail" 1 + -82.50s "Plans: Wildthorn Mail" 1 [2006/03/14] - -2.49G - "Plans: Wildthorn Mail" 1 + -75.00s + -1.25G "Plans: Wildthorn Mail" 1 [2006/03/14] - -2.50G - "Plans: Wildthorn Mail" 1 + -1.24G "Plans: Wildthorn Mail" 1 [2006/03/14] - "Plans: Wildthorn Mail" 1 + -1.25G "Plans: Wildthorn Mail" 1 [2006/03/14] - 50.00s - -2.50G - "Plans: Wildthorn Mail" 1 + 1.75G "Plans: Wildthorn Mail" 1 [2006/03/14] - -2.10G - "Plans: Wildthorn Mail" 1 + -1.25G "Plans: Wildthorn Mail" 1 [2006/03/14] - -2.10G - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] - -2.50G - "Plans: Wildthorn Mail" 1 + -85.00s "Plans: Wildthorn Mail" 1 [2006/03/14] - -2.42G - "Plans: Wildthorn Mail" 1 + -84.70s + -1.25G "Plans: Wildthorn Mail" 1 [2006/03/14] - -2.31G - "Plans: Wildthorn Mail" 1 + -1.17G "Plans: Wildthorn Mail" 1 [2006/03/14] - -2.50G - "Plans: Wildthorn Mail" 1 + -1.06G + "Plans: Wildthorn Mail" 1 [2006/03/14] + -1.25G "Plans: Wildthorn Mail" 1 [2006/03/14] "Beaststalker's Belt" 1 [2006/03/15] - -2.50G - "Plans: Wildthorn Mail" 1 + -1.25G "Plans: Wildthorn Mail" 1 [2006/03/14] "Beaststalker's Belt" 1 [2006/03/15] - -67.50G - "Plans: Wildthorn Mail" 1 + -66.25G "Plans: Wildthorn Mail" 1 [2006/03/14] "Beaststalker's Belt" 1 [2006/03/15] - -67.50G - "Plans: Wildthorn Mail" 1 + -66.25G "Plans: Wildthorn Mail" 1 [2006/03/14] "Beaststalker's Belt" 1 [2006/03/15] - -67.50G - "Plans: Wildthorn Mail" 1 + -66.25G "Plans: Wildthorn Mail" 1 [2006/03/14] "Beaststalker's Belt" 1 [2006/03/15] - -66.67G - "Plans: Wildthorn Mail" 1 + -65.42G "Plans: Wildthorn Mail" 1 [2006/03/14] "Beaststalker's Belt" 1 [2006/03/15] - -67.50G - "Plans: Wildthorn Mail" 1 + -66.25G "Plans: Wildthorn Mail" 1 [2006/03/14] "Beaststalker's Belt" 1 [2006/03/15] - -67.50G - "Plans: Wildthorn Mail" 1 + -66.25G "Plans: Wildthorn Mail" 1 [2006/03/14] "Beaststalker's Belt" 1 [2006/03/15] - -67.50G - "Plans: Wildthorn Mail" 1 + -66.25G "Plans: Wildthorn Mail" 1 [2006/03/14] "Beaststalker's Belt" 1 [2006/03/15] - -65.83G - "Plans: Wildthorn Mail" 1 + -64.58G "Plans: Wildthorn Mail" 1 [2006/03/14] "Beaststalker's Belt" 1 [2006/03/15] - -64.16G - "Plans: Wildthorn Mail" 1 + -62.91G "Plans: Wildthorn Mail" 1 [2006/03/14] "Beaststalker's Belt" 1 [2006/03/15] - -67.50G - "Plans: Wildthorn Mail" 1 + -66.25G "Plans: Wildthorn Mail" 1 [2006/03/14] "Beaststalker's Belt" 1 [2006/03/15] - -67.50G - "Plans: Wildthorn Mail" 1 + -66.25G "Plans: Wildthorn Mail" 1 [2006/03/14] "Beaststalker's Belt" 1 [2006/03/15] - -67.50G - "Plans: Wildthorn Mail" 1 + -66.25G "Plans: Wildthorn Mail" 1 [2006/03/14] "Beaststalker's Belt" 1 [2006/03/15] - -67.42G - "Plans: Wildthorn Mail" 1 + -66.17G "Plans: Wildthorn Mail" 1 [2006/03/14] "Beaststalker's Belt" 1 [2006/03/15] - -67.37G - "Plans: Wildthorn Mail" 1 + -66.12G "Plans: Wildthorn Mail" 1 [2006/03/14] "Beaststalker's Belt" 1 [2006/03/15] - -67.32G - "Plans: Wildthorn Mail" 1 + -66.07G "Plans: Wildthorn Mail" 1 [2006/03/14] "Beaststalker's Belt" 1 [2006/03/15] - -67.28G - "Plans: Wildthorn Mail" 1 + -66.03G "Plans: Wildthorn Mail" 1 [2006/03/14] "Beaststalker's Belt" 1 [2006/03/15] - -67.26G - "Plans: Wildthorn Mail" 1 + -66.01G "Plans: Wildthorn Mail" 1 [2006/03/14] "Beaststalker's Belt" 1 [2006/03/15] - -67.50G - "Plans: Wildthorn Mail" 1 + -66.25G "Plans: Wildthorn Mail" 1 [2006/03/14] "Beaststalker's Belt" 1 [2006/03/15] - -67.38G - "Plans: Wildthorn Mail" 1 + -66.13G "Plans: Wildthorn Mail" 1 [2006/03/14] "Beaststalker's Belt" 1 [2006/03/15] - -67.50G - "Plans: Wildthorn Mail" 1 + -66.25G "Plans: Wildthorn Mail" 1 [2006/03/14] "Beaststalker's Belt" 1 [2006/03/15] - -67.28G - "Plans: Wildthorn Mail" 1 + -66.03G "Plans: Wildthorn Mail" 1 [2006/03/14] "Beaststalker's Belt" 1 [2006/03/15] - -67.50G - "Plans: Wildthorn Mail" 1 + -66.25G "Plans: Wildthorn Mail" 1 [2006/03/14] "Beaststalker's Belt" 1 [2006/03/15] - -67.50G - "Plans: Wildthorn Mail" 1 + -66.25G "Plans: Wildthorn Mail" 1 [2006/03/14] "Recipe: Elixir of Giant Growth" 1 [2006/03/15] "Beaststalker's Belt" 1 [2006/03/15] - -68.50G - "Plans: Wildthorn Mail" 1 + -67.25G "Plans: Wildthorn Mail" 1 [2006/03/14] "Recipe: Elixir of Giant Growth" 1 [2006/03/15] "Beaststalker's Belt" 1 [2006/03/15] - -68.50G - "Plans: Wildthorn Mail" 1 + -67.25G "Plans: Wildthorn Mail" 1 [2006/03/14] "Recipe: Elixir of Giant Growth" 1 [2006/03/15] "Beaststalker's Belt" 1 [2006/03/15] - -68.50G - "Plans: Wildthorn Mail" 1 + -67.25G "Plans: Wildthorn Mail" 1 [2006/03/14] "Recipe: Elixir of Giant Growth" 1 [2006/03/15] "Beaststalker's Belt" 1 [2006/03/15] - -67.67G - "Plans: Wildthorn Mail" 1 + -66.42G "Plans: Wildthorn Mail" 1 [2006/03/14] "Recipe: Elixir of Giant Growth" 1 [2006/03/15] "Beaststalker's Belt" 1 [2006/03/15] - -68.50G - "Plans: Wildthorn Mail" 1 + -67.25G "Plans: Wildthorn Mail" 1 [2006/03/14] "Recipe: Elixir of Giant Growth" 1 [2006/03/15] "Beaststalker's Belt" 1 [2006/03/15] - -68.50G + -67.25G "Plans: Mithril Shield Spike" 1 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Recipe: Elixir of Giant Growth" 1 [2006/03/15] "Beaststalker's Belt" 1 [2006/03/15] - -70.61G + -69.36G "Plans: Mithril Shield Spike" 1 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Recipe: Elixir of Giant Growth" 1 [2006/03/15] "Beaststalker's Belt" 1 [2006/03/15] - -70.61G + -69.36G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Recipe: Elixir of Giant Growth" 1 [2006/03/15] "Beaststalker's Belt" 1 [2006/03/15] - -72.90G + -71.65G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Recipe: Elixir of Giant Growth" 1 [2006/03/15] "Beaststalker's Belt" 1 [2006/03/15] - -72.90G + -71.65G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" 1 [2006/03/15] - -74.40G + -73.15G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" 1 [2006/03/15] - -71.40G + -70.15G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" 1 [2006/03/15] - -74.40G + -73.15G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" 1 [2006/03/15] - -74.40G + -73.15G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" 1 [2006/03/15] - -74.40G + -73.15G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" 1 [2006/03/15] - 45.17G + 46.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 45.17G + 46.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -9.40G + -8.15G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 45.17G + 46.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 45.17G + 46.42G "Plans: Mithril Shield Spike" 1 "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 45.17G + 46.42G "Plans: Mithril Shield Spike" 2 "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 45.17G + 46.42G "Plans: Mithril Shield Spike" 2 "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Recipe: Elixir of Giant Growth" 1 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 45.17G + 46.42G "Plans: Mithril Shield Spike" 2 "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 38.27G - "Plans: Mithril Shield Spike" 2 + 46.42G + "Plans: Mithril Shield Spike" 1 "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 42.27G - "Plans: Mithril Shield Spike" 2 + 46.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 38.27G - "Plans: Mithril Shield Spike" 2 + 46.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] - "Recipe: Elixir of Giant Growth" 2 + "Recipe: Elixir of Giant Growth" 1 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 51.68G - "Plans: Mithril Shield Spike" 2 + 46.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 38.27G - "Plans: Mithril Shield Spike" 2 + 50.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 38.27G - "Plans: Mithril Shield Spike" 2 + 46.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 38.27G - "Plans: Mithril Shield Spike" 2 + 59.83G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 38.27G - "Plans: Mithril Shield Spike" 2 + 46.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 38.28G - "Plans: Mithril Shield Spike" 2 + 46.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 38.27G - "Plans: Mithril Shield Spike" 2 + 46.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 38.51G - "Plans: Mithril Shield Spike" 2 + 46.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 38.63G - "Plans: Mithril Shield Spike" 2 + 46.43G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 38.75G - "Plans: Mithril Shield Spike" 2 + 46.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 38.76G - "Plans: Mithril Shield Spike" 2 + 46.66G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 38.76G - "Plans: Mithril Shield Spike" 2 + 46.78G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 38.27G - "Plans: Mithril Shield Spike" 2 + 46.90G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 38.67G - "Plans: Mithril Shield Spike" 2 + 46.91G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 39.07G - "Plans: Mithril Shield Spike" 2 + 46.92G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 38.27G - "Plans: Mithril Shield Spike" 2 + 46.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 38.27G - "Plans: Mithril Shield Spike" 2 + 46.82G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 43.27G - "Plans: Mithril Shield Spike" 2 + 47.22G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 38.27G - "Plans: Mithril Shield Spike" 2 + 46.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 38.27G - "Plans: Mithril Shield Spike" 2 + 46.43G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 58.27G - "Plans: Mithril Shield Spike" 2 + 51.43G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 38.27G - "Plans: Mithril Shield Spike" 2 + 46.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 38.27G - "Plans: Mithril Shield Spike" 2 + 46.42G + "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" 1 [2006/03/14] + "Recipe: Elixir of Giant Growth" 2 [2006/03/15] + "Beaststalker's Belt" -1 + "Beaststalker's Belt" 1 [2006/03/15] + 66.42G + "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" 1 [2006/03/14] + "Recipe: Elixir of Giant Growth" 2 [2006/03/15] + "Beaststalker's Belt" -1 + "Beaststalker's Belt" 1 [2006/03/15] + 46.42G + "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" 1 [2006/03/14] + "Recipe: Elixir of Giant Growth" 2 [2006/03/15] + "Beaststalker's Belt" -1 + "Beaststalker's Belt" 1 [2006/03/15] + 46.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 37.27G - "Plans: Mithril Shield Spike" 2 + 45.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 37.36G - "Plans: Mithril Shield Spike" 2 + 45.52G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 37.27G - "Plans: Mithril Shield Spike" 2 + 45.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 37.27G - "Plans: Mithril Shield Spike" 2 + 45.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 67.27G - "Plans: Mithril Shield Spike" 2 + 75.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 37.27G - "Plans: Mithril Shield Spike" 2 + 45.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 37.27G - "Plans: Mithril Shield Spike" 2 + 45.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 7.27G - "Plans: Mithril Shield Spike" 2 + 15.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 7.27G - "Plans: Mithril Shield Spike" 2 + 15.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -22.73G - "Plans: Mithril Shield Spike" 2 + 15.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -22.73G - "Plans: Mithril Shield Spike" 2 + 15.43G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -22.73G - "Plans: Mithril Shield Spike" 2 + 15.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -22.72G - "Plans: Mithril Shield Spike" 2 + 15.43G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -22.73G - "Plans: Mithril Shield Spike" 2 + 15.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -22.52G - "Plans: Mithril Shield Spike" 2 + 15.63G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -22.73G - "Plans: Mithril Shield Spike" 2 + 15.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -21.98G - "Plans: Mithril Shield Spike" 2 + 16.17G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -21.23G - "Plans: Mithril Shield Spike" 2 + 16.92G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -22.73G - "Plans: Mithril Shield Spike" 2 + 15.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -22.73G - "Plans: Mithril Shield Spike" 2 + 15.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -22.73G - "Plans: Mithril Shield Spike" 2 + 15.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -22.73G - "Plans: Mithril Shield Spike" 2 + 15.43G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -22.73G - "Plans: Mithril Shield Spike" 2 + 15.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -22.73G - "Plans: Mithril Shield Spike" 2 + 15.43G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -22.73G - "Plans: Mithril Shield Spike" 2 + 15.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -22.73G - "Plans: Mithril Shield Spike" 2 + 15.43G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -22.73G - "Plans: Mithril Shield Spike" 2 + 15.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -21.73G - "Plans: Mithril Shield Spike" 2 + 16.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -22.73G - "Plans: Mithril Shield Spike" 2 + 15.42G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -4.67G - "Plans: Mithril Shield Spike" 2 + 33.48G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -4.67G - "Plans: Mithril Shield Spike" 2 + 33.48G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 1 + "Recipe: Elixir of Giant Growth" -1 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -21.23G - "Plans: Mithril Shield Spike" 2 + 16.92G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 1 + "Recipe: Elixir of Giant Growth" -1 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -4.67G - "Plans: Mithril Shield Spike" 2 + 33.48G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 1 + "Recipe: Elixir of Giant Growth" -1 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 13.38G - "Plans: Mithril Shield Spike" 2 + 51.54G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] - "Recipe: Elixir of Giant Growth" 1 + "Recipe: Elixir of Giant Growth" -1 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 13.38G - "Plans: Mithril Shield Spike" 2 + 51.54G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -3.67G - "Plans: Mithril Shield Spike" 2 + 34.48G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 13.38G - "Plans: Mithril Shield Spike" 2 + 51.54G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 13.39G - "Plans: Mithril Shield Spike" 2 + 51.54G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 13.38G - "Plans: Mithril Shield Spike" 2 + 51.54G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Ace of Warlords" 2 "Ace of Warlords" 2 [2006/03/16] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 13.38G - "Plans: Mithril Shield Spike" 2 + 51.54G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" 2 [2006/03/16] + "Ace of Warlords" -2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 13.38G - "Plans: Mithril Shield Spike" 2 + 51.54G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" 2 [2006/03/16] + "Ace of Warlords" -2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 14.13G - "Plans: Mithril Shield Spike" 2 + 52.29G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" 2 [2006/03/16] + "Ace of Warlords" -2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 13.38G - "Plans: Mithril Shield Spike" 2 + 51.54G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" 2 [2006/03/16] + "Ace of Warlords" -2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 13.41G - "Plans: Mithril Shield Spike" 2 + 51.57G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" 2 [2006/03/16] + "Ace of Warlords" -2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 13.38G - "Plans: Mithril Shield Spike" 2 + 51.54G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" 2 [2006/03/16] + "Ace of Warlords" -2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 14.38G - "Plans: Mithril Shield Spike" 2 + 52.54G "Plans: Mithril Shield Spike" 2 [2006/03/15] - "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" 2 [2006/03/16] + "Ace of Warlords" -2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 14.38G - "Plans: Mithril Shield Spike" 2 + 52.54G "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" 2 [2006/03/16] + "Ace of Warlords" -2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 14.63G - "Plans: Mithril Shield Spike" 2 + 52.79G "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" 2 [2006/03/16] + "Ace of Warlords" -2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 14.38G - "Plans: Mithril Shield Spike" 2 + 52.54G "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" 2 [2006/03/16] + "Ace of Warlords" -2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 17.17G - "Plans: Mithril Shield Spike" 2 + 55.33G "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" 2 [2006/03/16] + "Ace of Warlords" -2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 14.38G - "Plans: Mithril Shield Spike" 2 + 52.54G "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 1 [2006/03/17] + "Ace of Warlords" -1 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 14.38G - "Plans: Mithril Shield Spike" 2 + 52.54G "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 14.38G - "Plans: Mithril Shield Spike" 2 + 52.54G "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 14.38G + 52.54G "Holy Bologna" 1 [2006/03/17] - "Plans: Mithril Shield Spike" 2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 14.38G + 52.54G "Holy Bologna" 1 [2006/03/17] - "Plans: Mithril Shield Spike" 2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 14.38G + 52.54G "Holy Bologna" 1 [2006/03/17] - "Plans: Mithril Shield Spike" 2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 14.38G + 52.54G "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] - "Plans: Mithril Shield Spike" 2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 14.38G + 52.54G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] - "Plans: Mithril Shield Spike" 2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 14.38G + 52.54G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] - "Plans: Mithril Shield Spike" 2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -12.52G + 25.64G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] - "Plans: Mithril Shield Spike" 2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -8.52G + 29.64G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] - "Plans: Mithril Shield Spike" 2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -8.52G + 29.64G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] - "Plans: Mithril Shield Spike" 2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -11.52G + 26.64G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] - "Plans: Mithril Shield Spike" 2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -8.52G + 29.64G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] - "Plans: Mithril Shield Spike" 2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -8.20G + 29.96G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] - "Plans: Mithril Shield Spike" 2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -1 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -8.20G + 29.96G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] - "Plans: Mithril Shield Spike" 2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -1 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -5.52G + 32.64G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] - "Plans: Mithril Shield Spike" 2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -1 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -8.20G + 29.96G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] - "Plans: Mithril Shield Spike" 2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -1 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -6.95G + 31.21G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] - "Plans: Mithril Shield Spike" 2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -1 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -8.20G + 29.96G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] - "Plans: Mithril Shield Spike" 2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -1 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 6.80G + 44.96G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] - "Plans: Mithril Shield Spike" 2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -1 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 6.80G + 44.96G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] - "Plans: Mithril Shield Spike" 2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -1 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -8.20G + 29.96G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] - "Plans: Mithril Shield Spike" 2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -1 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 28.05G + 66.20G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] - "Plans: Mithril Shield Spike" 2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -1 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 28.05G + 66.20G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] - "Plans: Mithril Shield Spike" 1 + "Plans: Mithril Shield Spike" -1 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -1 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 28.05G + 66.20G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -1 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -3.79G + 34.36G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -1 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 12.22G + 50.38G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -1 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 28.05G + 66.20G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -1 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 78.00G + 116.16G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -1 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 79.00G + 117.16G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -1 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 79.00G + 117.16G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -1 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 28.05G + 66.20G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -1 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 28.05G + 66.21G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -1 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 28.07G + 66.23G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -1 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 28.05G + 66.20G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -1 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 73.97G + 112.12G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -1 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 82.07G + 120.22G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -1 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 28.05G + 66.20G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -1 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 94.29G + 132.45G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -1 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 94.30G + 132.45G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -1 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 28.05G + 66.20G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -1 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 28.80G + 66.95G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -1 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 28.80G + 66.95G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -1 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 28.05G + 66.20G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -1 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 43.05G + 81.20G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 43.05G + 81.20G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 31.95G + 70.10G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 43.05G + 81.20G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 86.49G + 124.65G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] - "Wildheart Belt" 1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 86.49G + 124.65G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 73.05G + 111.20G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 86.49G + 124.65G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 106.44G + 144.60G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 106.44G + 144.60G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 91.49G + 129.65G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 106.44G + 144.60G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 134.94G + 173.10G "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 134.94G + 173.10G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 110.44G + 148.60G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 134.94G + 173.10G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 152.04G + 190.20G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 152.04G + 190.20G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 138.94G + 177.10G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 152.04G + 190.20G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 156.70G + 194.85G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 156.70G + 194.85G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 153.04G + 191.20G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 156.70G + 194.85G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 156.70G + 194.85G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] "Two of Portals" 1 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 156.70G + 194.85G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 151.20G + 189.35G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 167.54G + 205.70G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 167.54G + 205.70G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" -1 "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 153.20G + 191.35G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" -1 "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 167.54G + 205.70G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" -1 "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 172.54G + 210.70G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" -1 "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 172.54G + 210.70G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" -1 "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -1 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 170.54G + 208.70G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" -1 "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -1 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 172.54G + 210.70G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" -1 "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -1 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 187.54G + 225.70G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" -1 "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -1 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 187.54G + 225.70G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" -1 "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -3276,24 +3199,28 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -1 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 176.54G + 214.70G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" -1 "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -3301,24 +3228,28 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -1 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 187.54G + 225.70G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" -1 "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -3326,24 +3257,28 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -1 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 187.55G + 225.70G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" -1 "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -3351,24 +3286,28 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -1 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 187.54G + 225.70G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 "Harnessing Shadows" 1 [2006/03/17] "Holy Bologna" -1 "Holy Bologna" 1 [2006/03/17] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -3376,12 +3315,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -1 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 187.54G + 225.70G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -3389,12 +3329,15 @@ D 1.00G "Holy Bologna" -1 "Holy Bologna" 1 [2006/03/17] "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -3402,12 +3345,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -1 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 17.54G + 55.70G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -3415,12 +3359,15 @@ D 1.00G "Holy Bologna" -1 "Holy Bologna" 1 [2006/03/17] "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -3428,12 +3375,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -1 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 17.82G + 55.97G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -3441,12 +3389,15 @@ D 1.00G "Holy Bologna" -1 "Holy Bologna" 1 [2006/03/17] "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -3454,12 +3405,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -1 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 18.09G + 56.25G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -3467,12 +3419,15 @@ D 1.00G "Holy Bologna" -1 "Holy Bologna" 1 [2006/03/17] "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -3480,12 +3435,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -1 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 17.54G + 55.70G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -3493,12 +3449,15 @@ D 1.00G "Holy Bologna" -1 "Holy Bologna" 1 [2006/03/17] "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -3506,12 +3465,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -1 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 17.54G + 55.70G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -3520,12 +3480,15 @@ D 1.00G "Holy Bologna" 1 [2006/03/17] Nightblade 1 [2006/03/22] "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -3533,12 +3496,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -1 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -182.46G + -144.30G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -3547,12 +3511,15 @@ D 1.00G "Holy Bologna" 1 [2006/03/17] Nightblade 1 [2006/03/22] "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -3560,12 +3527,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -1 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -180.69G + -142.53G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -3574,12 +3542,15 @@ D 1.00G "Holy Bologna" 1 [2006/03/17] Nightblade 1 [2006/03/22] "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -3587,12 +3558,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -1 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -178.92G + -140.76G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -3601,12 +3573,15 @@ D 1.00G "Holy Bologna" 1 [2006/03/17] Nightblade 1 [2006/03/22] "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -3614,12 +3589,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -1 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -177.15G + -138.99G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -3628,12 +3604,15 @@ D 1.00G "Holy Bologna" 1 [2006/03/17] Nightblade 1 [2006/03/22] "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -3641,12 +3620,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -1 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -175.38G + -137.22G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -3655,12 +3635,15 @@ D 1.00G "Holy Bologna" 1 [2006/03/17] Nightblade 1 [2006/03/22] "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -3668,12 +3651,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -1 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -174.63G + -136.47G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -3682,12 +3666,15 @@ D 1.00G "Holy Bologna" 1 [2006/03/17] Nightblade 1 [2006/03/22] "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -3695,12 +3682,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -1 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -182.46G + -144.30G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -3709,12 +3697,15 @@ D 1.00G "Holy Bologna" 1 [2006/03/17] Nightblade 1 [2006/03/22] "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -3722,12 +3713,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -1 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -15.93G + 22.22G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -3736,12 +3728,15 @@ D 1.00G "Holy Bologna" 1 [2006/03/17] Nightblade 1 [2006/03/22] "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -3749,12 +3744,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -1 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -15.93G + 22.22G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -3764,12 +3760,15 @@ D 1.00G Nightblade 1 [2006/03/22] "Orb of Deception" -1 "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -3777,12 +3776,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -1 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -12.46G + 25.70G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -3792,12 +3792,15 @@ D 1.00G Nightblade 1 [2006/03/22] "Orb of Deception" -1 "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -3805,12 +3808,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -1 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -15.93G + 22.22G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -3820,12 +3824,15 @@ D 1.00G Nightblade 1 [2006/03/22] "Orb of Deception" -1 "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -3833,12 +3840,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -1 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -7.73G + 30.42G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -3848,12 +3856,15 @@ D 1.00G Nightblade 1 [2006/03/22] "Orb of Deception" -1 "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -3861,12 +3872,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -1 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -7.73G + 30.42G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -3876,12 +3888,15 @@ D 1.00G Nightblade 1 [2006/03/22] "Orb of Deception" -1 "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -3889,12 +3904,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -2 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -13.43G + 24.72G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -3904,12 +3920,15 @@ D 1.00G Nightblade 1 [2006/03/22] "Orb of Deception" -1 "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -3917,12 +3936,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -2 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -7.73G + 30.42G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -3932,12 +3952,15 @@ D 1.00G Nightblade 1 [2006/03/22] "Orb of Deception" -1 "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -3945,12 +3968,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -2 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -6.23G + 31.92G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -3960,12 +3984,15 @@ D 1.00G Nightblade 1 [2006/03/22] "Orb of Deception" -1 "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -3973,12 +4000,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -2 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -6.23G + 31.92G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -3988,12 +4016,15 @@ D 1.00G Nightblade 1 [2006/03/22] "Orb of Deception" -1 "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -4001,12 +4032,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -2 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -6.23G + 31.93G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -4016,12 +4048,15 @@ D 1.00G Nightblade 1 [2006/03/22] "Orb of Deception" -1 "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -4029,12 +4064,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -2 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -7.73G + 30.42G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -4044,12 +4080,15 @@ D 1.00G Nightblade 1 [2006/03/22] "Orb of Deception" -1 "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -4057,12 +4096,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -2 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 152.27G + 190.42G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -4072,12 +4112,15 @@ D 1.00G Nightblade 1 [2006/03/22] "Orb of Deception" -1 "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -4085,12 +4128,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -2 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 152.27G + 190.42G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -4101,12 +4145,15 @@ D 1.00G Nightblade 1 [2006/03/22] "Orb of Deception" -1 "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -4114,12 +4161,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -2 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 192.27G + 230.42G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -4130,12 +4178,15 @@ D 1.00G Nightblade 1 [2006/03/22] "Orb of Deception" -1 "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -4143,12 +4194,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -2 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 152.27G + 190.42G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -4159,12 +4211,15 @@ D 1.00G Nightblade 1 [2006/03/22] "Orb of Deception" -1 "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -4172,12 +4227,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -2 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 152.27G + 190.42G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -4188,12 +4244,15 @@ D 1.00G Nightblade 1 [2006/03/22] "Orb of Deception" -1 "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -4201,12 +4260,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -2 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 152.27G + 190.42G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -4217,12 +4277,15 @@ D 1.00G Nightblade 1 [2006/03/22] "Orb of Deception" -1 "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -4230,12 +4293,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -2 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 206.27G + 244.42G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -4246,12 +4310,15 @@ D 1.00G Nightblade 1 [2006/03/22] "Orb of Deception" -1 "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -4259,12 +4326,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -2 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 216.27G + 254.42G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -4275,12 +4343,15 @@ D 1.00G Nightblade 1 [2006/03/22] "Orb of Deception" -1 "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -4288,12 +4359,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -2 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 226.27G + 264.42G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -4304,12 +4376,15 @@ D 1.00G Nightblade 1 [2006/03/22] "Orb of Deception" -1 "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -4317,12 +4392,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -2 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 226.33G + 264.48G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -4333,12 +4409,15 @@ D 1.00G Nightblade 1 [2006/03/22] "Orb of Deception" -1 "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -4346,12 +4425,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -2 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 226.36G + 264.52G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -4362,12 +4442,15 @@ D 1.00G Nightblade 1 [2006/03/22] "Orb of Deception" -1 "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -4375,12 +4458,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -2 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 226.37G + 264.52G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -4391,12 +4475,15 @@ D 1.00G Nightblade 1 [2006/03/22] "Orb of Deception" -1 "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -4404,12 +4491,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -2 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 152.27G + 190.42G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -4420,12 +4508,15 @@ D 1.00G Nightblade 1 [2006/03/22] "Orb of Deception" -1 "Orb of Deception" 1 [2006/03/21] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -4433,12 +4524,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -2 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - 152.27G + 190.42G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -4450,12 +4542,15 @@ D 1.00G "Orb of Deception" -1 "Orb of Deception" 1 [2006/03/21] "Orb of Deception" 1 [2006/04/01] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -4463,12 +4558,13 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -2 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] "Ace of Warlords" -2 "Ace of Warlords" 2 [2006/03/16] - "Ace of Warlords" 2 [2006/03/17] "Beaststalker's Belt" -1 "Beaststalker's Belt" 1 [2006/03/15] - -2.73G + 35.42G "Garona: Book on Treachery" -1 "Garona: Book on Treachery" 1 [2006/03/17] "Harnessing Shadows" -1 @@ -4480,12 +4576,15 @@ D 1.00G "Orb of Deception" -1 "Orb of Deception" 1 [2006/03/21] "Orb of Deception" 1 [2006/04/01] + "Plans: Mithril Shield Spike" -2 "Plans: Mithril Shield Spike" 2 [2006/03/15] + "Plans: Wildthorn Mail" -1 "Plans: Wildthorn Mail" 1 [2006/03/14] "Preserved Holly" -5 "Preserved Holly" 5 [2006/03/17] "Pulsating Hydra Heart" -1 "Pulsating Hydra Heart" 1 [2006/03/16] + "Recipe: Elixir of Giant Growth" -2 "Recipe: Elixir of Giant Growth" 2 [2006/03/15] "The Arcanist's Cookbook" -1 "The Arcanist's Cookbook" 1 [2006/03/17] @@ -4493,5 +4592,7 @@ D 1.00G "The Emerald Dream" 1 [2006/03/17] "Two of Portals" -2 "Two of Portals" 2 [2006/03/19] + "Wildheart Belt" -1 + "Wildheart Belt" 1 [2006/03/17] >>>2 === 0 diff --git a/test/baseline/opt-lot-prices.test b/test/baseline/opt-lot-prices.test index d5d7d11a..365d4f8a 100644 --- a/test/baseline/opt-lot-prices.test +++ b/test/baseline/opt-lot-prices.test @@ -356,8 +356,8 @@ D 1.00G Assets:Tajer 2006/03/17 Player: raev - Assets:Tajer:Items "Wildheart Belt" 1 {30G} - Assets:Tajer:Items "Ace of Warlords" -2 {15G} + Assets:Tajer:Items "Wildheart Belt" 1 @ 30G + Assets:Tajer:Items "Ace of Warlords" -2 @ 15G 2006/03/17 Auction House Expenses:Fees:Auction 7482c @@ -624,2268 +624,1529 @@ D 1.00G "Plans: Wildthorn Mail" 1 {1.25G} -1.25G "Plans: Wildthorn Mail" 2 {1.25G} - -2.50G - "Plans: Wildthorn Mail" 2 {1.25G} - -2.05G - "Plans: Wildthorn Mail" 2 {1.25G} - -2.02G - "Plans: Wildthorn Mail" 2 {1.25G} - -2.50G - "Plans: Wildthorn Mail" 2 {1.25G} - -2.03G - "Plans: Wildthorn Mail" 2 {1.25G} - -2.50G - "Plans: Wildthorn Mail" 2 {1.25G} -1.25G - "Plans: Wildthorn Mail" 2 {1.25G} - -2.50G - "Plans: Wildthorn Mail" 2 {1.25G} - -2.26G - "Plans: Wildthorn Mail" 2 {1.25G} - -2.50G - "Plans: Wildthorn Mail" 2 {1.25G} - -2.50G - "Plans: Wildthorn Mail" 2 {1.25G} - -2.50G - "Plans: Wildthorn Mail" 2 {1.25G} - -2.50G - "Plans: Wildthorn Mail" 2 {1.25G} - -2.50G - "Plans: Wildthorn Mail" 2 {1.25G} - -2.08G - "Plans: Wildthorn Mail" 2 {1.25G} - -2.00G - "Plans: Wildthorn Mail" 2 {1.25G} - -2.50G - "Plans: Wildthorn Mail" 2 {1.25G} - -2.49G - "Plans: Wildthorn Mail" 2 {1.25G} - -2.50G - "Plans: Wildthorn Mail" 2 {1.25G} - "Plans: Wildthorn Mail" 2 {1.25G} - 50.00s - -2.50G - "Plans: Wildthorn Mail" 2 {1.25G} - -2.10G - "Plans: Wildthorn Mail" 2 {1.25G} - -2.10G - "Plans: Wildthorn Mail" 2 {1.25G} - -2.50G - "Plans: Wildthorn Mail" 2 {1.25G} - -2.42G - "Plans: Wildthorn Mail" 2 {1.25G} - -2.31G - "Plans: Wildthorn Mail" 2 {1.25G} - -2.50G - "Plans: Wildthorn Mail" 2 {1.25G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Plans: Wildthorn Mail" 1 {1.25G} + -80.00s + "Plans: Wildthorn Mail" 1 {1.25G} + -77.41s + -1.25G + "Plans: Wildthorn Mail" 1 {1.25G} + "Plans: Wildthorn Mail" 1 {1.25G} + -77.80s + -1.25G + "Plans: Wildthorn Mail" 1 {1.25G} + "Plans: Wildthorn Mail" 1 {1.25G} + 42c + -1.25G + "Plans: Wildthorn Mail" 1 {1.25G} + -1.01G + "Plans: Wildthorn Mail" 1 {1.25G} + -1.25G + "Plans: Wildthorn Mail" 1 {1.25G} + -1.25G + "Plans: Wildthorn Mail" 1 {1.25G} + -1.25G + "Plans: Wildthorn Mail" 1 {1.25G} + -1.25G + "Plans: Wildthorn Mail" 1 {1.25G} + -1.25G + "Plans: Wildthorn Mail" 1 {1.25G} + "Plans: Wildthorn Mail" 1 {1.25G} + -82.50s + "Plans: Wildthorn Mail" 1 {1.25G} + -75.00s + -1.25G + "Plans: Wildthorn Mail" 1 {1.25G} + -1.24G + "Plans: Wildthorn Mail" 1 {1.25G} + -1.25G + "Plans: Wildthorn Mail" 1 {1.25G} + 1.75G + "Plans: Wildthorn Mail" 1 {1.25G} + -1.25G + "Plans: Wildthorn Mail" 1 {1.25G} + "Plans: Wildthorn Mail" 1 {1.25G} + -85.00s + "Plans: Wildthorn Mail" 1 {1.25G} + -84.70s + -1.25G + "Plans: Wildthorn Mail" 1 {1.25G} + -1.17G + "Plans: Wildthorn Mail" 1 {1.25G} + -1.06G + "Plans: Wildthorn Mail" 1 {1.25G} + -1.25G + "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} - -2.50G - "Plans: Wildthorn Mail" 2 {1.25G} + -1.25G + "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} - -67.50G - "Plans: Wildthorn Mail" 2 {1.25G} + -66.25G + "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} - -67.50G - "Plans: Wildthorn Mail" 2 {1.25G} + -66.25G + "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} - -67.50G - "Plans: Wildthorn Mail" 2 {1.25G} + -66.25G + "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} - -66.67G - "Plans: Wildthorn Mail" 2 {1.25G} + -65.42G + "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} - -67.50G - "Plans: Wildthorn Mail" 2 {1.25G} + -66.25G + "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} - -67.50G - "Plans: Wildthorn Mail" 2 {1.25G} + -66.25G + "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} - -67.50G - "Plans: Wildthorn Mail" 2 {1.25G} + -66.25G + "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} - -65.83G - "Plans: Wildthorn Mail" 2 {1.25G} + -64.58G + "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} - -64.16G - "Plans: Wildthorn Mail" 2 {1.25G} + -62.91G + "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} - -67.50G - "Plans: Wildthorn Mail" 2 {1.25G} + -66.25G + "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} - -67.50G - "Plans: Wildthorn Mail" 2 {1.25G} + -66.25G + "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} - -67.50G - "Plans: Wildthorn Mail" 2 {1.25G} + -66.25G + "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} - -67.42G - "Plans: Wildthorn Mail" 2 {1.25G} + -66.17G + "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} - -67.37G - "Plans: Wildthorn Mail" 2 {1.25G} + -66.12G + "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} - -67.32G - "Plans: Wildthorn Mail" 2 {1.25G} + -66.07G + "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} - -67.28G - "Plans: Wildthorn Mail" 2 {1.25G} + -66.03G + "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} - -67.26G - "Plans: Wildthorn Mail" 2 {1.25G} + -66.01G + "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} - -67.50G - "Plans: Wildthorn Mail" 2 {1.25G} + -66.25G + "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} - -67.38G - "Plans: Wildthorn Mail" 2 {1.25G} + -66.13G + "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} - -67.50G - "Plans: Wildthorn Mail" 2 {1.25G} + -66.25G + "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} - -67.28G - "Plans: Wildthorn Mail" 2 {1.25G} + -66.03G + "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} - -67.50G - "Plans: Wildthorn Mail" 2 {1.25G} + -66.25G + "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} - -67.50G - "Plans: Wildthorn Mail" 2 {1.25G} + -66.25G + "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Beaststalker's Belt" 1 {65.00G} - -68.50G - "Plans: Wildthorn Mail" 2 {1.25G} + -67.25G + "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Beaststalker's Belt" 1 {65.00G} - -68.50G - "Plans: Wildthorn Mail" 2 {1.25G} + -67.25G + "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Beaststalker's Belt" 1 {65.00G} - -68.50G - "Plans: Wildthorn Mail" 2 {1.25G} + -67.25G + "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Beaststalker's Belt" 1 {65.00G} - -67.67G - "Plans: Wildthorn Mail" 2 {1.25G} + -66.42G + "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Beaststalker's Belt" 1 {65.00G} - -68.50G - "Plans: Wildthorn Mail" 2 {1.25G} + -67.25G + "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Beaststalker's Belt" 1 {65.00G} - -68.50G + -67.25G "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Beaststalker's Belt" 1 {65.00G} - -70.61G + -69.36G "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Beaststalker's Belt" 1 {65.00G} - -70.61G + -69.36G "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Beaststalker's Belt" 1 {65.00G} - -72.90G + -71.65G "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Beaststalker's Belt" 1 {65.00G} - -72.90G + -71.65G "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} - -74.40G + -73.15G "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} - -71.40G + -70.15G "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} - -74.40G + -73.15G "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} - -74.40G + -73.15G "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} - -74.40G + -73.15G "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} - 45.17G + 46.42G "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} - 45.17G + 46.42G "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} - -9.40G + -8.15G "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} - 45.17G + 46.42G "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} - 45.17G + 46.42G "Plans: Mithril Shield Spike" 2 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} - 45.17G + 46.42G "Plans: Mithril Shield Spike" 2 {2.105G} "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} - 45.17G + 46.42G "Plans: Mithril Shield Spike" 2 {2.105G} "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 2 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} - 45.17G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - 38.27G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - 42.27G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - 38.27G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - 51.68G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - 38.27G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - 38.27G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - 38.27G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - 38.27G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - 38.28G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - 38.27G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - 38.51G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - 38.63G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - 38.75G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - 38.76G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - 38.76G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - 38.27G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - 38.67G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - 39.07G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - 38.27G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - 38.27G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - 43.27G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - 38.27G + 46.42G "Plans: Mithril Shield Spike" 2 {2.105G} "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 2 {1.00G} "Recipe: Elixir of Giant Growth" 2 {1.50G} - 38.27G - "Plans: Mithril Shield Spike" 2 {2.105G} + 46.42G + "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 2 {1.00G} "Recipe: Elixir of Giant Growth" 2 {1.50G} - 58.27G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + 46.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 2 {1.00G} "Recipe: Elixir of Giant Growth" 2 {1.50G} - 38.27G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} + 46.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 2 {1.50G} - 38.27G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + 46.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} + 50.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} + 46.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} + 59.83G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} + 46.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} + 46.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} + 46.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} + 46.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} + 46.43G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} + 46.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} + 46.66G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} + 46.78G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} + 46.90G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} + 46.91G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} + 46.92G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} + 46.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} + 46.82G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} + 47.22G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} + 46.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} + 46.43G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} + 51.43G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} + 46.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} + 46.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} + 66.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} + 46.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} + 46.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - 37.27G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} + 45.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - 37.36G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} + 45.52G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - 37.27G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} + 45.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - 37.27G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} + 45.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - 67.27G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} + 75.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - 37.27G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} + 45.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} "Ace of Warlords" 2 {15.00G} - 37.27G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + 45.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.50G} "Ace of Warlords" 2 {15.00G} - 7.27G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - "Ace of Warlords" 4 {15.00G} - 7.27G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - "Ace of Warlords" 4 {15.00G} - -22.73G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - "Ace of Warlords" 4 {15.00G} - -22.73G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - "Ace of Warlords" 4 {15.00G} - -22.73G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - "Ace of Warlords" 4 {15.00G} - -22.72G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - "Ace of Warlords" 4 {15.00G} - -22.73G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - "Ace of Warlords" 4 {15.00G} - -22.52G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - "Ace of Warlords" 4 {15.00G} - -22.73G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - "Ace of Warlords" 4 {15.00G} - -21.98G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - "Ace of Warlords" 4 {15.00G} - -21.23G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - "Ace of Warlords" 4 {15.00G} - -22.73G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - "Ace of Warlords" 4 {15.00G} - -22.73G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - "Ace of Warlords" 4 {15.00G} - -22.73G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - "Ace of Warlords" 4 {15.00G} - -22.73G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - "Ace of Warlords" 4 {15.00G} - -22.73G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - "Ace of Warlords" 4 {15.00G} - -22.73G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - "Ace of Warlords" 4 {15.00G} - -22.73G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - "Ace of Warlords" 4 {15.00G} - -22.73G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - "Ace of Warlords" 4 {15.00G} - -22.73G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - "Ace of Warlords" 4 {15.00G} - -21.73G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - "Ace of Warlords" 4 {15.00G} - -22.73G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - "Ace of Warlords" 4 {15.00G} - -4.67G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} - "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.50G} - "Ace of Warlords" 4 {15.00G} - -4.67G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + 15.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} "Ace of Warlords" 4 {15.00G} - -21.23G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + 15.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Ace of Warlords" 4 {15.00G} - -4.67G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Ace of Warlords" 2 {15.00G} + 15.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Ace of Warlords" 4 {15.00G} - 13.38G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Ace of Warlords" 2 {15.00G} + 15.43G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 2 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Ace of Warlords" 4 {15.00G} - 13.38G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Ace of Warlords" 2 {15.00G} + 15.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Ace of Warlords" 4 {15.00G} - -3.67G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Ace of Warlords" 2 {15.00G} + 15.43G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Ace of Warlords" 4 {15.00G} - 13.38G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Ace of Warlords" 2 {15.00G} + 15.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Ace of Warlords" 4 {15.00G} - 13.39G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Ace of Warlords" 2 {15.00G} + 15.63G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Ace of Warlords" 4 {15.00G} - 13.38G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Ace of Warlords" 2 {15.00G} + 15.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Ace of Warlords" 4 {15.00G} - 13.38G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + "Ace of Warlords" 2 {15.00G} + 16.17G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 2 {15.00G} - 13.38G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + 16.92G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 2 {15.00G} - 14.13G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + 15.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 2 {15.00G} - 13.38G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + 15.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 2 {15.00G} - 13.41G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + 15.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 2 {15.00G} - 13.38G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + 15.43G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 2 {15.00G} - 14.38G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 2 {1.25G} + 15.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 2 {15.00G} - 14.38G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} + 15.43G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 2 {15.00G} - 14.63G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} + 15.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 2 {15.00G} - 14.38G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} + 15.43G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 2 {15.00G} - 17.17G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} + 15.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 2 {15.00G} - 14.38G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} + 16.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Wildheart Belt" 1 {30.00G} - "Ace of Warlords" 1 {3.00G} "Ace of Warlords" 2 {15.00G} - 14.38G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} + 15.42G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Wildheart Belt" 1 {30.00G} - "Ace of Warlords" 1 {3.00G} - "Ace of Warlords" 1 {3.90G} "Ace of Warlords" 2 {15.00G} - 14.38G - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} + 33.48G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} + "Ace of Warlords" 2 {15.00G} + 33.48G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Pulsating Hydra Heart" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Ace of Warlords" 2 {15.00G} + 16.92G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Pulsating Hydra Heart" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Ace of Warlords" 2 {15.00G} + 33.48G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Pulsating Hydra Heart" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Ace of Warlords" 2 {15.00G} + 51.54G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Pulsating Hydra Heart" 1 {1.00G} + "Recipe: Elixir of Giant Growth" 1 {1.00G} + "Ace of Warlords" 2 {15.00G} + 51.54G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Pulsating Hydra Heart" 1 {1.00G} + "Ace of Warlords" 2 {15.00G} + 34.48G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Pulsating Hydra Heart" 1 {1.00G} + "Ace of Warlords" 2 {15.00G} + 51.54G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Pulsating Hydra Heart" 1 {1.00G} + "Ace of Warlords" 2 {15.00G} + 51.54G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Pulsating Hydra Heart" 1 {1.00G} + "Ace of Warlords" 2 {15.00G} + 51.54G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Pulsating Hydra Heart" 1 {1.00G} + "Ace of Warlords" 2 {15.00G} + 51.54G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Pulsating Hydra Heart" 1 {1.00G} + "Wildheart Belt" 1 {30.00G} + 51.54G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Pulsating Hydra Heart" 1 {1.00G} + "Wildheart Belt" 1 {30.00G} + 52.29G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Pulsating Hydra Heart" 1 {1.00G} + "Wildheart Belt" 1 {30.00G} + 51.54G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Pulsating Hydra Heart" 1 {1.00G} + "Wildheart Belt" 1 {30.00G} + 51.57G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Pulsating Hydra Heart" 1 {1.00G} + "Wildheart Belt" 1 {30.00G} + 51.54G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Pulsating Hydra Heart" 1 {1.00G} + "Wildheart Belt" 1 {30.00G} + 52.54G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Plans: Wildthorn Mail" 1 {1.25G} + "Pulsating Hydra Heart" 1 {1.00G} + "Wildheart Belt" 1 {30.00G} + 52.54G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Pulsating Hydra Heart" 1 {1.00G} + "Wildheart Belt" 1 {30.00G} + 52.79G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Pulsating Hydra Heart" 1 {1.00G} + "Wildheart Belt" 1 {30.00G} + 52.54G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Pulsating Hydra Heart" 1 {1.00G} + "Wildheart Belt" 1 {30.00G} + 55.33G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Pulsating Hydra Heart" 1 {1.00G} + "Wildheart Belt" 1 {30.00G} + 52.54G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Pulsating Hydra Heart" 1 {1.00G} + "Wildheart Belt" 1 {30.00G} + "Ace of Warlords" 1 {3.00G} + 52.54G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Pulsating Hydra Heart" 1 {1.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - 14.38G + 52.54G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} + "Pulsating Hydra Heart" 1 {1.00G} + "Wildheart Belt" 1 {30.00G} + "Ace of Warlords" 1 {3.00G} + "Ace of Warlords" 1 {3.90G} + 52.54G "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - 14.38G + 52.54G "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - 14.38G + 52.54G "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - 14.38G + 52.54G "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - 14.38G + 52.54G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - 14.38G + 52.54G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} "Preserved Holly" 5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - -12.52G + 25.64G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} "Preserved Holly" 5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - -8.52G + 29.64G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} "Preserved Holly" 5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - -8.52G + 29.64G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - -11.52G + 26.64G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - -8.52G + 29.64G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - -8.20G + 29.96G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - -8.20G + 29.96G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - -5.52G + 32.64G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - -8.20G + 29.96G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - -6.95G + 31.21G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - -8.20G + 29.96G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - 6.80G + 44.96G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - 6.80G + 44.96G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - -8.20G + 29.96G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - 28.05G + 66.20G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 2 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Mithril Shield Spike" 1 {2.30G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - 28.05G + 66.20G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 2 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} + "Plans: Mithril Shield Spike" 1 {2.30G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - 28.05G + 66.20G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - -3.79G + 34.36G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - 12.22G + 50.38G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - 28.05G + 66.20G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - 78.00G + 116.16G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - 79.00G + 117.16G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - 79.00G + 117.16G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - 28.05G + 66.20G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - 28.05G + 66.21G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - 28.07G + 66.23G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - 28.05G + 66.20G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - 73.97G + 112.12G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - 82.07G + 120.22G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - 28.05G + 66.20G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - 94.29G + 132.45G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - 94.30G + 132.45G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - 28.05G + 66.20G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - 28.80G + 66.95G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - 28.80G + 66.95G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - 28.05G + 66.20G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} "Ace of Warlords" 1 {3.90G} - "Ace of Warlords" 2 {15.00G} - 43.05G + 81.20G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} - "Ace of Warlords" 2 {15.00G} - 43.05G + 81.20G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} - "Ace of Warlords" 2 {15.00G} - 31.95G + 70.10G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} - "Ace of Warlords" 2 {15.00G} - 43.05G + 81.20G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} - "Ace of Warlords" 2 {15.00G} - 86.49G + 124.65G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} "Wildheart Belt" 1 {30.00G} - "Ace of Warlords" 2 {15.00G} - 86.49G + 124.65G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} - "Ace of Warlords" 2 {15.00G} - 73.05G + 111.20G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} - "Ace of Warlords" 2 {15.00G} - 86.49G + 124.65G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} - "Ace of Warlords" 2 {15.00G} - 106.44G + 144.60G "Garona: Book on Treachery" 1 {4.00G} "Harnessing Shadows" 1 {5.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} - "Ace of Warlords" 2 {15.00G} - 106.44G + 144.60G "Garona: Book on Treachery" 1 {4.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} - "Ace of Warlords" 2 {15.00G} - 91.49G + 129.65G "Garona: Book on Treachery" 1 {4.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} - "Ace of Warlords" 2 {15.00G} - 106.44G + 144.60G "Garona: Book on Treachery" 1 {4.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} - "Ace of Warlords" 2 {15.00G} - 134.94G + 173.10G "Garona: Book on Treachery" 1 {4.00G} "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} - "Ace of Warlords" 2 {15.00G} - 134.94G + 173.10G "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} - "Ace of Warlords" 2 {15.00G} - 110.44G + 148.60G "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} - "Ace of Warlords" 2 {15.00G} - 134.94G + 173.10G "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} - "Ace of Warlords" 2 {15.00G} - 152.04G + 190.20G "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} "The Emerald Dream" 1 {4.00G} - "Ace of Warlords" 2 {15.00G} - 152.04G + 190.20G "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Emerald Dream" 1 {4.00G} - "Ace of Warlords" 2 {15.00G} - 138.94G + 177.10G "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Emerald Dream" 1 {4.00G} - "Ace of Warlords" 2 {15.00G} - 152.04G + 190.20G "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Emerald Dream" 1 {4.00G} - "Ace of Warlords" 2 {15.00G} - 156.70G + 194.85G "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} "Preserved Holly" 5 {20.00s} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Emerald Dream" 1 {4.00G} - "Ace of Warlords" 2 {15.00G} - 156.70G + 194.85G "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Emerald Dream" 1 {4.00G} - "Ace of Warlords" 2 {15.00G} - 153.04G + 191.20G "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Emerald Dream" 1 {4.00G} - "Ace of Warlords" 2 {15.00G} - 156.70G + 194.85G "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Emerald Dream" 1 {4.00G} - "Ace of Warlords" 2 {15.00G} - 156.70G + 194.85G "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Emerald Dream" 1 {4.00G} "Two of Portals" 1 {3.00G} - "Ace of Warlords" 2 {15.00G} - 156.70G + 194.85G "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Emerald Dream" 1 {4.00G} "Two of Portals" 1 {2.50G} "Two of Portals" 1 {3.00G} - "Ace of Warlords" 2 {15.00G} - 151.20G + 189.35G "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Emerald Dream" 1 {4.00G} "Two of Portals" 1 {2.50G} "Two of Portals" 1 {3.00G} - "Ace of Warlords" 2 {15.00G} - 167.54G + 205.70G "Holy Bologna" 1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "The Emerald Dream" 1 {4.00G} "Two of Portals" 1 {2.50G} "Two of Portals" 1 {3.00G} - "Ace of Warlords" 2 {15.00G} - 167.54G - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} + 205.70G "The Emerald Dream" 1 {4.00G} "Two of Portals" 1 {2.50G} "Two of Portals" 1 {3.00G} - "Ace of Warlords" 2 {15.00G} - 153.20G - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} + 191.35G "The Emerald Dream" 1 {4.00G} "Two of Portals" 1 {2.50G} "Two of Portals" 1 {3.00G} - "Ace of Warlords" 2 {15.00G} - 167.54G - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} + 205.70G "The Emerald Dream" 1 {4.00G} "Two of Portals" 1 {2.50G} "Two of Portals" 1 {3.00G} - "Ace of Warlords" 2 {15.00G} - 172.54G - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} + 210.70G "The Emerald Dream" 1 {4.00G} "Two of Portals" 1 {2.50G} "Two of Portals" 1 {3.00G} - "Ace of Warlords" 2 {15.00G} - 172.54G - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} + 210.70G "The Emerald Dream" 1 {4.00G} "Two of Portals" 1 {2.50G} - "Ace of Warlords" 2 {15.00G} - 170.54G - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} + 208.70G "The Emerald Dream" 1 {4.00G} "Two of Portals" 1 {2.50G} - "Ace of Warlords" 2 {15.00G} - 172.54G - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} + 210.70G "The Emerald Dream" 1 {4.00G} "Two of Portals" 1 {2.50G} - "Ace of Warlords" 2 {15.00G} - 187.54G - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} + 225.70G "The Emerald Dream" 1 {4.00G} "Two of Portals" 1 {2.50G} - "Ace of Warlords" 2 {15.00G} - 187.54G - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} + 225.70G "Two of Portals" 1 {2.50G} - "Ace of Warlords" 2 {15.00G} - 176.54G - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} + 214.70G "Two of Portals" 1 {2.50G} - "Ace of Warlords" 2 {15.00G} - 187.54G - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} + 225.70G "Two of Portals" 1 {2.50G} - "Ace of Warlords" 2 {15.00G} - 187.55G - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} + 225.70G "Two of Portals" 1 {2.50G} - "Ace of Warlords" 2 {15.00G} - 187.54G - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} + 225.70G "Two of Portals" 1 {2.50G} - "Ace of Warlords" 2 {15.00G} - 187.54G + 225.70G "Orb of Deception" 1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Two of Portals" 1 {2.50G} - "Ace of Warlords" 2 {15.00G} - 17.54G + 55.70G "Orb of Deception" 1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Two of Portals" 1 {2.50G} - "Ace of Warlords" 2 {15.00G} - 17.82G + 55.97G "Orb of Deception" 1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Two of Portals" 1 {2.50G} - "Ace of Warlords" 2 {15.00G} - 18.09G + 56.25G "Orb of Deception" 1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Two of Portals" 1 {2.50G} - "Ace of Warlords" 2 {15.00G} - 17.54G + 55.70G "Orb of Deception" 1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Two of Portals" 1 {2.50G} - "Ace of Warlords" 2 {15.00G} - 17.54G + 55.70G Nightblade 1 {200.00G} "Orb of Deception" 1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Two of Portals" 1 {2.50G} - "Ace of Warlords" 2 {15.00G} - -182.46G + -144.30G Nightblade 1 {200.00G} "Orb of Deception" 1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Two of Portals" 1 {2.50G} - "Ace of Warlords" 2 {15.00G} - -180.69G + -142.53G Nightblade 1 {200.00G} "Orb of Deception" 1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Two of Portals" 1 {2.50G} - "Ace of Warlords" 2 {15.00G} - -178.92G + -140.76G Nightblade 1 {200.00G} "Orb of Deception" 1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Two of Portals" 1 {2.50G} - "Ace of Warlords" 2 {15.00G} - -177.15G + -138.99G Nightblade 1 {200.00G} "Orb of Deception" 1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Two of Portals" 1 {2.50G} - "Ace of Warlords" 2 {15.00G} - -175.38G + -137.22G Nightblade 1 {200.00G} "Orb of Deception" 1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Two of Portals" 1 {2.50G} - "Ace of Warlords" 2 {15.00G} - -174.63G + -136.47G Nightblade 1 {200.00G} "Orb of Deception" 1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Two of Portals" 1 {2.50G} - "Ace of Warlords" 2 {15.00G} - -182.46G + -144.30G Nightblade 1 {200.00G} "Orb of Deception" 1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Two of Portals" 1 {2.50G} - "Ace of Warlords" 2 {15.00G} - -15.93G + 22.22G Nightblade 1 {200.00G} "Orb of Deception" 1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Two of Portals" 1 {2.50G} - "Ace of Warlords" 2 {15.00G} - -15.93G + 22.22G Nightblade 1 {200.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Two of Portals" 1 {2.50G} - "Ace of Warlords" 2 {15.00G} - -12.46G + 25.70G Nightblade 1 {200.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Two of Portals" 1 {2.50G} - "Ace of Warlords" 2 {15.00G} - -15.93G + 22.22G Nightblade 1 {200.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Two of Portals" 1 {2.50G} - "Ace of Warlords" 2 {15.00G} - -7.73G + 30.42G Nightblade 1 {200.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Two of Portals" 1 {2.50G} - "Ace of Warlords" 2 {15.00G} - -7.73G + 30.42G Nightblade 1 {200.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Ace of Warlords" 2 {15.00G} - -13.43G + 24.72G Nightblade 1 {200.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Ace of Warlords" 2 {15.00G} - -7.73G + 30.42G Nightblade 1 {200.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Ace of Warlords" 2 {15.00G} - -6.23G + 31.92G Nightblade 1 {200.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Ace of Warlords" 2 {15.00G} - -6.23G + 31.92G Nightblade 1 {200.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Ace of Warlords" 2 {15.00G} - -6.23G + 31.93G Nightblade 1 {200.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Ace of Warlords" 2 {15.00G} - -7.73G + 30.42G Nightblade 1 {200.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Ace of Warlords" 2 {15.00G} - 152.27G + 190.42G Nightblade 1 {200.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Ace of Warlords" 2 {15.00G} - 152.27G - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Ace of Warlords" 2 {15.00G} - 192.27G - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Ace of Warlords" 2 {15.00G} - 152.27G - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Ace of Warlords" 2 {15.00G} - 152.27G - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Ace of Warlords" 2 {15.00G} - 152.27G - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Ace of Warlords" 2 {15.00G} - 206.27G - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Ace of Warlords" 2 {15.00G} - 216.27G - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Ace of Warlords" 2 {15.00G} - 226.27G - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Ace of Warlords" 2 {15.00G} - 226.33G - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Ace of Warlords" 2 {15.00G} - 226.36G - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Ace of Warlords" 2 {15.00G} - 226.37G - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Ace of Warlords" 2 {15.00G} - 152.27G - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Ace of Warlords" 2 {15.00G} - 152.27G + 190.42G + 230.42G + 190.42G + 190.42G + 190.42G + 244.42G + 254.42G + 264.42G + 264.48G + 264.52G + 264.52G + 190.42G + 190.42G "Orb of Deception" 1 {155.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} - "Ace of Warlords" 2 {15.00G} - -2.73G + 35.42G "Orb of Deception" 1 {155.00G} - "Plans: Mithril Shield Spike" 1 {2.105G} - "Plans: Mithril Shield Spike" 1 {2.30G} - "Plans: Wildthorn Mail" 1 {1.25G} - "Recipe: Elixir of Giant Growth" 1 {1.00G} - "Recipe: Elixir of Giant Growth" 1 {1.50G} >>>2 === 0 diff --git a/test/baseline/opt-lots-actual.test b/test/baseline/opt-lots-actual.test index d77e4674..96141e01 100644 --- a/test/baseline/opt-lots-actual.test +++ b/test/baseline/opt-lots-actual.test @@ -4,24 +4,22 @@ D 1.0000s 2006/03/14 Opening Balances Assets:Tajer 1339829c @ 1.86590975416s - Assets:Gruulmorg 248720c {10.051463493s} + Assets:Gruulmorg 248720c @ 10.051463493s Equity:Gold -5000000s >>>1 1339829c {1.86590975416s} [2006/03/14] 1339829c {1.86590975416s} [2006/03/14] - 248720c {10.051463493s} + 248720c {10.051463493s} [2006/03/14] 1339829c {1.86590975416s} [2006/03/14] - 248720c {10.051463493s} + 248720c {10.051463493s} [2006/03/14] -1388.9h >>>2 === 0 reg --format '%(justify(scrub(total_expr), 40, 40, true))\n' --lots-actual >>>1 1339829c - 1339829c - 248720c {10.051463493s} - 1339829c - 248720c {10.051463493s} + 1588549c + 1588549c -1388.9h >>>2 === 0 diff --git a/test/baseline/opt-lots.test b/test/baseline/opt-lots.test index 808afcc0..af8a4258 100644 --- a/test/baseline/opt-lots.test +++ b/test/baseline/opt-lots.test @@ -356,8 +356,8 @@ D 1.00G Assets:Tajer 2006/03/17 Player: raev - Assets:Tajer:Items "Wildheart Belt" 1 {30G} - Assets:Tajer:Items "Ace of Warlords" -2 {15G} + Assets:Tajer:Items "Wildheart Belt" 1 @ 30G + Assets:Tajer:Items "Ace of Warlords" -2 @ 15G 2006/03/17 Auction House Expenses:Fees:Auction 7482c @@ -625,3041 +625,3063 @@ D 1.00G -1.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] "Plans: Wildthorn Mail" 1 {1.25G} - -2.50G + -1.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} - -2.05G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} - -2.02G - "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} - -2.50G + -80.00s "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} - -2.03G + -77.41s + -1.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} - -2.50G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} + -77.80s -1.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} - -2.50G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} - -2.26G + 42c + -1.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} - -2.50G + -1.01G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} - -2.50G + -1.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} - -2.50G + -1.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} - -2.50G + -1.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} - -2.50G + -1.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} - -2.08G + -1.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} - -2.00G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} - -2.50G + -82.50s "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} - -2.49G + -75.00s + -1.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} - -2.50G + -1.24G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} + -1.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} - 50.00s - -2.50G + 1.75G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} - -2.10G + -1.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} - -2.10G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} - -2.50G + -85.00s "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} - -2.42G + -84.70s + -1.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} - -2.31G + -1.17G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} - -2.50G + -1.06G + "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + -1.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -2.50G + -1.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -67.50G + -66.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -67.50G + -66.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -67.50G + -66.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -66.67G + -65.42G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -67.50G + -66.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -67.50G + -66.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -67.50G + -66.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -65.83G + -64.58G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -64.16G + -62.91G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -67.50G + -66.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -67.50G + -66.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -67.50G + -66.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -67.42G + -66.17G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -67.37G + -66.12G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -67.32G + -66.07G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -67.28G + -66.03G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -67.26G + -66.01G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -67.50G + -66.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -67.38G + -66.13G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -67.50G + -66.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -67.28G + -66.03G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -67.50G + -66.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -67.50G + -66.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -68.50G + -67.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -68.50G + -67.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -68.50G + -67.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -67.67G + -66.42G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -68.50G + -67.25G "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -68.50G + -67.25G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -70.61G + -69.36G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -70.61G + -69.36G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -72.90G + -71.65G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -72.90G + -71.65G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -74.40G + -73.15G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -71.40G + -70.15G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -74.40G + -73.15G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -74.40G + -73.15G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - -74.40G + -73.15G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] - 45.17G + 46.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 45.17G + 46.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -9.40G + -8.15G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 45.17G + 46.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 45.17G + 46.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 45.17G + 46.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 45.17G + 46.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 45.17G + 46.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 38.27G + 46.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 42.27G + 46.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 38.27G + 46.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 51.68G + 46.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 38.27G + 50.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 38.27G + 46.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 38.27G + 59.83G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 38.27G + 46.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 38.28G + 46.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 38.27G + 46.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 38.51G + 46.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 38.63G + 46.43G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 38.75G + 46.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 38.76G + 46.66G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 38.76G + 46.78G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 38.27G + 46.90G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 38.67G + 46.91G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 39.07G + 46.92G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 38.27G + 46.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 38.27G + 46.82G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 43.27G + 47.22G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 38.27G + 46.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 38.27G + 46.43G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 58.27G + 51.43G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 38.27G + 46.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 38.27G + 46.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Beaststalker's Belt" 1 {65.00G} [2006/03/15] + "Beaststalker's Belt" -1 {65.00G} + 66.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Beaststalker's Belt" 1 {65.00G} [2006/03/15] + "Beaststalker's Belt" -1 {65.00G} + 46.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Beaststalker's Belt" 1 {65.00G} [2006/03/15] + "Beaststalker's Belt" -1 {65.00G} + 46.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 37.27G + 45.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 37.36G + 45.52G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 37.27G + 45.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 37.27G + 45.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 67.27G + 75.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 37.27G + 45.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 37.27G + 45.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 7.27G + 15.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 7.27G + 15.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] - "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -22.73G + 15.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] - "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -22.73G + 15.43G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] - "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -22.73G + 15.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] - "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -22.72G + 15.43G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] - "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -22.73G + 15.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] - "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -22.52G + 15.63G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] - "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -22.73G + 15.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] - "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -21.98G + 16.17G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] - "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -21.23G + 16.92G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] - "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -22.73G + 15.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] - "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -22.73G + 15.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] - "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -22.73G + 15.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] - "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -22.73G + 15.43G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] - "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -22.73G + 15.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] - "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -22.73G + 15.43G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] - "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -22.73G + 15.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] - "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -22.73G + 15.43G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] - "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -22.73G + 15.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] - "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -21.73G + 16.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] - "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -22.73G + 15.42G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] - "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -4.67G + 33.48G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] - "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -4.67G + 33.48G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] - "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -21.23G + 16.92G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] - "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -4.67G + 33.48G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] - "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 13.38G + 51.54G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] - "Recipe: Elixir of Giant Growth" 1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] - "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 13.38G + 51.54G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] - "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -3.67G + 34.48G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] - "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 13.38G + 51.54G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] - "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 13.39G + 51.54G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] - "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 13.38G + 51.54G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "Ace of Warlords" 2 {15.00G} [2006/03/16] - "Ace of Warlords" 2 {15.00G} "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 13.38G + 51.54G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Wildheart Belt" 1 {30.00G} + "Recipe: Elixir of Giant Growth" -1 {1.50G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 13.38G + 51.54G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Wildheart Belt" 1 {30.00G} + "Recipe: Elixir of Giant Growth" -1 {1.50G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 14.13G + 52.29G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Wildheart Belt" 1 {30.00G} + "Recipe: Elixir of Giant Growth" -1 {1.50G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 13.38G + 51.54G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Wildheart Belt" 1 {30.00G} + "Recipe: Elixir of Giant Growth" -1 {1.50G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 13.41G + 51.57G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Wildheart Belt" 1 {30.00G} + "Recipe: Elixir of Giant Growth" -1 {1.50G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 13.38G + 51.54G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Wildheart Belt" 1 {30.00G} + "Recipe: Elixir of Giant Growth" -1 {1.50G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 14.38G + 52.54G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] - "Plans: Wildthorn Mail" 1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Wildheart Belt" 1 {30.00G} + "Recipe: Elixir of Giant Growth" -1 {1.50G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 14.38G + 52.54G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Wildheart Belt" 1 {30.00G} + "Recipe: Elixir of Giant Growth" -1 {1.50G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 14.63G + 52.79G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Wildheart Belt" 1 {30.00G} + "Recipe: Elixir of Giant Growth" -1 {1.50G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 14.38G + 52.54G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Wildheart Belt" 1 {30.00G} + "Recipe: Elixir of Giant Growth" -1 {1.50G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 17.17G + 55.33G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Wildheart Belt" 1 {30.00G} + "Recipe: Elixir of Giant Growth" -1 {1.50G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 14.38G + 52.54G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Wildheart Belt" 1 {30.00G} + "Recipe: Elixir of Giant Growth" -1 {1.50G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 14.38G + 52.54G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Wildheart Belt" 1 {30.00G} + "Recipe: Elixir of Giant Growth" -1 {1.50G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 14.38G + 52.54G "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Wildheart Belt" 1 {30.00G} + "Recipe: Elixir of Giant Growth" -1 {1.50G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 14.38G + 52.54G "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] - "Wildheart Belt" 1 {30.00G} + "Recipe: Elixir of Giant Growth" -1 {1.50G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 14.38G + 52.54G "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 14.38G + 52.54G "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 14.38G + 52.54G "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 14.38G + 52.54G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 14.38G + 52.54G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -12.52G + 25.64G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -8.52G + 29.64G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -8.52G + 29.64G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -11.52G + 26.64G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -8.52G + 29.64G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -8.20G + 29.96G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -8.20G + 29.96G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -5.52G + 32.64G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -8.20G + 29.96G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -6.95G + 31.21G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -8.20G + 29.96G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 6.80G + 44.96G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 6.80G + 44.96G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -8.20G + 29.96G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 28.05G + 66.20G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 28.05G + 66.20G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 28.05G + 66.20G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -3.79G + 34.36G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 12.22G + 50.38G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 28.05G + 66.20G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 78.00G + 116.16G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 79.00G + 117.16G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 79.00G + 117.16G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 28.05G + 66.20G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 28.05G + 66.21G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 28.07G + 66.23G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 28.05G + 66.20G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 73.97G + 112.12G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 82.07G + 120.22G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 28.05G + 66.20G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 94.29G + 132.45G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 94.30G + 132.45G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 28.05G + 66.20G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 28.80G + 66.95G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 28.80G + 66.95G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 28.05G + 66.20G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 43.05G + 81.20G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 43.05G + 81.20G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 31.95G + 70.10G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 43.05G + 81.20G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 86.49G + 124.65G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] - "Wildheart Belt" 1 {30.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 86.49G + 124.65G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 73.05G + 111.20G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 86.49G + 124.65G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 106.44G + 144.60G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 106.44G + 144.60G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Harnessing Shadows" -1 {5.00G} "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 91.49G + 129.65G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Harnessing Shadows" -1 {5.00G} "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 106.44G + 144.60G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Harnessing Shadows" -1 {5.00G} "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 134.94G + 173.10G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Harnessing Shadows" -1 {5.00G} "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 134.94G + 173.10G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Harnessing Shadows" -1 {5.00G} "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 110.44G + 148.60G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Harnessing Shadows" -1 {5.00G} "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 134.94G + 173.10G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Harnessing Shadows" -1 {5.00G} "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 152.04G + 190.20G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Harnessing Shadows" -1 {5.00G} "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Emerald Dream" 1 {4.00G} [2006/03/17] + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 152.04G + 190.20G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Harnessing Shadows" -1 {5.00G} "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 138.94G + 177.10G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Harnessing Shadows" -1 {5.00G} "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 152.04G + 190.20G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Harnessing Shadows" -1 {5.00G} "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 156.70G + 194.85G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Harnessing Shadows" -1 {5.00G} "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 156.70G + 194.85G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Harnessing Shadows" -1 {5.00G} "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 153.04G + 191.20G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Harnessing Shadows" -1 {5.00G} "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 156.70G + 194.85G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Harnessing Shadows" -1 {5.00G} "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 156.70G + 194.85G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Harnessing Shadows" -1 {5.00G} "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] "Two of Portals" 1 {3.00G} [2006/03/19] + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 156.70G + 194.85G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Harnessing Shadows" -1 {5.00G} "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 151.20G + 189.35G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Harnessing Shadows" -1 {5.00G} "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 167.54G + 205.70G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] "Harnessing Shadows" -1 {5.00G} "Holy Bologna" 1 {2.00G} [2006/03/17] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 167.54G + 205.70G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -3667,27 +3689,35 @@ D 1.00G "Holy Bologna" 1 {2.00G} [2006/03/17] "Holy Bologna" -1 {2.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 153.20G + 191.35G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -3695,27 +3725,35 @@ D 1.00G "Holy Bologna" 1 {2.00G} [2006/03/17] "Holy Bologna" -1 {2.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 167.54G + 205.70G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -3723,27 +3761,35 @@ D 1.00G "Holy Bologna" 1 {2.00G} [2006/03/17] "Holy Bologna" -1 {2.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 172.54G + 210.70G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -3751,27 +3797,35 @@ D 1.00G "Holy Bologna" 1 {2.00G} [2006/03/17] "Holy Bologna" -1 {2.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 172.54G + 210.70G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -3779,28 +3833,36 @@ D 1.00G "Holy Bologna" 1 {2.00G} [2006/03/17] "Holy Bologna" -1 {2.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 170.54G + 208.70G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -3808,28 +3870,36 @@ D 1.00G "Holy Bologna" 1 {2.00G} [2006/03/17] "Holy Bologna" -1 {2.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 172.54G + 210.70G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -3837,28 +3907,36 @@ D 1.00G "Holy Bologna" 1 {2.00G} [2006/03/17] "Holy Bologna" -1 {2.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 187.54G + 225.70G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -3866,28 +3944,36 @@ D 1.00G "Holy Bologna" 1 {2.00G} [2006/03/17] "Holy Bologna" -1 {2.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 187.54G + 225.70G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -3895,14 +3981,19 @@ D 1.00G "Holy Bologna" 1 {2.00G} [2006/03/17] "Holy Bologna" -1 {2.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -3910,14 +4001,17 @@ D 1.00G "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 176.54G + 214.70G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -3925,14 +4019,19 @@ D 1.00G "Holy Bologna" 1 {2.00G} [2006/03/17] "Holy Bologna" -1 {2.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -3940,14 +4039,17 @@ D 1.00G "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 187.54G + 225.70G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -3955,14 +4057,19 @@ D 1.00G "Holy Bologna" 1 {2.00G} [2006/03/17] "Holy Bologna" -1 {2.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -3970,14 +4077,17 @@ D 1.00G "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 187.55G + 225.70G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -3985,14 +4095,19 @@ D 1.00G "Holy Bologna" 1 {2.00G} [2006/03/17] "Holy Bologna" -1 {2.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -4000,14 +4115,17 @@ D 1.00G "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 187.54G + 225.70G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -4015,14 +4133,19 @@ D 1.00G "Holy Bologna" 1 {2.00G} [2006/03/17] "Holy Bologna" -1 {2.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -4030,14 +4153,17 @@ D 1.00G "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 187.54G + 225.70G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -4046,14 +4172,19 @@ D 1.00G "Holy Bologna" -1 {2.00G} "Orb of Deception" 1 {170.00G} [2006/03/21] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -4061,14 +4192,17 @@ D 1.00G "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 17.54G + 55.70G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -4077,14 +4211,19 @@ D 1.00G "Holy Bologna" -1 {2.00G} "Orb of Deception" 1 {170.00G} [2006/03/21] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -4092,14 +4231,17 @@ D 1.00G "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 17.82G + 55.97G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -4108,14 +4250,19 @@ D 1.00G "Holy Bologna" -1 {2.00G} "Orb of Deception" 1 {170.00G} [2006/03/21] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -4123,14 +4270,17 @@ D 1.00G "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 18.09G + 56.25G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -4139,14 +4289,19 @@ D 1.00G "Holy Bologna" -1 {2.00G} "Orb of Deception" 1 {170.00G} [2006/03/21] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -4154,14 +4309,17 @@ D 1.00G "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 17.54G + 55.70G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -4170,14 +4328,19 @@ D 1.00G "Holy Bologna" -1 {2.00G} "Orb of Deception" 1 {170.00G} [2006/03/21] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -4185,14 +4348,17 @@ D 1.00G "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 17.54G + 55.70G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -4202,14 +4368,19 @@ D 1.00G Nightblade 1 {200.00G} [2006/03/22] "Orb of Deception" 1 {170.00G} [2006/03/21] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -4217,14 +4388,17 @@ D 1.00G "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -182.46G + -144.30G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -4234,14 +4408,19 @@ D 1.00G Nightblade 1 {200.00G} [2006/03/22] "Orb of Deception" 1 {170.00G} [2006/03/21] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -4249,14 +4428,17 @@ D 1.00G "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -180.69G + -142.53G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -4266,14 +4448,19 @@ D 1.00G Nightblade 1 {200.00G} [2006/03/22] "Orb of Deception" 1 {170.00G} [2006/03/21] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -4281,14 +4468,17 @@ D 1.00G "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -178.92G + -140.76G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -4298,14 +4488,19 @@ D 1.00G Nightblade 1 {200.00G} [2006/03/22] "Orb of Deception" 1 {170.00G} [2006/03/21] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -4313,14 +4508,17 @@ D 1.00G "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -177.15G + -138.99G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -4330,14 +4528,19 @@ D 1.00G Nightblade 1 {200.00G} [2006/03/22] "Orb of Deception" 1 {170.00G} [2006/03/21] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -4345,14 +4548,17 @@ D 1.00G "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -175.38G + -137.22G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -4362,14 +4568,19 @@ D 1.00G Nightblade 1 {200.00G} [2006/03/22] "Orb of Deception" 1 {170.00G} [2006/03/21] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -4377,14 +4588,17 @@ D 1.00G "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -174.63G + -136.47G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -4394,14 +4608,19 @@ D 1.00G Nightblade 1 {200.00G} [2006/03/22] "Orb of Deception" 1 {170.00G} [2006/03/21] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -4409,14 +4628,17 @@ D 1.00G "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -182.46G + -144.30G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -4426,14 +4648,19 @@ D 1.00G Nightblade 1 {200.00G} [2006/03/22] "Orb of Deception" 1 {170.00G} [2006/03/21] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -4441,14 +4668,17 @@ D 1.00G "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -15.93G + 22.22G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -4458,14 +4688,19 @@ D 1.00G Nightblade 1 {200.00G} [2006/03/22] "Orb of Deception" 1 {170.00G} [2006/03/21] "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -4473,14 +4708,17 @@ D 1.00G "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -15.93G + 22.22G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -4491,14 +4729,19 @@ D 1.00G "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -4506,14 +4749,17 @@ D 1.00G "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -12.46G + 25.70G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -4524,14 +4770,19 @@ D 1.00G "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -4539,14 +4790,17 @@ D 1.00G "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -15.93G + 22.22G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -4557,14 +4811,19 @@ D 1.00G "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -4572,14 +4831,17 @@ D 1.00G "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -7.73G + 30.42G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -4590,14 +4852,19 @@ D 1.00G "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -4605,14 +4872,17 @@ D 1.00G "Two of Portals" 1 {2.50G} [2006/03/19] "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -7.73G + 30.42G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -4623,14 +4893,19 @@ D 1.00G "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -4639,14 +4914,17 @@ D 1.00G "Two of Portals" -1 {2.50G} "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -13.43G + 24.72G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -4657,14 +4935,19 @@ D 1.00G "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -4673,14 +4956,17 @@ D 1.00G "Two of Portals" -1 {2.50G} "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -7.73G + 30.42G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -4691,14 +4977,19 @@ D 1.00G "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -4707,14 +4998,17 @@ D 1.00G "Two of Portals" -1 {2.50G} "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -6.23G + 31.92G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -4725,14 +5019,19 @@ D 1.00G "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -4741,14 +5040,17 @@ D 1.00G "Two of Portals" -1 {2.50G} "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -6.23G + 31.92G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -4759,14 +5061,19 @@ D 1.00G "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -4775,14 +5082,17 @@ D 1.00G "Two of Portals" -1 {2.50G} "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -6.23G + 31.93G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -4793,14 +5103,19 @@ D 1.00G "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -4809,14 +5124,17 @@ D 1.00G "Two of Portals" -1 {2.50G} "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -7.73G + 30.42G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -4827,14 +5145,19 @@ D 1.00G "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -4843,14 +5166,17 @@ D 1.00G "Two of Portals" -1 {2.50G} "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 152.27G + 190.42G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -4861,14 +5187,19 @@ D 1.00G "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -4877,14 +5208,17 @@ D 1.00G "Two of Portals" -1 {2.50G} "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 152.27G + 190.42G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -4896,14 +5230,19 @@ D 1.00G "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -4912,14 +5251,17 @@ D 1.00G "Two of Portals" -1 {2.50G} "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 192.27G + 230.42G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -4931,14 +5273,19 @@ D 1.00G "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -4947,14 +5294,17 @@ D 1.00G "Two of Portals" -1 {2.50G} "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 152.27G + 190.42G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -4966,14 +5316,19 @@ D 1.00G "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -4982,14 +5337,17 @@ D 1.00G "Two of Portals" -1 {2.50G} "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 152.27G + 190.42G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -5001,14 +5359,19 @@ D 1.00G "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -5017,14 +5380,17 @@ D 1.00G "Two of Portals" -1 {2.50G} "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 152.27G + 190.42G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -5036,14 +5402,19 @@ D 1.00G "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -5052,14 +5423,17 @@ D 1.00G "Two of Portals" -1 {2.50G} "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 206.27G + 244.42G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -5071,14 +5445,19 @@ D 1.00G "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -5087,14 +5466,17 @@ D 1.00G "Two of Portals" -1 {2.50G} "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 216.27G + 254.42G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -5106,14 +5488,19 @@ D 1.00G "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -5122,14 +5509,17 @@ D 1.00G "Two of Portals" -1 {2.50G} "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 226.27G + 264.42G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -5141,14 +5531,19 @@ D 1.00G "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -5157,14 +5552,17 @@ D 1.00G "Two of Portals" -1 {2.50G} "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 226.33G + 264.48G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -5176,14 +5574,19 @@ D 1.00G "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -5192,14 +5595,17 @@ D 1.00G "Two of Portals" -1 {2.50G} "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 226.36G + 264.52G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -5211,14 +5617,19 @@ D 1.00G "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -5227,14 +5638,17 @@ D 1.00G "Two of Portals" -1 {2.50G} "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 226.37G + 264.52G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -5246,14 +5660,19 @@ D 1.00G "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -5262,14 +5681,17 @@ D 1.00G "Two of Portals" -1 {2.50G} "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 152.27G + 190.42G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -5281,14 +5703,19 @@ D 1.00G "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -5297,14 +5724,17 @@ D 1.00G "Two of Portals" -1 {2.50G} "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - 152.27G + 190.42G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -5317,14 +5747,19 @@ D 1.00G "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -5333,14 +5768,17 @@ D 1.00G "Two of Portals" -1 {2.50G} "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} "Ace of Warlords" 1 {3.00G} [2006/03/17] "Ace of Warlords" -1 {3.00G} "Ace of Warlords" 1 {3.90G} [2006/03/17] "Ace of Warlords" -1 {3.90G} "Ace of Warlords" 2 {15.00G} [2006/03/16] + "Ace of Warlords" -2 {15.00G} [2006/03/17] "Beaststalker's Belt" 1 {65.00G} [2006/03/15] "Beaststalker's Belt" -1 {65.00G} - -2.73G + 35.42G "Garona: Book on Treachery" 1 {4.00G} [2006/03/17] "Garona: Book on Treachery" -1 {4.00G} "Harnessing Shadows" 1 {5.00G} [2006/03/17] @@ -5353,14 +5791,19 @@ D 1.00G "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.105G} "Plans: Mithril Shield Spike" 1 {2.30G} [2006/03/15] + "Plans: Mithril Shield Spike" -1 {2.30G} "Plans: Wildthorn Mail" 1 {1.25G} [2006/03/14] + "Plans: Wildthorn Mail" -1 {1.25G} "Preserved Holly" 5 {20.00s} [2006/03/17] "Preserved Holly" -5 {20.00s} "Pulsating Hydra Heart" 1 {1.00G} [2006/03/16] "Pulsating Hydra Heart" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.00G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.00G} "Recipe: Elixir of Giant Growth" 1 {1.50G} [2006/03/15] + "Recipe: Elixir of Giant Growth" -1 {1.50G} "The Arcanist's Cookbook" 1 {4.00G} [2006/03/17] "The Arcanist's Cookbook" -1 {4.00G} "The Emerald Dream" 1 {4.00G} [2006/03/17] @@ -5369,5 +5812,7 @@ D 1.00G "Two of Portals" -1 {2.50G} "Two of Portals" 1 {3.00G} [2006/03/19] "Two of Portals" -1 {3.00G} + "Wildheart Belt" 1 {30.00G} [2006/03/17] + "Wildheart Belt" -1 {30.00G} >>>2 === 0 diff --git a/test/baseline/opt-lots_basis.test b/test/baseline/opt-lots_basis.test index d392fe33..85bed988 100644 --- a/test/baseline/opt-lots_basis.test +++ b/test/baseline/opt-lots_basis.test @@ -356,8 +356,8 @@ D 1.00G Assets:Tajer 2006/03/17 Player: raev - Assets:Tajer:Items "Wildheart Belt" 1 {30G} - Assets:Tajer:Items "Ace of Warlords" -2 {15G} + Assets:Tajer:Items "Wildheart Belt" 1 @ 30G + Assets:Tajer:Items "Ace of Warlords" -2 @ 15G 2006/03/17 Auction House Expenses:Fees:Auction 7482c @@ -609,8 +609,8 @@ D 1.00G Assets:Tajer -1.20s 0 06-Mar-14 Puldoost Assets:Tajer 8.00G 8.00G Expenses:Items -8.00G 0 -06-Mar-14 Auction House Assets:Wyshona:Items 1.25G 1.25G - Assets:Tajer:Items -1.25G 0 +06-Mar-14 Auction House Assets:Wyshona:Items "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 + Assets:Tajer:Items "Plans: Wildthorn Mail" -1 0 06-Mar-15 Auction House Assets:Tajer 45.00s 45.00s Assets:Tajer 2.59s 47.59s Assets:Bids -47.59s 0 @@ -680,11 +680,17 @@ D 1.00G Assets:Tajer:Items -119.58G 0 Income:Brokering -54.58G -54.58G Equity:Capital Gains 54.58G 0 -06-Mar-16 Auction House Assets:Wyshona:Items 2.11G 2.11G - Assets:Wyshona:Items 2.30G 4.40G - Assets:Wyshona:Items 1.00G 5.40G - Assets:Wyshona:Items 1.50G 6.90G - Assets:Tajer:Items -6.90G 0 +06-Mar-16 Auction House Assets:Wyshona:Items "Plans: Mithril Shield Spike" 1 "Plans: Mithril Shield Spike" 1 + Assets:Wyshona:Items "Plans: Mithril Shield Spike" 1 "Plans: Mithril Shield Spike" 2 + Assets:Wyshona:Items "Recipe: Elixir of Giant Growth" 1 "Plans: Mithril Shield Spike" 2 + "Recipe: Elixir of Giant Growth" 1 + Assets:Wyshona:Items "Recipe: Elixir of Giant Growth" 1 "Plans: Mithril Shield Spike" 2 + "Recipe: Elixir of Giant Growth" 2 + Assets:Tajer:Items "Plans: Mithril Shield Spike" -1 "Plans: Mithril Shield Spike" 1 + "Recipe: Elixir of Giant Growth" 2 + Assets:Tajer:Items "Plans: Mithril Shield Spike" -1 "Recipe: Elixir of Giant Growth" 2 + Assets:Tajer:Items "Recipe: Elixir of Giant Growth" -1 "Recipe: Elixir of Giant Growth" 1 + Assets:Tajer:Items "Recipe: Elixir of Giant Growth" -1 0 06-Mar-16 Player Assets:Tajer 4.00G 4.00G Equity:Gold -4.00G 0 06-Mar-16 Auction House Assets:Wyshona 13.41G 13.41G @@ -718,8 +724,8 @@ D 1.00G Assets:Tajer -30.00G 0 06-Mar-16 Auction House Assets:Gruulmorg:Items 30.00G 30.00G Assets:Gruulmorg -30.00G 0 -06-Mar-16 Transfer Assets:Tajer:Items 30.00G 30.00G - Assets:Gruulmorg:Items -30.00G 0 +06-Mar-16 Transfer Assets:Tajer:Items "Ace of Warlords" 2 "Ace of Warlords" 2 + Assets:Gruulmorg:Items "Ace of Warlords" -2 0 06-Mar-16 Post Expenses:Fees:Mail 60c 60c Assets:Gruulmorg -60c 0 06-Mar-16 Post Expenses:Fees:Mail 1.20s 1.20s diff --git a/test/baseline/opt-lots_basis_base.test b/test/baseline/opt-lots_basis_base.test index e3aca02d..c4c3c01a 100644 --- a/test/baseline/opt-lots_basis_base.test +++ b/test/baseline/opt-lots_basis_base.test @@ -356,8 +356,8 @@ D 1.00G Assets:Tajer 2006/03/17 Player: raev - Assets:Tajer:Items "Wildheart Belt" 1 {30G} - Assets:Tajer:Items "Ace of Warlords" -2 {15G} + Assets:Tajer:Items "Wildheart Belt" 1 @ 30G + Assets:Tajer:Items "Ace of Warlords" -2 @ 15G 2006/03/17 Auction House Expenses:Fees:Auction 7482c @@ -610,8 +610,8 @@ D 1.00G Assets:Tajer -120c 0 06-Mar-14 Puldoost Assets:Tajer 80000c 80000c Expenses:Items -80000c 0 -06-Mar-14 Auction House Assets:Wyshona:Items 12500c 12500c - Assets:Tajer:Items -12500c 0 +06-Mar-14 Auction House Assets:Wyshona:Items "Plans: Wildthorn Mail" 1 "Plans: Wildthorn Mail" 1 + Assets:Tajer:Items "Plans: Wildthorn Mail" -1 0 06-Mar-15 Auction House Assets:Tajer 4500c 4500c Assets:Tajer 259c 4759c Assets:Bids -4759c 0 @@ -681,11 +681,17 @@ D 1.00G Assets:Tajer:Items -1195768c 0 Income:Brokering -545768c -545768c Equity:Capital Gains 545768c 0 -06-Mar-16 Auction House Assets:Wyshona:Items 21050c 21050c - Assets:Wyshona:Items 23000c 44050c - Assets:Wyshona:Items 10000c 54050c - Assets:Wyshona:Items 15000c 69050c - Assets:Tajer:Items -69050c 0 +06-Mar-16 Auction House Assets:Wyshona:Items "Plans: Mithril Shield Spike" 1 "Plans: Mithril Shield Spike" 1 + Assets:Wyshona:Items "Plans: Mithril Shield Spike" 1 "Plans: Mithril Shield Spike" 2 + Assets:Wyshona:Items "Recipe: Elixir of Giant Growth" 1 "Plans: Mithril Shield Spike" 2 + "Recipe: Elixir of Giant Growth" 1 + Assets:Wyshona:Items "Recipe: Elixir of Giant Growth" 1 "Plans: Mithril Shield Spike" 2 + "Recipe: Elixir of Giant Growth" 2 + Assets:Tajer:Items "Plans: Mithril Shield Spike" -1 "Plans: Mithril Shield Spike" 1 + "Recipe: Elixir of Giant Growth" 2 + Assets:Tajer:Items "Plans: Mithril Shield Spike" -1 "Recipe: Elixir of Giant Growth" 2 + Assets:Tajer:Items "Recipe: Elixir of Giant Growth" -1 "Recipe: Elixir of Giant Growth" 1 + Assets:Tajer:Items "Recipe: Elixir of Giant Growth" -1 0 06-Mar-16 Player Assets:Tajer 40000c 40000c Equity:Gold -40000c 0 06-Mar-16 Auction House Assets:Wyshona 134100c 134100c @@ -719,8 +725,8 @@ D 1.00G Assets:Tajer -300030c 0 06-Mar-16 Auction House Assets:Gruulmorg:Items 300000c 300000c Assets:Gruulmorg -300000c 0 -06-Mar-16 Transfer Assets:Tajer:Items 300000c 300000c - Assets:Gruulmorg:Items -300000c 0 +06-Mar-16 Transfer Assets:Tajer:Items "Ace of Warlords" 2 "Ace of Warlords" 2 + Assets:Gruulmorg:Items "Ace of Warlords" -2 0 06-Mar-16 Post Expenses:Fees:Mail 60c 60c Assets:Gruulmorg -60c 0 06-Mar-16 Post Expenses:Fees:Mail 120c 120c diff --git a/test/baseline/opt-meta-width.test b/test/baseline/opt-meta-width.test new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/baseline/opt-meta-width.test diff --git a/test/baseline/opt-meta.test b/test/baseline/opt-meta.test new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/baseline/opt-meta.test diff --git a/test/baseline/opt-no-rounding.test b/test/baseline/opt-no-rounding.test new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/baseline/opt-no-rounding.test diff --git a/test/baseline/opt-no-titles.test b/test/baseline/opt-no-titles.test new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/baseline/opt-no-titles.test diff --git a/test/baseline/opt-now.test b/test/baseline/opt-now.test new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/baseline/opt-now.test diff --git a/test/baseline/opt-payee-as-account.test b/test/baseline/opt-payee-as-account.test index 561a6c3b..cbce81c3 100644 --- a/test/baseline/opt-payee-as-account.test +++ b/test/baseline/opt-payee-as-account.test @@ -22,11 +22,11 @@ reg --account=payee >>>1 08-Jan-01 January January:Expenses:Books $10.00 $10.00 08-Jan-01 January January:Assets:Cash $-10.00 0 -08-Jan-31 End of January End of J:Expense:Books $10.00 $10.00 +08-Jan-31 End of January End of :Expenses:Books $10.00 $10.00 08-Jan-31 End of January End of Jan:Assets:Cash $-10.00 0 08-Feb-01 February Februar:Expenses:Books $20.00 $20.00 08-Feb-01 February February:Assets:Cash $-20.00 0 -08-Feb-28 End of February End of F:Expense:Books $20.00 $20.00 +08-Feb-28 End of February End of :Expenses:Books $20.00 $20.00 08-Feb-28 End of February End of Feb:Assets:Cash $-20.00 0 08-Mar-01 March March:Expenses:Books $30.00 $30.00 08-Mar-01 March March:Assets:Cash $-30.00 0 diff --git a/test/baseline/opt-pivot.test b/test/baseline/opt-pivot.test new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/baseline/opt-pivot.test diff --git a/test/baseline/opt-prepend-format.test b/test/baseline/opt-prepend-format.test new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/baseline/opt-prepend-format.test diff --git a/test/baseline/opt-prepend-width.test b/test/baseline/opt-prepend-width.test new file mode 100644 index 00000000..e69de29b --- /dev/null +++ b/test/baseline/opt-prepend-width.test diff --git a/test/regress/15230B79.test b/test/regress/15230B79.test new file mode 100644 index 00000000..b20ab89a --- /dev/null +++ b/test/regress/15230B79.test @@ -0,0 +1,12 @@ +reg +<<< +2010-04-02 Opening balance + Assets:A 14.75 EUR + Assets:B 2.84 GBP + Equity:Opening balance +>>> +10-Apr-02 Opening balance Assets:A 14.75 EUR 14.75 EUR + Assets:B 2.84 GBP 14.75 EUR + 2.84 GBP + Equity:Opening balance -14.75 EUR 2.84 GBP + Equity:Opening balance -2.84 GBP 0 diff --git a/test/regress/56BBE69B.test b/test/regress/56BBE69B.test new file mode 100644 index 00000000..508ff8aa --- /dev/null +++ b/test/regress/56BBE69B.test @@ -0,0 +1,17 @@ +bal +<<< +D 1000.00 USD + +2010-01-07 * Put money in + Assets:A -20.00 EUR + Equity:Opening balances + +2010-01-11 * Purchase + Assets:A 20.00 EUR @@ 25.00 USD + Expenses:B +>>> + 20.00 EUR Equity:Opening balances + -25.00 USD Expenses:B +-------------------- + 20.00 EUR + -25.00 USD diff --git a/test/regress/620F0674.test b/test/regress/620F0674.test new file mode 100644 index 00000000..3f81a078 --- /dev/null +++ b/test/regress/620F0674.test @@ -0,0 +1,24 @@ +reg bank --forecast "d<=[next year]" -d "d>=[this month] & d<=[next year]" --sort d --now=2010/06/20 +<<< +~ Monthly since 2010/01/01 + Expenses:Bills:Rent $873.00 + Expenses:Household $200.00 + Income:Salary -$2491.60 + Assets:Bank:Checking + +~ biweekly from 2010/02/23 + Expenses:Bills:Housecleaning $85.00 + Assets:Bank:Checking + +2010/06/22 c897683b + ad738623:d317da42:0e30a690 A2079.00 + 208b135f:c84cc2a7:a336b63a A199.00 + 45435ee9:2d8ee712:ee7e46b1:0f0e7e54:f5dbec59 +>>> +10-Jul-01 Forecast transaction Assets:Bank:Checking $1418.60 $1418.60 +10-Aug-01 Forecast transaction Assets:Bank:Checking $1418.60 $2837.20 +10-Sep-01 Forecast transaction Assets:Bank:Checking $1418.60 $4255.80 +10-Oct-01 Forecast transaction Assets:Bank:Checking $1418.60 $5674.40 +10-Nov-01 Forecast transaction Assets:Bank:Checking $1418.60 $7093.00 +10-Dec-01 Forecast transaction Assets:Bank:Checking $1418.60 $8511.60 +11-Jan-01 Forecast transaction Assets:Bank:Checking $1418.60 $9930.20 diff --git a/test/regress/8254755E.test b/test/regress/8254755E.test index 26baf52d..98904d6e 100644 --- a/test/regress/8254755E.test +++ b/test/regress/8254755E.test @@ -1,4 +1,4 @@ -bal --flat food:out +bal --flat food:out --now=2009/12/31 <<< ~ Monthly Expenses:Auto:Fuel $120.00 @@ -13,8 +13,8 @@ bal --flat food:out $50.00 Expenses:Food:Out >>>2 === 0 -bal --flat --budget food:out +bal --flat --budget food:out --now=2009/12/31 >>>1 - $-50.00 Expenses:Food:Out + $-150.00 Expenses:Food:Out >>>2 === 0 diff --git a/test/regress/86D2BDC4.test b/test/regress/86D2BDC4.test index 1ea9fc41..0b463d61 100644 --- a/test/regress/86D2BDC4.test +++ b/test/regress/86D2BDC4.test @@ -5,7 +5,7 @@ reg -B Expenses:Bank:Fees 2.73 Liabilities:Mastercard >>>1 -09-Jun-03 Westjet Expen:Transportati:Air 676.017377 676.017377 +09-Jun-03 Westjet Expe:Transportatio:Air 676.017377 676.017377 Expenses:Bank:Fees 2.73 678.747377 Liabilities:Mastercard -678.747377 0 >>>2 diff --git a/test/regress/C0212EAC.test b/test/regress/C0212EAC.test new file mode 100644 index 00000000..da178054 --- /dev/null +++ b/test/regress/C0212EAC.test @@ -0,0 +1,33 @@ +reg +<<< +2007-01-01 Opening balances + Assets:Cash 10.00 EUR + Equity:Opening balances + +2008-01-01 Buy 5.00 GBP + Assets:Cash 5.00 GBP @ 1.4 EUR + Assets:Checking + +2009-01-01 Sell 5.00 GBP for 7.50 EUR that I bought for 7.00 EUR + Assets:Cash -5.00 GBP {=1.4 EUR} @ 1.5 EUR + Assets:Checking 7.50 EUR + Income:Gain + +P 2009-02-01 00:00:00 GBP 1.5 EUR +>>> +07-Jan-01 Opening balances Assets:Cash 10.00 EUR 10.00 EUR + Equit:Opening balances -10.00 EUR 0 +08-Jan-01 Buy 5.00 GBP Assets:Cash 5.00 GBP 5.00 GBP + Assets:Checking -7.00 EUR -7.00 EUR + 5.00 GBP +09-Jan-01 Sell 5.00 GBP for 7.. Assets:Cash -5.00 GBP {=1.40 EUR} -7.00 EUR + 5.00 GBP + -5.00 GBP {=1.40 EUR} + Assets:Checking 7.50 EUR 0.50 EUR + 5.00 GBP + -5.00 GBP {=1.40 EUR} + Income:Gain -0.50 EUR 5.00 GBP + -5.00 GBP {=1.40 EUR} + Equity:Capital Gains 0.50 EUR 0.50 EUR + 5.00 GBP + -5.00 GBP {=1.40 EUR} diff --git a/test/regress/D2829FC4.test b/test/regress/D2829FC4.test new file mode 100644 index 00000000..83c991fd --- /dev/null +++ b/test/regress/D2829FC4.test @@ -0,0 +1,72 @@ +reg --forecast 'date<[2011]' --now=2010/06/20 +<<< +~ Monthly since 2010/01/01 + Expenses:Bills:Rent $873.00 + Expenses:Household $200.00 + Income:Salary -$2491.60 + Assets:Bank:Checking + +~ biweekly from 2010/02/23 + Expenses:Bills:Housecleaning $85.00 + Assets:Bank:Checking + +2010/06/22 c897683b + ad738623:d317da42:0e30a690 A2079.00 + 208b135f:c84cc2a7:a336b63a A199.00 + 45435ee9:2d8ee712:ee7e46b1:0f0e7e54:f5dbec59 +>>> +10-Jun-22 c897683b ad738:d317da4:0e30a690 A2079.00 A2079.00 + 208b1:c84cc2a:a336b63a A199.00 A2278.00 + 45:2d:ee:0f0e:f5dbec59 A-2278.00 0 +10-Jul-01 Forecast transaction Expenses:Bills:Rent $873.00 $873.00 +10-Jul-01 Forecast transaction Expenses:Household $200.00 $1073.00 +10-Jul-01 Forecast transaction Income:Salary $-2491.60 $-1418.60 +10-Jul-01 Forecast transaction Assets:Bank:Checking $1418.60 0 +10-Jun-27 Forecast transaction Exp:Bill:Housecleaning $85.00 $85.00 +10-Jun-27 Forecast transaction Assets:Bank:Checking $-85.00 0 +10-Jul-11 Forecast transaction Exp:Bill:Housecleaning $85.00 $85.00 +10-Jul-11 Forecast transaction Assets:Bank:Checking $-85.00 0 +10-Aug-01 Forecast transaction Expenses:Bills:Rent $873.00 $873.00 +10-Aug-01 Forecast transaction Expenses:Household $200.00 $1073.00 +10-Aug-01 Forecast transaction Income:Salary $-2491.60 $-1418.60 +10-Aug-01 Forecast transaction Assets:Bank:Checking $1418.60 0 +10-Jul-25 Forecast transaction Exp:Bill:Housecleaning $85.00 $85.00 +10-Jul-25 Forecast transaction Assets:Bank:Checking $-85.00 0 +10-Aug-08 Forecast transaction Exp:Bill:Housecleaning $85.00 $85.00 +10-Aug-08 Forecast transaction Assets:Bank:Checking $-85.00 0 +10-Sep-01 Forecast transaction Expenses:Bills:Rent $873.00 $873.00 +10-Sep-01 Forecast transaction Expenses:Household $200.00 $1073.00 +10-Sep-01 Forecast transaction Income:Salary $-2491.60 $-1418.60 +10-Sep-01 Forecast transaction Assets:Bank:Checking $1418.60 0 +10-Aug-22 Forecast transaction Exp:Bill:Housecleaning $85.00 $85.00 +10-Aug-22 Forecast transaction Assets:Bank:Checking $-85.00 0 +10-Sep-05 Forecast transaction Exp:Bill:Housecleaning $85.00 $85.00 +10-Sep-05 Forecast transaction Assets:Bank:Checking $-85.00 0 +10-Oct-01 Forecast transaction Expenses:Bills:Rent $873.00 $873.00 +10-Oct-01 Forecast transaction Expenses:Household $200.00 $1073.00 +10-Oct-01 Forecast transaction Income:Salary $-2491.60 $-1418.60 +10-Oct-01 Forecast transaction Assets:Bank:Checking $1418.60 0 +10-Sep-19 Forecast transaction Exp:Bill:Housecleaning $85.00 $85.00 +10-Sep-19 Forecast transaction Assets:Bank:Checking $-85.00 0 +10-Oct-03 Forecast transaction Exp:Bill:Housecleaning $85.00 $85.00 +10-Oct-03 Forecast transaction Assets:Bank:Checking $-85.00 0 +10-Nov-01 Forecast transaction Expenses:Bills:Rent $873.00 $873.00 +10-Nov-01 Forecast transaction Expenses:Household $200.00 $1073.00 +10-Nov-01 Forecast transaction Income:Salary $-2491.60 $-1418.60 +10-Nov-01 Forecast transaction Assets:Bank:Checking $1418.60 0 +10-Oct-17 Forecast transaction Exp:Bill:Housecleaning $85.00 $85.00 +10-Oct-17 Forecast transaction Assets:Bank:Checking $-85.00 0 +10-Oct-31 Forecast transaction Exp:Bill:Housecleaning $85.00 $85.00 +10-Oct-31 Forecast transaction Assets:Bank:Checking $-85.00 0 +10-Nov-14 Forecast transaction Exp:Bill:Housecleaning $85.00 $85.00 +10-Nov-14 Forecast transaction Assets:Bank:Checking $-85.00 0 +10-Dec-01 Forecast transaction Expenses:Bills:Rent $873.00 $873.00 +10-Dec-01 Forecast transaction Expenses:Household $200.00 $1073.00 +10-Dec-01 Forecast transaction Income:Salary $-2491.60 $-1418.60 +10-Dec-01 Forecast transaction Assets:Bank:Checking $1418.60 0 +10-Nov-28 Forecast transaction Exp:Bill:Housecleaning $85.00 $85.00 +10-Nov-28 Forecast transaction Assets:Bank:Checking $-85.00 0 +10-Dec-12 Forecast transaction Exp:Bill:Housecleaning $85.00 $85.00 +10-Dec-12 Forecast transaction Assets:Bank:Checking $-85.00 0 +10-Dec-26 Forecast transaction Exp:Bill:Housecleaning $85.00 $85.00 +10-Dec-26 Forecast transaction Assets:Bank:Checking $-85.00 0 diff --git a/test/regress/E4C9A8EA.test b/test/regress/E4C9A8EA.test index 108fb661..a305a839 100644 --- a/test/regress/E4C9A8EA.test +++ b/test/regress/E4C9A8EA.test @@ -11,7 +11,7 @@ reg Expenses:Financial:Fees >>>1 07-Dec-31 Cost basis for: RED.. As:In:RBC-:Account-RSP 4.00 RHT 4.00 RHT - Equ:Opening-Balan:Cost -689.87 CAD -689.87 CAD + Eq:Opening-Balanc:Cost -689.87 CAD -689.87 CAD 4.00 RHT 08-Jan-03 Sell -- RHT -- RED .. As:In:RBC-:Account-RSP -4.00 RHT -689.87 CAD Ex:Financi:Commissions 9.95 USD -689.87 CAD diff --git a/test/run b/test/run new file mode 100755 index 00000000..b0da1b6e --- /dev/null +++ b/test/run @@ -0,0 +1,45 @@ +#!/bin/bash + +LEDGER=ledger +ARGS="--args-only --no-color --columns=80" + +output_only=false +update_test=false +if [[ "$1" == "-v" ]]; then + output_only=true + shift 1 +elif [[ "$1" == "-u" ]]; then + update_test=true + shift 1 +fi + +COMMAND=$(perl -ne 'print unless /^<<</ .. eof();' $1) + +if [[ $output_only == false && $update_test == false ]]; then + perl -ne 'print unless 1 .. /^>>>/ or /^(===|>>>2)/ .. eof();' $1 > /tmp/expected.$$ +fi + +perl -ne 'print unless 1 .. /^<<</ or /^>>>/ .. eof();' $1 \ + | eval "$LEDGER -f - -o /tmp/received.$$ $ARGS $COMMAND" + +if [[ $update_test == true ]]; then + if [[ -f /tmp/received.$$ ]]; then + perl -ne 'print if 1 .. /^>>>/;' $1 > /tmp/command.$$ + perl -ne 'print if /^(===|>>>2)/ .. eof();' $1 > /tmp/epilog.$$ + cat /tmp/command.$$ /tmp/received.$$ /tmp/epilog.$$ > replace.$$ + mv replace.$$ $1 + /bin/rm -f /tmp/command.$$ /tmp/received.$$ /tmp/epilog.$$ + echo Test updated. + fi + +elif [[ $output_only == false ]]; then + if [[ -f /tmp/expected.$$ && -f /tmp/received.$$ ]]; then + diff -w -U3 /tmp/expected.$$ /tmp/received.$$ && echo Test passed. + fi +else + if [[ -f /tmp/received.$$ ]]; then + cat /tmp/received.$$ + fi +fi + +/bin/rm -f /tmp/expected.$$ /tmp/received.$$ diff --git a/test/unit/t_expr.cc b/test/unit/t_expr.cc index 0d88be9e..d9dc1f1f 100644 --- a/test/unit/t_expr.cc +++ b/test/unit/t_expr.cc @@ -63,7 +63,7 @@ void ValueExprTestCase::testPredicateTokenizer2() args.push_back(string_value("foo and bar")); #ifndef NOT_FOR_PYTHON - query_t::lexer_t tokens(args.begin(), args.end()); + query_t::lexer_t tokens(args.begin(), args.end(), false); assertEqual(query_t::lexer_t::token_t::TERM, tokens.next_token().kind); assertEqual(query_t::lexer_t::token_t::TOK_AND, tokens.next_token().kind); @@ -119,7 +119,7 @@ void ValueExprTestCase::testPredicateTokenizer5() args.push_back(string_value("bar)")); #ifndef NOT_FOR_PYTHON - query_t::lexer_t tokens(args.begin(), args.end()); + query_t::lexer_t tokens(args.begin(), args.end(), false); assertEqual(query_t::lexer_t::token_t::LPAREN, tokens.next_token().kind); assertEqual(query_t::lexer_t::token_t::TERM, tokens.next_token().kind); @@ -168,7 +168,7 @@ void ValueExprTestCase::testPredicateTokenizer8() args.push_back(string_value("expr 'foo and bar'")); #ifndef NOT_FOR_PYTHON - query_t::lexer_t tokens(args.begin(), args.end()); + query_t::lexer_t tokens(args.begin(), args.end(), false); assertEqual(query_t::lexer_t::token_t::TOK_EXPR, tokens.next_token().kind); assertEqual(query_t::lexer_t::token_t::TERM, tokens.next_token().kind); @@ -318,7 +318,7 @@ void ValueExprTestCase::testPredicateTokenizer16() args.push_back(string_value("and bar|baz")); #ifndef NOT_FOR_PYTHON - query_t::lexer_t tokens(args.begin(), args.end()); + query_t::lexer_t tokens(args.begin(), args.end(), false); assertEqual(query_t::lexer_t::token_t::TERM, tokens.next_token().kind); assertEqual(query_t::lexer_t::token_t::TOK_AND, tokens.next_token().kind); |