diff options
Diffstat (limited to 'test')
96 files changed, 4450 insertions, 3764 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 d60e0581..79c7ae04 100755 --- a/test/GenerateTests.py +++ b/test/GenerateTests.py @@ -4,13 +4,30 @@ # final balance is the same as what the balance report shows. import sys -#import re +import re from difflib import ndiff +multiproc = False +try: + from multiprocessing import Pool + multiproc = True +except: + pass + +args = sys.argv +jobs = 1 +match = re.match('-j([0-9]+)?', args[1]) +if match: + args = [args[0]] + args[2:] + if match.group(1): + jobs = int(match.group(1)) +if jobs == 1: + multiproc = False + from LedgerHarness import LedgerHarness -harness = LedgerHarness(sys.argv) +harness = LedgerHarness(args) #def normalize(line): # match = re.match("((\s*)([A-Za-z]+)?(\s*)([-0-9.]+)(\s*)([A-Za-z]+)?)( (.+))?$", line) @@ -104,14 +121,30 @@ def generation_test(seed): beg_range = 1 end_range = 20 -if len(sys.argv) > 4: - beg_range = int(sys.argv[3]) - end_range = int(sys.argv[4]) +if len(args) > 4: + beg_range = int(args[3]) + end_range = int(args[4]) -for i in range(beg_range, end_range): +def run_gen_test(i): if generation_test(i): harness.success() else: harness.failure() + return harness.failed + +if multiproc: + pool = Pool(jobs*2) +else: + pool = None + +if pool: + 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) + +if pool: + pool.close() + pool.join() harness.exit() diff --git a/test/LedgerHarness.py b/test/LedgerHarness.py index ea8290d4..44e4e61c 100755 --- a/test/LedgerHarness.py +++ b/test/LedgerHarness.py @@ -6,6 +6,27 @@ import re from subprocess import Popen, PIPE +import copy_reg +import types + +def _pickle_method(method): + func_name = method.im_func.__name__ + obj = method.im_self + cls = method.im_class + return _unpickle_method, (func_name, obj, cls) + +def _unpickle_method(func_name, obj, cls): + for cls in cls.mro(): + try: + func = cls.__dict__[func_name] + except KeyError: + pass + else: + break + return func.__get__(obj, cls) + +copy_reg.pickle(types.MethodType, _pickle_method, _unpickle_method) + class LedgerHarness: ledger = None sourcepath = None diff --git a/test/RegressTests.py b/test/RegressTests.py index 13a0a113..2d8ef8e8 100755 --- a/test/RegressTests.py +++ b/test/RegressTests.py @@ -5,24 +5,42 @@ import os import re import tempfile +multiproc = False +try: + from multiprocessing import Pool + multiproc = True +except: + pass + from string import join from difflib import unified_diff from LedgerHarness import LedgerHarness -harness = LedgerHarness(sys.argv) -tests = sys.argv[3] +args = sys.argv +jobs = 1 +match = re.match('-j([0-9]+)?', args[1]) +if match: + args = [args[0]] + args[2:] + if match.group(1): + jobs = int(match.group(1)) +if jobs == 1: + multiproc = False + +harness = LedgerHarness(args) +tests = args[3] if not os.path.isdir(tests) and not os.path.isfile(tests): sys.exit(1) -class RegressFile: +class RegressFile(object): def __init__(self, filename): self.filename = filename self.fd = open(self.filename) def is_directive(self, line): return line == "<<<\n" or \ + line == ">>>\n" or \ line == ">>>1\n" or \ line == ">>>2\n" or \ line.startswith("===") @@ -34,7 +52,7 @@ class RegressFile: 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) @@ -42,10 +60,10 @@ class RegressFile: def read_test(self, last_test = None): test = { 'command': None, - 'input': None, - 'output': None, - 'error': None, - 'exitcode': None + 'input': "", + 'output': "", + 'error': "", + 'exitcode': 0 } if last_test: test['input'] = last_test['input'] @@ -54,7 +72,7 @@ class RegressFile: while line: if line == "<<<\n": (test['input'], line) = self.read_section() - elif line == ">>>1\n": + elif line == ">>>\n" or line == ">>>1\n": (test['output'], line) = self.read_section() elif line == ">>>2\n": (test['error'], line) = self.read_section() @@ -141,19 +159,37 @@ class RegressFile: while test: self.run_test(test) test = self.read_test(test) + return harness.failed def close(self): self.fd.close() -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() - entry.close() -else: - entry = RegressFile(tests) - entry.run_tests() +def do_test(path): + entry = RegressFile(path) + failed = entry.run_tests() entry.close() + return failed + +if __name__ == '__main__': + if multiproc: + pool = Pool(jobs*2) + else: + pool = None + + if os.path.isdir(tests): + 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() + entry.close() + + if pool: + pool.close() + pool.join() -harness.exit() + harness.exit() diff --git a/test/UnitTests.cc b/test/UnitTests.cc index 2c5c0406..af3f6311 100644 --- a/test/UnitTests.cc +++ b/test/UnitTests.cc @@ -35,7 +35,7 @@ public: void testInitialization() { assertEqual(std::string("Hello, world!"), - std::string("Hello, world!")); + std::string("Hello, world!")); } private: @@ -61,7 +61,7 @@ int main(int argc, char* argv[]) // Retreive test path from command line first argument. Default to // "" which resolves to the top level suite. std::string testPath = ((argc > index) ? std::string(argv[index]) : - std::string("")); + std::string("")); // Create the event manager and test controller CPPUNIT_NS::TestResult controller; diff --git a/test/UnitTests.h b/test/UnitTests.h index d9314ddf..a7bfcf9e 100644 --- a/test/UnitTests.h +++ b/test/UnitTests.h @@ -6,14 +6,14 @@ #include <cppunit/Portability.h> #define assertDoublesEqual(x,y,z,w) CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE(x,y,z,w) -#define assertEqual(x,y) CPPUNIT_ASSERT_EQUAL(x,y) -#define assertNotEqual(x,y) CPPUNIT_ASSERT((x) != (y)) -#define assertTrue(x) CPPUNIT_ASSERT(x) -#define assertFalse(x) CPPUNIT_ASSERT(! (x)) -#define assertValid(x) CPPUNIT_ASSERT((x).valid()) +#define assertEqual(x,y) CPPUNIT_ASSERT_EQUAL(x,y) +#define assertNotEqual(x,y) CPPUNIT_ASSERT((x) != (y)) +#define assertTrue(x) CPPUNIT_ASSERT(x) +#define assertFalse(x) CPPUNIT_ASSERT(! (x)) +#define assertValid(x) CPPUNIT_ASSERT((x).valid()) #define assertEqualMessage(x,y,z) CPPUNIT_ASSERT_EQUAL_MESSAGE(x,y,z) -#define assertMessage(x,y) CPPUNIT_ASSERT_MESSAGE(x,y) -#define assertThrow(x,y) CPPUNIT_ASSERT_THROW(x,y) +#define assertMessage(x,y) CPPUNIT_ASSERT_MESSAGE(x,y) +#define assertThrow(x,y) CPPUNIT_ASSERT_THROW(x,y) #define internalAmount(x) amount_t::exact(x) diff --git a/test/baseline/feat-check.test b/test/baseline/feat-check.test new file mode 100644 index 00000000..4029dfcd --- /dev/null +++ b/test/baseline/feat-check.test @@ -0,0 +1,18 @@ +bal +<<< += /Checking/ + check account =~ /Foo/ + +2010-06-24 Sample + Expenses:Food $100 + Assets:Checking + +check account("Assets:Checking").all(account =~ /Expense/) +>>> + $-100 Assets:Checking + $100 Expenses:Food +-------------------- + 0 +>>>2 +Warning: Transaction check failed: account =~ /Foo/ +Warning: Check failed: account("Assets:Checking").all(account =~ /Expense/) 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-abbrev-len.test b/test/baseline/opt-abbrev-len.test index 40313b22..59164163 100644 --- a/test/baseline/opt-abbrev-len.test +++ b/test/baseline/opt-abbrev-len.test @@ -4,8 +4,8 @@ reg --abbrev-len=4 Assets:Investments:Vanguard:VMMXX 0.350 VMMXX @ $1.00 Income:Dividends:Vanguard:VMMXX $-0.35 >>>1 -07-Feb-02 RD VMMXX Asse:Inve:Vang:VMMXX 0.350 VMMXX 0.350 VMMXX - Inco:Divi:Vang:VMMXX $-0.35 $-0.35 +07-Feb-02 RD VMMXX Asse:Inve:Vangua:VMMXX 0.350 VMMXX 0.350 VMMXX + Inco:Divi:Vangua:VMMXX $-0.35 $-0.35 0.350 VMMXX >>>2 === 0 diff --git a/test/baseline/opt-account.test b/test/baseline/opt-account.test index 10176fde..e577d72b 100644 --- a/test/baseline/opt-account.test +++ b/test/baseline/opt-account.test @@ -4,8 +4,8 @@ reg --account='payee + ":" + commodity' Assets:Investments:Vanguard:VMMXX 0.350 VMMXX @ $1.00 Income:Dividends:Vanguard:VMMXX $-0.35 >>>1 -07-Feb-02 RD VMMXX RD:VM:As:In:Va:VMMXX 0.350 VMMXX 0.350 VMMXX -07-Feb-02 RD VMMXX RD:$:In:Di:Va:VMMXX $-0.35 $-0.35 +07-Feb-02 RD VMMXX RD:VM:As:In:Vang:VMMXX 0.350 VMMXX 0.350 VMMXX +07-Feb-02 RD VMMXX RD:$:In:Di:Vangu:VMMXX $-0.35 $-0.35 0.350 VMMXX >>>2 === 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-amount-width.test b/test/baseline/opt-amount-width.test index 32282214..c79229dc 100644 --- a/test/baseline/opt-amount-width.test +++ b/test/baseline/opt-amount-width.test @@ -4,8 +4,8 @@ reg --amount-width=18 Assets:Investments:Vanguard:VMMXX 0.350 VMMXX @ $1.00 Income:Dividends:Vanguard:VMMXX $-0.35 >>>1 -07-Feb-02 RD VMMXX As:In:Vanguard:VMMXX 0.350 VMMXX 0.350 VMMXX - In:Di:Vanguard:VMMXX $-0.35 $-0.35 +07-Feb-02 RD VMMXX As:Investm:Vanguar:VMMXX 0.350 VMMXX 0.350 VMMXX + In:Dividen:Vanguar:VMMXX $-0.35 $-0.35 0.350 VMMXX >>>2 === 0 diff --git a/test/baseline/opt-amount.test b/test/baseline/opt-amount.test index 2ebbf055..36107fa8 100644 --- a/test/baseline/opt-amount.test +++ b/test/baseline/opt-amount.test @@ -4,7 +4,7 @@ reg --amount=10 Assets:Investments:Vanguard:VMMXX 0.350 VMMXX @ $1.00 Income:Dividends:Vanguard:VMMXX $-0.35 >>>1 -07-Feb-02 RD VMMXX As:In:Vanguard:VMMXX 10 10 - In:Di:Vanguard:VMMXX 10 20 +07-Feb-02 RD VMMXX As:Inves:Vanguar:VMMXX 10 10 + In:Divid:Vanguar:VMMXX 10 20 >>>2 === 0 diff --git a/test/baseline/opt-anon.test b/test/baseline/opt-anon.test deleted file mode 100644 index 6fe6b75f..00000000 --- a/test/baseline/opt-anon.test +++ /dev/null @@ -1,11 +0,0 @@ -reg --anon -<<< -2007/02/02 RD VMMXX - Assets:Investments:Vanguard:VMMXX 0.350 VMMXX @ $1.00 - Income:Dividends:Vanguard:VMMXX $-0.35 ->>>1 -07-Feb-02 6a93dcb3 da:20:5d:27:988a9c3a 0.350 VMMXX 0.350 VMMXX - da:1c:b6:27:988a9c3a $-0.35 $-0.35 - 0.350 VMMXX ->>>2 -=== 0 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-collapse-if-zero.test b/test/baseline/opt-collapse-if-zero.test index fb4d33fd..ec3aa6d3 100644 --- a/test/baseline/opt-collapse-if-zero.test +++ b/test/baseline/opt-collapse-if-zero.test @@ -8,8 +8,8 @@ reg --collapse-if-zero Assets:Investments:Vanguard:VMMXX 0.350 VMMXX @ $1.00 Income:Dividends:Vanguard:VMMXX $-0.35 >>>1 -07-Feb-02 RD VMMXX As:In:Vanguard:VMMXX 0.350 VMMXX 0.350 VMMXX - In:Di:Vanguard:VMMXX $-0.35 $-0.35 +07-Feb-02 RD VMMXX As:Inves:Vanguar:VMMXX 0.350 VMMXX 0.350 VMMXX + In:Divid:Vanguar:VMMXX $-0.35 $-0.35 0.350 VMMXX >>>2 === 0 diff --git a/test/baseline/opt-columns.test b/test/baseline/opt-columns.test index 4dc28d9b..ae8145b9 100644 --- a/test/baseline/opt-columns.test +++ b/test/baseline/opt-columns.test @@ -4,8 +4,8 @@ reg --columns=100 Assets:Investments:Vanguard:VMMXX 0.350 VMMXX @ $1.00 Income:Dividends:Vanguard:VMMXX $-0.35 >>>1 -07-Feb-02 RD VMMXX As:Investments:Vanguard:VMMXX 0.350 VMMXX 0.350 VMMXX - In:Dividends:Vanguard:VMMXX $-0.35 $-0.35 +07-Feb-02 RD VMMXX Asse:Investment:Vanguard:VMMXX 0.350 VMMXX 0.350 VMMXX + Incom:Dividends:Vanguard:VMMXX $-0.35 $-0.35 0.350 VMMXX >>>2 === 0 diff --git a/test/baseline/opt-commodity-as-account.test b/test/baseline/opt-commodity-as-account.test index 2e723347..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:In:Va:VMMXX 0.350 VMMXX 0.350 VMMXX -07-Feb-02 RD VMMXX $:In:Di:Vanguard: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-commodity-as-payee.test b/test/baseline/opt-commodity-as-payee.test index 2f829b4a..dbc91b72 100644 --- a/test/baseline/opt-commodity-as-payee.test +++ b/test/baseline/opt-commodity-as-payee.test @@ -4,8 +4,8 @@ reg --payee=commodity Assets:Investments:Vanguard:VMMXX 0.350 VMMXX @ $1.00 Income:Dividends:Vanguard:VMMXX $-0.35 >>>1 -07-Feb-02 VMMXX As:In:Vanguard:VMMXX 0.350 VMMXX 0.350 VMMXX -07-Feb-02 $ In:Di:Vanguard:VMMXX $-0.35 $-0.35 +07-Feb-02 VMMXX As:Inves:Vanguar:VMMXX 0.350 VMMXX 0.350 VMMXX +07-Feb-02 $ In:Divid: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-format.test b/test/baseline/opt-date-format.test index b4e1a332..0d3ee6fa 100644 --- a/test/baseline/opt-date-format.test +++ b/test/baseline/opt-date-format.test @@ -4,8 +4,8 @@ reg --date-format='%Y' Assets:Investments:Vanguard:VMMXX 0.350 VMMXX @ $1.00 Income:Dividends:Vanguard:VMMXX $-0.35 >>>1 -2007 RD VMMXX As:In:Vanguard:VMMXX 0.350 VMMXX 0.350 VMMXX - In:Di:Vanguard:VMMXX $-0.35 $-0.35 +2007 RD VMMXX As:Investm:Vanguar:VMMXX 0.350 VMMXX 0.350 VMMXX + In:Dividen:Vanguar:VMMXX $-0.35 $-0.35 0.350 VMMXX >>>2 === 0 diff --git a/test/baseline/opt-date-width.test b/test/baseline/opt-date-width.test index 47652099..c7aa7731 100644 --- a/test/baseline/opt-date-width.test +++ b/test/baseline/opt-date-width.test @@ -4,8 +4,8 @@ reg --date-width=20 Assets:Investments:Vanguard:VMMXX 0.350 VMMXX @ $1.00 Income:Dividends:Vanguard:VMMXX $-0.35 >>>1 -07-Feb-02 RD VMMXX As:In:Vanguard:VMMXX 0.350 VMMXX 0.350 VMMXX - In:Di:Vanguard:VMMXX $-0.35 $-0.35 +07-Feb-02 RD VMMXX As:Investm:Vanguar:VMMXX 0.350 VMMXX 0.350 VMMXX + In:Dividen:Vanguar:VMMXX $-0.35 $-0.35 0.350 VMMXX >>>2 === 0 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-forecast-while.test b/test/baseline/opt-forecast-while.test index c2563a75..e3f1c57a 100644 --- a/test/baseline/opt-forecast-while.test +++ b/test/baseline/opt-forecast-while.test @@ -244,42 +244,42 @@ reg --now=2009/03/21 --forecast-while='total < $3500' books 09-Nov-30 End of November Expenses:Books $110.00 $2880.00 09-Dec-01 December Expenses:Books $120.00 $3000.00 09-Dec-31 End of December Expenses:Books $120.00 $3120.00 -09-May-01 Forecast transaction Expenses:Books $10.00 $3130.00 -09-Jun-01 Forecast transaction Expenses:Books $10.00 $3140.00 -09-Jul-01 Forecast transaction Expenses:Books $10.00 $3150.00 -09-Aug-01 Forecast transaction Expenses:Books $10.00 $3160.00 -09-Sep-01 Forecast transaction Expenses:Books $10.00 $3170.00 -09-Oct-01 Forecast transaction Expenses:Books $10.00 $3180.00 -09-Nov-01 Forecast transaction Expenses:Books $10.00 $3190.00 -09-Dec-01 Forecast transaction Expenses:Books $10.00 $3200.00 -10-Jan-01 Forecast transaction Expenses:Books $10.00 $3210.00 -10-Feb-01 Forecast transaction Expenses:Books $10.00 $3220.00 -10-Mar-01 Forecast transaction Expenses:Books $10.00 $3230.00 -10-Apr-01 Forecast transaction Expenses:Books $10.00 $3240.00 -10-May-01 Forecast transaction Expenses:Books $10.00 $3250.00 -10-Jun-01 Forecast transaction Expenses:Books $10.00 $3260.00 -10-Jul-01 Forecast transaction Expenses:Books $10.00 $3270.00 -10-Aug-01 Forecast transaction Expenses:Books $10.00 $3280.00 -10-Sep-01 Forecast transaction Expenses:Books $10.00 $3290.00 -10-Oct-01 Forecast transaction Expenses:Books $10.00 $3300.00 -10-Nov-01 Forecast transaction Expenses:Books $10.00 $3310.00 -10-Dec-01 Forecast transaction Expenses:Books $10.00 $3320.00 -11-Jan-01 Forecast transaction Expenses:Books $10.00 $3330.00 -11-Feb-01 Forecast transaction Expenses:Books $10.00 $3340.00 -11-Mar-01 Forecast transaction Expenses:Books $10.00 $3350.00 -11-Apr-01 Forecast transaction Expenses:Books $10.00 $3360.00 -11-May-01 Forecast transaction Expenses:Books $10.00 $3370.00 -11-Jun-01 Forecast transaction Expenses:Books $10.00 $3380.00 -11-Jul-01 Forecast transaction Expenses:Books $10.00 $3390.00 -11-Aug-01 Forecast transaction Expenses:Books $10.00 $3400.00 -11-Sep-01 Forecast transaction Expenses:Books $10.00 $3410.00 -11-Oct-01 Forecast transaction Expenses:Books $10.00 $3420.00 -11-Nov-01 Forecast transaction Expenses:Books $10.00 $3430.00 -11-Dec-01 Forecast transaction Expenses:Books $10.00 $3440.00 -12-Jan-01 Forecast transaction Expenses:Books $10.00 $3450.00 -12-Feb-01 Forecast transaction Expenses:Books $10.00 $3460.00 -12-Mar-01 Forecast transaction Expenses:Books $10.00 $3470.00 -12-Apr-01 Forecast transaction Expenses:Books $10.00 $3480.00 -12-May-01 Forecast transaction Expenses:Books $10.00 $3490.00 +09-Apr-01 Forecast transaction Expenses:Books $10.00 $3130.00 +09-May-01 Forecast transaction Expenses:Books $10.00 $3140.00 +09-Jun-01 Forecast transaction Expenses:Books $10.00 $3150.00 +09-Jul-01 Forecast transaction Expenses:Books $10.00 $3160.00 +09-Aug-01 Forecast transaction Expenses:Books $10.00 $3170.00 +09-Sep-01 Forecast transaction Expenses:Books $10.00 $3180.00 +09-Oct-01 Forecast transaction Expenses:Books $10.00 $3190.00 +09-Nov-01 Forecast transaction Expenses:Books $10.00 $3200.00 +09-Dec-01 Forecast transaction Expenses:Books $10.00 $3210.00 +10-Jan-01 Forecast transaction Expenses:Books $10.00 $3220.00 +10-Feb-01 Forecast transaction Expenses:Books $10.00 $3230.00 +10-Mar-01 Forecast transaction Expenses:Books $10.00 $3240.00 +10-Apr-01 Forecast transaction Expenses:Books $10.00 $3250.00 +10-May-01 Forecast transaction Expenses:Books $10.00 $3260.00 +10-Jun-01 Forecast transaction Expenses:Books $10.00 $3270.00 +10-Jul-01 Forecast transaction Expenses:Books $10.00 $3280.00 +10-Aug-01 Forecast transaction Expenses:Books $10.00 $3290.00 +10-Sep-01 Forecast transaction Expenses:Books $10.00 $3300.00 +10-Oct-01 Forecast transaction Expenses:Books $10.00 $3310.00 +10-Nov-01 Forecast transaction Expenses:Books $10.00 $3320.00 +10-Dec-01 Forecast transaction Expenses:Books $10.00 $3330.00 +11-Jan-01 Forecast transaction Expenses:Books $10.00 $3340.00 +11-Feb-01 Forecast transaction Expenses:Books $10.00 $3350.00 +11-Mar-01 Forecast transaction Expenses:Books $10.00 $3360.00 +11-Apr-01 Forecast transaction Expenses:Books $10.00 $3370.00 +11-May-01 Forecast transaction Expenses:Books $10.00 $3380.00 +11-Jun-01 Forecast transaction Expenses:Books $10.00 $3390.00 +11-Jul-01 Forecast transaction Expenses:Books $10.00 $3400.00 +11-Aug-01 Forecast transaction Expenses:Books $10.00 $3410.00 +11-Sep-01 Forecast transaction Expenses:Books $10.00 $3420.00 +11-Oct-01 Forecast transaction Expenses:Books $10.00 $3430.00 +11-Nov-01 Forecast transaction Expenses:Books $10.00 $3440.00 +11-Dec-01 Forecast transaction Expenses:Books $10.00 $3450.00 +12-Jan-01 Forecast transaction Expenses:Books $10.00 $3460.00 +12-Feb-01 Forecast transaction Expenses:Books $10.00 $3470.00 +12-Mar-01 Forecast transaction Expenses:Books $10.00 $3480.00 +12-Apr-01 Forecast transaction Expenses:Books $10.00 $3490.00 >>>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-gain.test b/test/baseline/opt-gain.test index 6d139c79..d2e9abfe 100644 --- a/test/baseline/opt-gain.test +++ b/test/baseline/opt-gain.test @@ -51,16 +51,16 @@ P 2010/04/01 00:00:00 S 16 P >>>1 09-Jan-15 Commodities revalued <Revalued> 100 P 100 P 09-Feb-01 Commodities revalued <Revalued> 200 P 300 P -09-Feb-01 Sample 2a As:Brokerage:Stocks 300 P 600 P +09-Feb-01 Sample 2a Asset:Brokerage:Stocks 300 P 600 P 09-Mar-01 Commodities revalued <Revalued> 800 P 1400 P -09-Mar-01 Sample 3a As:Brokerage:Stocks 700 P 2100 P +09-Mar-01 Sample 3a Asset:Brokerage:Stocks 700 P 2100 P 09-Apr-01 Commodities revalued <Revalued> 2400 P 4500 P -09-Apr-01 Sample 4a As:Brokerage:Stocks -1500 P 3000 P +09-Apr-01 Sample 4a Asset:Brokerage:Stocks -1500 P 3000 P 10-Feb-01 Commodities revalued <Revalued> -2400 P 600 P -10-Feb-01 Sample 2b As:Brokerage:Stocks 300 P 900 P +10-Feb-01 Sample 2b Asset:Brokerage:Stocks 300 P 900 P 10-Mar-01 Commodities revalued <Revalued> 1200 P 2100 P -10-Mar-01 Sample 3b As:Brokerage:Stocks 700 P 2800 P +10-Mar-01 Sample 3b Asset:Brokerage:Stocks 700 P 2800 P 10-Apr-01 Commodities revalued <Revalued> 3200 P 6000 P -10-Apr-01 Sample 4b As:Brokerage:Stocks -1500 P 4500 P +10-Apr-01 Sample 4b Asset:Brokerage:Stocks -1500 P 4500 P >>>2 === 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-input-date-format.test b/test/baseline/opt-input-date-format.test index 0ab5e5c9..4e77bc28 100644 --- a/test/baseline/opt-input-date-format.test +++ b/test/baseline/opt-input-date-format.test @@ -4,8 +4,8 @@ reg --input-date-format='%m%%%d%%%Y' Assets:Investments:Vanguard:VMMXX 0.350 VMMXX @ $1.00 Income:Dividends:Vanguard:VMMXX $-0.35 >>>1 -07-Feb-02 RD VMMXX As:In:Vanguard:VMMXX 0.350 VMMXX 0.350 VMMXX - In:Di:Vanguard:VMMXX $-0.35 $-0.35 +07-Feb-02 RD VMMXX As:Inves:Vanguar:VMMXX 0.350 VMMXX 0.350 VMMXX + In:Divid:Vanguar:VMMXX $-0.35 $-0.35 0.350 VMMXX >>>2 === 0 diff --git a/test/baseline/opt-invert.test b/test/baseline/opt-invert.test index 9a9f6d02..c010c264 100644 --- a/test/baseline/opt-invert.test +++ b/test/baseline/opt-invert.test @@ -4,8 +4,8 @@ reg --invert Assets:Investments:Vanguard:VMMXX 0.350 VMMXX @ $1.00 Income:Dividends:Vanguard:VMMXX $-0.35 >>>1 -07-Feb-02 RD VMMXX As:In:Vanguard:VMMXX -0.350 VMMXX -0.350 VMMXX - In:Di:Vanguard:VMMXX $0.35 $0.35 +07-Feb-02 RD VMMXX As:Inves:Vanguar:VMMXX -0.350 VMMXX -0.350 VMMXX + In:Divid:Vanguar:VMMXX $0.35 $0.35 -0.350 VMMXX >>>2 === 0 diff --git a/test/baseline/opt-lot-dates.test b/test/baseline/opt-lot-dates.test index 2415fb27..1acc93c8 100644 --- a/test/baseline/opt-lot-dates.test +++ b/test/baseline/opt-lot-dates.test @@ -1,4 +1,4 @@ -reg -F '%(justify(scrub(total_expr), 80, 80, true))\n' --lot-dates --unsorted +reg -F '%(justify(scrub(total_expr), 80, 80, true))\n' --lot-dates <<< C 1.00s = 100c C 1.00G = 100s @@ -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 22aa5ab5..365d4f8a 100644 --- a/test/baseline/opt-lot-prices.test +++ b/test/baseline/opt-lot-prices.test @@ -1,4 +1,4 @@ -reg -F '%(justify(scrub(total_expr), 80, 80, true))\n' --lot-prices --unsorted +reg -F '%(justify(scrub(total_expr), 80, 80, true))\n' --lot-prices <<< C 1.00s = 100c C 1.00G = 100s @@ -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 - "Plans: Mithril Shield Spike" 1 {2.11G} - "Plans: Wildthorn Mail" 2 {1.25G} + -67.25G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Beaststalker's Belt" 1 {65.00G} - -70.61G - "Plans: Mithril Shield Spike" 1 {2.11G} - "Plans: Wildthorn Mail" 2 {1.25G} + -69.36G + "Plans: Mithril Shield Spike" 1 {2.105G} + "Plans: Wildthorn Mail" 1 {1.25G} "Recipe: Elixir of Giant Growth" 1 {1.00G} "Beaststalker's Belt" 1 {65.00G} - -70.61G - "Plans: Mithril Shield Spike" 1 {2.11G} + -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 - "Plans: Mithril Shield Spike" 1 {2.11G} + -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 - "Plans: Mithril Shield Spike" 1 {2.11G} + -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 - "Plans: Mithril Shield Spike" 1 {2.11G} + -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 - "Plans: Mithril Shield Spike" 1 {2.11G} + -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 - "Plans: Mithril Shield Spike" 1 {2.11G} + -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 - "Plans: Mithril Shield Spike" 1 {2.11G} + -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 - "Plans: Mithril Shield Spike" 1 {2.11G} + -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 - "Plans: Mithril Shield Spike" 1 {2.11G} + 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 - "Plans: Mithril Shield Spike" 1 {2.11G} + 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 - "Plans: Mithril Shield Spike" 1 {2.11G} + -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 - "Plans: Mithril Shield Spike" 1 {2.11G} + 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 - "Plans: Mithril Shield Spike" 2 {2.11G} + 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 - "Plans: Mithril Shield Spike" 2 {2.11G} + 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 - "Plans: Mithril Shield Spike" 2 {2.11G} + 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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} + 46.42G + "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} + 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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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.11G} - "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 39a27363..c0ff4fc1 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.8659s} [2006/03/14] - 1339829c {1.8659s} [2006/03/14] - 248720c {10.0515s} - 1339829c {1.8659s} [2006/03/14] - 248720c {10.0515s} - -1388.9h + 1339829c {1.86590975416s} [2006/03/14] + 1339829c {1.86590975416s} [2006/03/14] + 248720c {10.051463493s} [2006/03/14] + 1339829c {1.86590975416s} [2006/03/14] + 248720c {10.051463493s} [2006/03/14] + -1388.89h >>>2 === 0 reg --format '%(justify(scrub(total_expr), 40, 40, true))\n' --lots-actual >>>1 1339829c - 1339829c - 248720c {10.0515s} - 1339829c - 248720c {10.0515s} - -1388.9h + 1588549c + 1588549c + -1388.89h >>>2 === 0 diff --git a/test/baseline/opt-lots.test b/test/baseline/opt-lots.test index 916a2b2e..af8a4258 100644 --- a/test/baseline/opt-lots.test +++ b/test/baseline/opt-lots.test @@ -1,4 +1,4 @@ -reg -F '%(justify(scrub(total_expr), 80, 80, true))\n' --lots --unsorted +reg -F '%(justify(scrub(total_expr), 80, 80, true))\n' --lots <<< C 1.00s = 100c C 1.00G = 100s @@ -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,3284 +625,3375 @@ 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 + -80.00s "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.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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + -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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + -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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + -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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + -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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + -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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + -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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + -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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + -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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + -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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + -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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + 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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + 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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + -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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + 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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 46.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 46.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 46.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 46.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 50.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 46.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 59.83G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 46.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 46.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 46.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 46.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 46.43G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 46.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 46.66G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 46.78G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 46.90G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 46.91G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 46.92G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 46.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 46.82G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 47.22G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 46.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 46.43G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 51.43G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 46.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 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.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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 45.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 45.52G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 45.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 45.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 75.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 45.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 45.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 15.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 15.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 15.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 15.43G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 15.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 15.43G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 15.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 15.63G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 15.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 16.17G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 16.92G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 15.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 15.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 15.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 15.43G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 15.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 15.43G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 15.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 15.43G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 15.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 16.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 15.42G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 33.48G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 33.48G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 16.92G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 33.48G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 51.54G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 51.54G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 34.48G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 51.54G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 51.54G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 51.54G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 51.54G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 51.54G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 52.29G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 51.54G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 51.57G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 51.54G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 52.54G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 52.54G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 52.79G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 52.54G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 55.33G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 52.54G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 52.54G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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 - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + 52.54G + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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.11G} [2006/03/15] - "Plans: Mithril Shield Spike" 1 {2.11G} + "Plans: Mithril Shield Spike" 1 {2.105G} [2006/03/15] "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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.11G} [2006/03/15] + "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] "Holy Bologna" -1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] "Harnessing Shadows" -1 {5.00G} "Holy Bologna" 1 {2.00G} [2006/03/17] "Holy Bologna" -1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] "Holy Bologna" -1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] "Harnessing Shadows" -1 {5.00G} "Holy Bologna" 1 {2.00G} [2006/03/17] "Holy Bologna" -1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] "Harnessing Shadows" -1 {5.00G} "Holy Bologna" 1 {2.00G} [2006/03/17] "Holy Bologna" -1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] "Harnessing Shadows" -1 {5.00G} "Holy Bologna" 1 {2.00G} [2006/03/17] "Holy Bologna" -1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] "Harnessing Shadows" -1 {5.00G} "Holy Bologna" 1 {2.00G} [2006/03/17] "Holy Bologna" -1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] "Harnessing Shadows" -1 {5.00G} "Holy Bologna" 1 {2.00G} [2006/03/17] "Holy Bologna" -1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] "Harnessing Shadows" -1 {5.00G} "Holy Bologna" 1 {2.00G} [2006/03/17] "Holy Bologna" -1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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,29 +4001,37 @@ 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] "Harnessing Shadows" -1 {5.00G} "Holy Bologna" 1 {2.00G} [2006/03/17] "Holy Bologna" -1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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,29 +4039,37 @@ 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] "Harnessing Shadows" -1 {5.00G} "Holy Bologna" 1 {2.00G} [2006/03/17] "Holy Bologna" -1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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,29 +4077,37 @@ 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] "Harnessing Shadows" -1 {5.00G} "Holy Bologna" 1 {2.00G} [2006/03/17] "Holy Bologna" -1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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,29 +4115,37 @@ 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] "Harnessing Shadows" -1 {5.00G} "Holy Bologna" 1 {2.00G} [2006/03/17] "Holy Bologna" -1 {2.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -4045,15 +4171,20 @@ D 1.00G "Holy Bologna" 1 {2.00G} [2006/03/17] "Holy Bologna" -1 {2.00G} "Orb of Deception" 1 {170.00G} [2006/03/21] - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -4076,15 +4210,20 @@ D 1.00G "Holy Bologna" 1 {2.00G} [2006/03/17] "Holy Bologna" -1 {2.00G} "Orb of Deception" 1 {170.00G} [2006/03/21] - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -4107,15 +4249,20 @@ D 1.00G "Holy Bologna" 1 {2.00G} [2006/03/17] "Holy Bologna" -1 {2.00G} "Orb of Deception" 1 {170.00G} [2006/03/21] - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -4138,15 +4288,20 @@ D 1.00G "Holy Bologna" 1 {2.00G} [2006/03/17] "Holy Bologna" -1 {2.00G} "Orb of Deception" 1 {170.00G} [2006/03/21] - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -4169,15 +4327,20 @@ D 1.00G "Holy Bologna" 1 {2.00G} [2006/03/17] "Holy Bologna" -1 {2.00G} "Orb of Deception" 1 {170.00G} [2006/03/21] - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -4201,15 +4367,20 @@ D 1.00G "Holy Bologna" -1 {2.00G} Nightblade 1 {200.00G} [2006/03/22] "Orb of Deception" 1 {170.00G} [2006/03/21] - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -4233,15 +4407,20 @@ D 1.00G "Holy Bologna" -1 {2.00G} Nightblade 1 {200.00G} [2006/03/22] "Orb of Deception" 1 {170.00G} [2006/03/21] - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -4265,15 +4447,20 @@ D 1.00G "Holy Bologna" -1 {2.00G} Nightblade 1 {200.00G} [2006/03/22] "Orb of Deception" 1 {170.00G} [2006/03/21] - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -4297,15 +4487,20 @@ D 1.00G "Holy Bologna" -1 {2.00G} Nightblade 1 {200.00G} [2006/03/22] "Orb of Deception" 1 {170.00G} [2006/03/21] - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -4329,15 +4527,20 @@ D 1.00G "Holy Bologna" -1 {2.00G} Nightblade 1 {200.00G} [2006/03/22] "Orb of Deception" 1 {170.00G} [2006/03/21] - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -4361,15 +4567,20 @@ D 1.00G "Holy Bologna" -1 {2.00G} Nightblade 1 {200.00G} [2006/03/22] "Orb of Deception" 1 {170.00G} [2006/03/21] - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -4393,15 +4607,20 @@ D 1.00G "Holy Bologna" -1 {2.00G} Nightblade 1 {200.00G} [2006/03/22] "Orb of Deception" 1 {170.00G} [2006/03/21] - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -4425,15 +4647,20 @@ D 1.00G "Holy Bologna" -1 {2.00G} Nightblade 1 {200.00G} [2006/03/22] "Orb of Deception" 1 {170.00G} [2006/03/21] - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -4457,15 +4687,20 @@ D 1.00G "Holy Bologna" -1 {2.00G} Nightblade 1 {200.00G} [2006/03/22] "Orb of Deception" 1 {170.00G} [2006/03/21] - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -4490,15 +4728,20 @@ D 1.00G Nightblade 1 {200.00G} [2006/03/22] "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -4523,15 +4769,20 @@ D 1.00G Nightblade 1 {200.00G} [2006/03/22] "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -4556,15 +4810,20 @@ D 1.00G Nightblade 1 {200.00G} [2006/03/22] "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -4589,15 +4851,20 @@ D 1.00G Nightblade 1 {200.00G} [2006/03/22] "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -4622,15 +4892,20 @@ D 1.00G Nightblade 1 {200.00G} [2006/03/22] "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -4656,15 +4934,20 @@ D 1.00G Nightblade 1 {200.00G} [2006/03/22] "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -4690,15 +4976,20 @@ D 1.00G Nightblade 1 {200.00G} [2006/03/22] "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -4724,15 +5018,20 @@ D 1.00G Nightblade 1 {200.00G} [2006/03/22] "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -4758,15 +5060,20 @@ D 1.00G Nightblade 1 {200.00G} [2006/03/22] "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -4792,15 +5102,20 @@ D 1.00G Nightblade 1 {200.00G} [2006/03/22] "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -4826,15 +5144,20 @@ D 1.00G Nightblade 1 {200.00G} [2006/03/22] "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -4860,15 +5186,20 @@ D 1.00G Nightblade 1 {200.00G} [2006/03/22] "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -4895,15 +5229,20 @@ D 1.00G Nightblade -1 {200.00G} "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -4930,15 +5272,20 @@ D 1.00G Nightblade -1 {200.00G} "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -4965,15 +5315,20 @@ D 1.00G Nightblade -1 {200.00G} "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -5000,15 +5358,20 @@ D 1.00G Nightblade -1 {200.00G} "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -5035,15 +5401,20 @@ D 1.00G Nightblade -1 {200.00G} "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -5070,15 +5444,20 @@ D 1.00G Nightblade -1 {200.00G} "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -5105,15 +5487,20 @@ D 1.00G Nightblade -1 {200.00G} "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -5140,15 +5530,20 @@ D 1.00G Nightblade -1 {200.00G} "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -5175,15 +5573,20 @@ D 1.00G Nightblade -1 {200.00G} "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -5210,15 +5616,20 @@ D 1.00G Nightblade -1 {200.00G} "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -5245,15 +5659,20 @@ D 1.00G Nightblade -1 {200.00G} "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -5280,15 +5702,20 @@ D 1.00G Nightblade -1 {200.00G} "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -5316,15 +5746,20 @@ D 1.00G "Orb of Deception" 1 {155.00G} [2006/04/01] "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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] @@ -5352,15 +5790,20 @@ D 1.00G "Orb of Deception" 1 {155.00G} [2006/04/01] "Orb of Deception" 1 {170.00G} [2006/03/21] "Orb of Deception" -1 {170.00G} - "Plans: Mithril Shield Spike" 1 {2.11G} [2006/03/15] + "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-market.test b/test/baseline/opt-market.test index b6c0ed6d..8c5b168a 100644 --- a/test/baseline/opt-market.test +++ b/test/baseline/opt-market.test @@ -49,18 +49,18 @@ P 2010/03/01 00:00:00 S 8 P P 2010/04/01 00:00:00 S 16 P >>>1 -09-Jan-01 Sample 1a As:Brokerage:Stocks 200 P 200 P +09-Jan-01 Sample 1a Asset:Brokerage:Stocks 200 P 200 P 09-Feb-01 Commodities revalued <Revalued> 200 P 400 P -09-Feb-01 Sample 2a As:Brokerage:Stocks 400 P 800 P +09-Feb-01 Sample 2a Asset:Brokerage:Stocks 400 P 800 P 09-Mar-01 Commodities revalued <Revalued> 800 P 1600 P -09-Mar-01 Sample 3a As:Brokerage:Stocks 800 P 2400 P +09-Mar-01 Sample 3a Asset:Brokerage:Stocks 800 P 2400 P 09-Apr-01 Commodities revalued <Revalued> 2400 P 4800 P -09-Apr-01 Sample 4a As:Brokerage:Stocks -1600 P 3200 P +09-Apr-01 Sample 4a Asset:Brokerage:Stocks -1600 P 3200 P 10-Feb-01 Commodities revalued <Revalued> -2400 P 800 P -10-Feb-01 Sample 2b As:Brokerage:Stocks 400 P 1200 P +10-Feb-01 Sample 2b Asset:Brokerage:Stocks 400 P 1200 P 10-Mar-01 Commodities revalued <Revalued> 1200 P 2400 P -10-Mar-01 Sample 3b As:Brokerage:Stocks 800 P 3200 P +10-Mar-01 Sample 3b Asset:Brokerage:Stocks 800 P 3200 P 10-Apr-01 Commodities revalued <Revalued> 3200 P 6400 P -10-Apr-01 Sample 4b As:Brokerage:Stocks -1600 P 4800 P +10-Apr-01 Sample 4b Asset:Brokerage:Stocks -1600 P 4800 P >>>2 === 0 diff --git a/test/baseline/opt-meta-width.test b/test/baseline/opt-meta-width.test new file mode 100644 index 00000000..51fd09cf --- /dev/null +++ b/test/baseline/opt-meta-width.test @@ -0,0 +1,14 @@ +reg --meta Sample --meta-width=15 +<<< +2004/05/27 (100) Credit card company + ; This is an xact note! + ; Sample: Value + Liabilities:MasterCard $20.00 + ; This is a posting note! + ; Sample: Another Value + ; :MyTag: + Assets:Bank:Checking + ; :AnotherTag: +>>> +Another Value 04-May-27 Credit card com.. Liab:MasterCard $20.00 $20.00 +Value As:Ban:Checking $-20.00 0 diff --git a/test/baseline/opt-meta.test b/test/baseline/opt-meta.test new file mode 100644 index 00000000..85f53003 --- /dev/null +++ b/test/baseline/opt-meta.test @@ -0,0 +1,14 @@ +reg --meta Sample +<<< +2004/05/27 (100) Credit card company + ; This is an xact note! + ; Sample: Value + Liabilities:MasterCard $20.00 + ; This is a posting note! + ; Sample: Another Value + ; :MyTag: + Assets:Bank:Checking + ; :AnotherTag: +>>> +Another Value04-May-27 Credit card company Liabilities:MasterCard $20.00 $20.00 +Value Assets:Bank:Checking $-20.00 0 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..c517a24c --- /dev/null +++ b/test/baseline/opt-now.test @@ -0,0 +1,4 @@ +eval today --now=2009/01/01 +<<< +>>> +2009/01/01 diff --git a/test/baseline/opt-output.test b/test/baseline/opt-output.test index 49881fb3..2339a3a1 100644 --- a/test/baseline/opt-output.test +++ b/test/baseline/opt-output.test @@ -5,7 +5,7 @@ reg --output=/dev/stderr Income:Dividends:Vanguard:VMMXX $-0.35 >>>1 >>>2 -07-Feb-02 RD VMMXX As:In:Vanguard:VMMXX 0.350 VMMXX 0.350 VMMXX - In:Di:Vanguard:VMMXX $-0.35 $-0.35 +07-Feb-02 RD VMMXX As:Inves:Vanguar:VMMXX 0.350 VMMXX 0.350 VMMXX + In:Divid:Vanguar:VMMXX $-0.35 $-0.35 0.350 VMMXX === 0 diff --git a/test/baseline/opt-pager.test b/test/baseline/opt-pager.test index 2a109ad7..060c4bb8 100644 --- a/test/baseline/opt-pager.test +++ b/test/baseline/opt-pager.test @@ -4,8 +4,8 @@ reg --pager=cat Assets:Investments:Vanguard:VMMXX 0.350 VMMXX @ $1.00 Income:Dividends:Vanguard:VMMXX $-0.35 >>>1 -07-Feb-02 RD VMMXX As:In:Vanguard:VMMXX 0.350 VMMXX 0.350 VMMXX - In:Di:Vanguard:VMMXX $-0.35 $-0.35 +07-Feb-02 RD VMMXX As:Inves:Vanguar:VMMXX 0.350 VMMXX 0.350 VMMXX + In:Divid:Vanguar:VMMXX $-0.35 $-0.35 0.350 VMMXX >>>2 === 0 diff --git a/test/baseline/opt-payee-as-account.test b/test/baseline/opt-payee-as-account.test index 6aca0dab..cbce81c3 100644 --- a/test/baseline/opt-payee-as-account.test +++ b/test/baseline/opt-payee-as-account.test @@ -22,12 +22,12 @@ 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 En:Expenses:Books $10.00 $10.00 -08-Jan-31 End of January En:Assets:Cash $-10.00 0 -08-Feb-01 February Fe:Expenses:Books $20.00 $20.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 En:Expenses:Books $20.00 $20.00 -08-Feb-28 End of February En:Assets:Cash $-20.00 0 +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 >>>2 diff --git a/test/baseline/opt-payee-width.test b/test/baseline/opt-payee-width.test index a5f61e87..d92dbe00 100644 --- a/test/baseline/opt-payee-width.test +++ b/test/baseline/opt-payee-width.test @@ -4,8 +4,8 @@ reg --payee-width=40 Assets:Investments:Vanguard:VMMXX 0.350 VMMXX @ $1.00 Income:Dividends:Vanguard:VMMXX $-0.35 >>>1 -07-Feb-02 RD VMMXX As:In:Vanguard:VMMXX 0.350 VMMXX 0.350 VMMXX - In:Di:Vanguard:VMMXX $-0.35 $-0.35 +07-Feb-02 RD VMMXX As:Investm:Vanguar:VMMXX 0.350 VMMXX 0.350 VMMXX + In:Dividen:Vanguar:VMMXX $-0.35 $-0.35 0.350 VMMXX >>>2 === 0 diff --git a/test/baseline/opt-payee.test b/test/baseline/opt-payee.test index 56ee0cde..a028bb91 100644 --- a/test/baseline/opt-payee.test +++ b/test/baseline/opt-payee.test @@ -4,8 +4,8 @@ reg --payee='account_base + ":" + commodity' Assets:Investments:Vanguard:VMMXX 0.350 VMMXX @ $1.00 Income:Dividends:Vanguard:VMMXX $-0.35 >>>1 -07-Feb-02 VMMXX:VMMXX As:In:Vanguard:VMMXX 0.350 VMMXX 0.350 VMMXX -07-Feb-02 VMMXX:$ In:Di:Vanguard:VMMXX $-0.35 $-0.35 +07-Feb-02 VMMXX:VMMXX As:Inves:Vanguar:VMMXX 0.350 VMMXX 0.350 VMMXX +07-Feb-02 VMMXX:$ In:Divid:Vanguar:VMMXX $-0.35 $-0.35 0.350 VMMXX >>>2 === 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..35b6e8d0 --- /dev/null +++ b/test/baseline/opt-prepend-format.test @@ -0,0 +1,17 @@ +bal --prepend-format "%(account_base)" +<<< +2007/02/02 RD VMMXX + Assets:Investments:Vanguard:VMMXX 0.350 VMMXX @ $1.00 + Income:Dividends:Vanguard:VMMXX $-0.35 +>>> +VMMXX 0.350 VMMXX Assets:Investments:Vanguard:VMMXX +VMMXX $-0.35 Income:Dividends:Vanguard:VMMXX +-------------------- + $-0.35 + 0.350 VMMXX +=== 0 +reg --prepend-format "%(account_base)" +>>> +VMMXX07-Feb-02 RD VMMXX As:Inves:Vanguar:VMMXX 0.350 VMMXX 0.350 VMMXX +VMMXX In:Divid:Vanguar:VMMXX $-0.35 $-0.35 + 0.350 VMMXX diff --git a/test/baseline/opt-prepend-width.test b/test/baseline/opt-prepend-width.test new file mode 100644 index 00000000..488f737b --- /dev/null +++ b/test/baseline/opt-prepend-width.test @@ -0,0 +1,17 @@ +bal --prepend-format "%(account_base) " --prepend-width=10 +<<< +2007/02/02 RD VMMXX + Assets:Investments:Vanguard:VMMXX 0.350 VMMXX @ $1.00 + Income:Dividends:Vanguard:VMMXX $-0.35 +>>> + VMMXX 0.350 VMMXX Assets:Investments:Vanguard:VMMXX + VMMXX $-0.35 Income:Dividends:Vanguard:VMMXX + -------------------- + $-0.35 + 0.350 VMMXX +=== 0 +reg --prepend-format "%(account_base) " --prepend-width=10 +>>> + VMMXX 07-Feb-02 RD VMMXX As:Inves:Vanguar:VMMXX 0.350 VMMXX 0.350 VMMXX + VMMXX In:Divid:Vanguar:VMMXX $-0.35 $-0.35 + 0.350 VMMXX diff --git a/test/baseline/opt-quantity.test b/test/baseline/opt-quantity.test index 5de92e84..f8cd0e4c 100644 --- a/test/baseline/opt-quantity.test +++ b/test/baseline/opt-quantity.test @@ -4,8 +4,8 @@ reg --quantity Assets:Investments:Vanguard:VMMXX 0.350 VMMXX @ $1.00 Income:Dividends:Vanguard:VMMXX $-0.35 >>>1 -07-Feb-02 RD VMMXX As:In:Vanguard:VMMXX 0.350 VMMXX 0.350 VMMXX - In:Di:Vanguard:VMMXX $-0.35 $-0.35 +07-Feb-02 RD VMMXX As:Inves:Vanguar:VMMXX 0.350 VMMXX 0.350 VMMXX + In:Divid:Vanguar:VMMXX $-0.35 $-0.35 0.350 VMMXX >>>2 === 0 diff --git a/test/baseline/opt-revalued.test b/test/baseline/opt-revalued.test index b68b256b..541a4e02 100644 --- a/test/baseline/opt-revalued.test +++ b/test/baseline/opt-revalued.test @@ -49,18 +49,18 @@ P 2010/03/01 00:00:00 S 8 P P 2010/04/01 00:00:00 S 16 P >>>1 -09-Jan-01 Sample 1a As:Brokerage:Stocks 200 P 200 P +09-Jan-01 Sample 1a Asset:Brokerage:Stocks 200 P 200 P 09-Feb-01 Commodities revalued <Revalued> 200 P 400 P -09-Feb-01 Sample 2a As:Brokerage:Stocks 400 P 800 P +09-Feb-01 Sample 2a Asset:Brokerage:Stocks 400 P 800 P 09-Mar-01 Commodities revalued <Revalued> 800 P 1600 P -09-Mar-01 Sample 3a As:Brokerage:Stocks 800 P 2400 P +09-Mar-01 Sample 3a Asset:Brokerage:Stocks 800 P 2400 P 09-Apr-01 Commodities revalued <Revalued> 2400 P 4800 P -09-Apr-01 Sample 4a As:Brokerage:Stocks -1600 P 3200 P +09-Apr-01 Sample 4a Asset:Brokerage:Stocks -1600 P 3200 P 10-Feb-01 Commodities revalued <Revalued> -2400 P 800 P -10-Feb-01 Sample 2b As:Brokerage:Stocks 400 P 1200 P +10-Feb-01 Sample 2b Asset:Brokerage:Stocks 400 P 1200 P 10-Mar-01 Commodities revalued <Revalued> 1200 P 2400 P -10-Mar-01 Sample 3b As:Brokerage:Stocks 800 P 3200 P +10-Mar-01 Sample 3b Asset:Brokerage:Stocks 800 P 3200 P 10-Apr-01 Commodities revalued <Revalued> 3200 P 6400 P -10-Apr-01 Sample 4b As:Brokerage:Stocks -1600 P 4800 P +10-Apr-01 Sample 4b Asset:Brokerage:Stocks -1600 P 4800 P >>>2 === 0 diff --git a/test/baseline/opt-sort-all.test b/test/baseline/opt-sort-all.test index b289f8e8..974f95c4 100644 --- a/test/baseline/opt-sort-all.test +++ b/test/baseline/opt-sort-all.test @@ -84,33 +84,33 @@ reg --monthly --sort=-amount Expenses:Travel:Passport $127.00 Assets:Checking >>>1 -08-Jan-01 - 08-Jan-31 Ex:Travel:Airfare $222.19 $222.19 +08-Jan-01 - 08-Jan-31 Expense:Travel:Airfare $222.19 $222.19 Liabilities:MasterCard $-222.19 0 -08-Feb-01 - 08-Feb-29 Ex:Travel:Airfare $477.60 $477.60 +08-Feb-01 - 08-Feb-29 Expense:Travel:Airfare $477.60 $477.60 Expenses:Travel:Auto $280.97 $758.57 Liabilities:MasterCard $-758.57 0 -08-Mar-01 - 08-Mar-31 Ex:Travel:Airfare $2,463.20 $2,463.20 +08-Mar-01 - 08-Mar-31 Expense:Travel:Airfare $2,463.20 $2,463.20 Liabilities:MasterCard $-2,463.20 0 -08-Apr-01 - 08-Apr-30 Ex:Travel:Airfare $1,186.14 $1,186.14 +08-Apr-01 - 08-Apr-30 Expense:Travel:Airfare $1,186.14 $1,186.14 Liabilities:MasterCard $-1,186.14 0 -08-Aug-01 - 08-Aug-31 Ex:Travel:Passport $170.00 $170.00 +08-Aug-01 - 08-Aug-31 Expens:Travel:Passport $170.00 $170.00 Liabilities:MasterCard $-170.00 0 -08-Sep-01 - 08-Sep-30 Ex:Travel:Airfare $3,925.94 $3,925.94 +08-Sep-01 - 08-Sep-30 Expense:Travel:Airfare $3,925.94 $3,925.94 Liabilities:MasterCard $-3,925.94 0 -08-Dec-01 - 08-Dec-31 Ex:Travel:Passport $254.00 $254.00 +08-Dec-01 - 08-Dec-31 Expens:Travel:Passport $254.00 $254.00 Assets:Checking $-254.00 0 >>>2 === 0 reg --monthly --sort-all=-amount >>>1 -08-Sep-01 - 08-Sep-30 Ex:Travel:Airfare $3,925.94 $3,925.94 -08-Mar-01 - 08-Mar-31 Ex:Travel:Airfare $2,463.20 $6,389.14 -08-Apr-01 - 08-Apr-30 Ex:Travel:Airfare $1,186.14 $7,575.28 -08-Feb-01 - 08-Feb-29 Ex:Travel:Airfare $477.60 $8,052.88 +08-Sep-01 - 08-Sep-30 Expense:Travel:Airfare $3,925.94 $3,925.94 +08-Mar-01 - 08-Mar-31 Expense:Travel:Airfare $2,463.20 $6,389.14 +08-Apr-01 - 08-Apr-30 Expense:Travel:Airfare $1,186.14 $7,575.28 +08-Feb-01 - 08-Feb-29 Expense:Travel:Airfare $477.60 $8,052.88 Expenses:Travel:Auto $280.97 $8,333.85 -08-Dec-01 - 08-Dec-31 Ex:Travel:Passport $254.00 $8,587.85 -08-Jan-01 - 08-Jan-31 Ex:Travel:Airfare $222.19 $8,810.04 -08-Aug-01 - 08-Aug-31 Ex:Travel:Passport $170.00 $8,980.04 +08-Dec-01 - 08-Dec-31 Expens:Travel:Passport $254.00 $8,587.85 +08-Jan-01 - 08-Jan-31 Expense:Travel:Airfare $222.19 $8,810.04 +08-Aug-01 - 08-Aug-31 Expens:Travel:Passport $170.00 $8,980.04 Liabilities:MasterCard $-170.00 $8,810.04 08-Jan-01 - 08-Jan-31 Liabilities:MasterCard $-222.19 $8,587.85 08-Dec-01 - 08-Dec-31 Assets:Checking $-254.00 $8,333.85 diff --git a/test/baseline/opt-sort-xacts.test b/test/baseline/opt-sort-xacts.test index 4882e18f..5dee9775 100644 --- a/test/baseline/opt-sort-xacts.test +++ b/test/baseline/opt-sort-xacts.test @@ -86,27 +86,27 @@ reg --sort=account >>>1 08-Dec-26 U.S. Department of .. Assets:Checking $-127.00 $-127.00 08-Dec-26 U.S. Department of .. Assets:Checking $-127.00 $-254.00 -08-Jan-11 LIAT Ex:Travel:Airfare $40.00 $-214.00 -08-Jan-14 cheaptickets.com Ex:Travel:Airfare $182.19 $-31.81 -08-Feb-05 UNITED Ex:Travel:Airfare $238.80 $206.99 -08-Feb-05 UNITED Ex:Travel:Airfare $238.80 $445.79 -08-Mar-16 IBERIA Ex:Travel:Airfare $1,231.60 $1,677.39 -08-Mar-16 IBERIA Ex:Travel:Airfare $1,231.60 $2,908.99 -08-Apr-03 AMERICAN Ex:Travel:Airfare $155.86 $3,064.85 -08-Apr-03 AMERICAN Ex:Travel:Airfare $155.86 $3,220.71 -08-Apr-30 UNITED Ex:Travel:Airfare $437.21 $3,657.92 -08-Apr-30 UNITED Ex:Travel:Airfare $437.21 $4,095.13 -08-Sep-06 AMERICAN Ex:Travel:Airfare $912.60 $5,007.73 -08-Sep-06 AMERICAN Ex:Travel:Airfare $912.60 $5,920.33 -08-Sep-22 AGNT FEE Ex:Travel:Airfare $70.00 $5,990.33 -08-Sep-22 DELTA Ex:Travel:Airfare $806.20 $6,796.53 -08-Sep-22 DELTA Ex:Travel:Airfare $806.20 $7,602.73 -08-Sep-22 LIAT 1974 LIMITED Ex:Travel:Airfare $418.34 $8,021.07 +08-Jan-11 LIAT Expense:Travel:Airfare $40.00 $-214.00 +08-Jan-14 cheaptickets.com Expense:Travel:Airfare $182.19 $-31.81 +08-Feb-05 UNITED Expense:Travel:Airfare $238.80 $206.99 +08-Feb-05 UNITED Expense:Travel:Airfare $238.80 $445.79 +08-Mar-16 IBERIA Expense:Travel:Airfare $1,231.60 $1,677.39 +08-Mar-16 IBERIA Expense:Travel:Airfare $1,231.60 $2,908.99 +08-Apr-03 AMERICAN Expense:Travel:Airfare $155.86 $3,064.85 +08-Apr-03 AMERICAN Expense:Travel:Airfare $155.86 $3,220.71 +08-Apr-30 UNITED Expense:Travel:Airfare $437.21 $3,657.92 +08-Apr-30 UNITED Expense:Travel:Airfare $437.21 $4,095.13 +08-Sep-06 AMERICAN Expense:Travel:Airfare $912.60 $5,007.73 +08-Sep-06 AMERICAN Expense:Travel:Airfare $912.60 $5,920.33 +08-Sep-22 AGNT FEE Expense:Travel:Airfare $70.00 $5,990.33 +08-Sep-22 DELTA Expense:Travel:Airfare $806.20 $6,796.53 +08-Sep-22 DELTA Expense:Travel:Airfare $806.20 $7,602.73 +08-Sep-22 LIAT 1974 LIMITED Expense:Travel:Airfare $418.34 $8,021.07 08-Feb-05 CTX Expenses:Travel:Auto $240.38 $8,261.45 08-Feb-22 BUDGET RENT-A-CAR Expenses:Travel:Auto $40.59 $8,302.04 -08-Aug-08 BCIS I-131 FILING F.. Ex:Travel:Passport $170.00 $8,472.04 -08-Dec-26 U.S. Department of .. Ex:Travel:Passport $127.00 $8,599.04 -08-Dec-26 U.S. Department of .. Ex:Travel:Passport $127.00 $8,726.04 +08-Aug-08 BCIS I-131 FILING F.. Expens:Travel:Passport $170.00 $8,472.04 +08-Dec-26 U.S. Department of .. Expens:Travel:Passport $127.00 $8,599.04 +08-Dec-26 U.S. Department of .. Expens:Travel:Passport $127.00 $8,726.04 08-Jan-11 LIAT Liabilities:MasterCard $-40.00 $8,686.04 08-Jan-14 cheaptickets.com Liabilities:MasterCard $-182.19 $8,503.85 08-Feb-05 CTX Liabilities:MasterCard $-240.38 $8,263.47 @@ -130,47 +130,47 @@ reg --sort=account === 0 reg --sort-xacts=account >>>1 -08-Jan-11 LIAT Ex:Travel:Airfare $40.00 $40.00 +08-Jan-11 LIAT Expense:Travel:Airfare $40.00 $40.00 Liabilities:MasterCard $-40.00 0 -08-Jan-14 cheaptickets.com Ex:Travel:Airfare $182.19 $182.19 +08-Jan-14 cheaptickets.com Expense:Travel:Airfare $182.19 $182.19 Liabilities:MasterCard $-182.19 0 08-Feb-05 CTX Expenses:Travel:Auto $240.38 $240.38 Liabilities:MasterCard $-240.38 0 -08-Feb-05 UNITED Ex:Travel:Airfare $238.80 $238.80 +08-Feb-05 UNITED Expense:Travel:Airfare $238.80 $238.80 Liabilities:MasterCard $-238.80 0 -08-Feb-05 UNITED Ex:Travel:Airfare $238.80 $238.80 +08-Feb-05 UNITED Expense:Travel:Airfare $238.80 $238.80 Liabilities:MasterCard $-238.80 0 08-Feb-22 BUDGET RENT-A-CAR Expenses:Travel:Auto $40.59 $40.59 Liabilities:MasterCard $-40.59 0 -08-Mar-16 IBERIA Ex:Travel:Airfare $1,231.60 $1,231.60 +08-Mar-16 IBERIA Expense:Travel:Airfare $1,231.60 $1,231.60 Liabilities:MasterCard $-1,231.60 0 -08-Mar-16 IBERIA Ex:Travel:Airfare $1,231.60 $1,231.60 +08-Mar-16 IBERIA Expense:Travel:Airfare $1,231.60 $1,231.60 Liabilities:MasterCard $-1,231.60 0 -08-Apr-03 AMERICAN Ex:Travel:Airfare $155.86 $155.86 +08-Apr-03 AMERICAN Expense:Travel:Airfare $155.86 $155.86 Liabilities:MasterCard $-155.86 0 -08-Apr-03 AMERICAN Ex:Travel:Airfare $155.86 $155.86 +08-Apr-03 AMERICAN Expense:Travel:Airfare $155.86 $155.86 Liabilities:MasterCard $-155.86 0 -08-Apr-30 UNITED Ex:Travel:Airfare $437.21 $437.21 +08-Apr-30 UNITED Expense:Travel:Airfare $437.21 $437.21 Liabilities:MasterCard $-437.21 0 -08-Apr-30 UNITED Ex:Travel:Airfare $437.21 $437.21 +08-Apr-30 UNITED Expense:Travel:Airfare $437.21 $437.21 Liabilities:MasterCard $-437.21 0 -08-Aug-08 BCIS I-131 FILING F.. Ex:Travel:Passport $170.00 $170.00 +08-Aug-08 BCIS I-131 FILING F.. Expens:Travel:Passport $170.00 $170.00 Liabilities:MasterCard $-170.00 0 -08-Sep-06 AMERICAN Ex:Travel:Airfare $912.60 $912.60 +08-Sep-06 AMERICAN Expense:Travel:Airfare $912.60 $912.60 Liabilities:MasterCard $-912.60 0 -08-Sep-06 AMERICAN Ex:Travel:Airfare $912.60 $912.60 +08-Sep-06 AMERICAN Expense:Travel:Airfare $912.60 $912.60 Liabilities:MasterCard $-912.60 0 -08-Sep-22 AGNT FEE Ex:Travel:Airfare $70.00 $70.00 +08-Sep-22 AGNT FEE Expense:Travel:Airfare $70.00 $70.00 Liabilities:MasterCard $-70.00 0 -08-Sep-22 DELTA Ex:Travel:Airfare $806.20 $806.20 +08-Sep-22 DELTA Expense:Travel:Airfare $806.20 $806.20 Liabilities:MasterCard $-806.20 0 -08-Sep-22 DELTA Ex:Travel:Airfare $806.20 $806.20 +08-Sep-22 DELTA Expense:Travel:Airfare $806.20 $806.20 Liabilities:MasterCard $-806.20 0 -08-Sep-22 LIAT 1974 LIMITED Ex:Travel:Airfare $418.34 $418.34 +08-Sep-22 LIAT 1974 LIMITED Expense:Travel:Airfare $418.34 $418.34 Liabilities:MasterCard $-418.34 0 08-Dec-26 U.S. Department of .. Assets:Checking $-127.00 $-127.00 - Ex:Travel:Passport $127.00 0 + Expens:Travel:Passport $127.00 0 08-Dec-26 U.S. Department of .. Assets:Checking $-127.00 $-127.00 - Ex:Travel:Passport $127.00 0 + Expens:Travel:Passport $127.00 0 >>>2 === 0 diff --git a/test/baseline/opt-sort.test b/test/baseline/opt-sort.test index 27efe31b..6e9e5ddd 100644 --- a/test/baseline/opt-sort.test +++ b/test/baseline/opt-sort.test @@ -84,82 +84,82 @@ reg airfare --sort=date Expenses:Travel:Passport $127.00 Assets:Checking >>>1 -08-Jan-11 LIAT Ex:Travel:Airfare $40.00 $40.00 -08-Jan-14 cheaptickets.com Ex:Travel:Airfare $182.19 $222.19 -08-Feb-05 UNITED Ex:Travel:Airfare $238.80 $460.99 -08-Feb-05 UNITED Ex:Travel:Airfare $238.80 $699.79 -08-Mar-16 IBERIA Ex:Travel:Airfare $1,231.60 $1,931.39 -08-Mar-16 IBERIA Ex:Travel:Airfare $1,231.60 $3,162.99 -08-Apr-03 AMERICAN Ex:Travel:Airfare $155.86 $3,318.85 -08-Apr-03 AMERICAN Ex:Travel:Airfare $155.86 $3,474.71 -08-Apr-30 UNITED Ex:Travel:Airfare $437.21 $3,911.92 -08-Apr-30 UNITED Ex:Travel:Airfare $437.21 $4,349.13 -08-Sep-06 AMERICAN Ex:Travel:Airfare $912.60 $5,261.73 -08-Sep-06 AMERICAN Ex:Travel:Airfare $912.60 $6,174.33 -08-Sep-22 AGNT FEE Ex:Travel:Airfare $70.00 $6,244.33 -08-Sep-22 DELTA Ex:Travel:Airfare $806.20 $7,050.53 -08-Sep-22 DELTA Ex:Travel:Airfare $806.20 $7,856.73 -08-Sep-22 LIAT 1974 LIMITED Ex:Travel:Airfare $418.34 $8,275.07 +08-Jan-11 LIAT Expense:Travel:Airfare $40.00 $40.00 +08-Jan-14 cheaptickets.com Expense:Travel:Airfare $182.19 $222.19 +08-Feb-05 UNITED Expense:Travel:Airfare $238.80 $460.99 +08-Feb-05 UNITED Expense:Travel:Airfare $238.80 $699.79 +08-Mar-16 IBERIA Expense:Travel:Airfare $1,231.60 $1,931.39 +08-Mar-16 IBERIA Expense:Travel:Airfare $1,231.60 $3,162.99 +08-Apr-03 AMERICAN Expense:Travel:Airfare $155.86 $3,318.85 +08-Apr-03 AMERICAN Expense:Travel:Airfare $155.86 $3,474.71 +08-Apr-30 UNITED Expense:Travel:Airfare $437.21 $3,911.92 +08-Apr-30 UNITED Expense:Travel:Airfare $437.21 $4,349.13 +08-Sep-06 AMERICAN Expense:Travel:Airfare $912.60 $5,261.73 +08-Sep-06 AMERICAN Expense:Travel:Airfare $912.60 $6,174.33 +08-Sep-22 AGNT FEE Expense:Travel:Airfare $70.00 $6,244.33 +08-Sep-22 DELTA Expense:Travel:Airfare $806.20 $7,050.53 +08-Sep-22 DELTA Expense:Travel:Airfare $806.20 $7,856.73 +08-Sep-22 LIAT 1974 LIMITED Expense:Travel:Airfare $418.34 $8,275.07 >>>2 === 0 reg airfare --sort=date,amount >>>1 -08-Jan-11 LIAT Ex:Travel:Airfare $40.00 $40.00 -08-Jan-14 cheaptickets.com Ex:Travel:Airfare $182.19 $222.19 -08-Feb-05 UNITED Ex:Travel:Airfare $238.80 $460.99 -08-Feb-05 UNITED Ex:Travel:Airfare $238.80 $699.79 -08-Mar-16 IBERIA Ex:Travel:Airfare $1,231.60 $1,931.39 -08-Mar-16 IBERIA Ex:Travel:Airfare $1,231.60 $3,162.99 -08-Apr-03 AMERICAN Ex:Travel:Airfare $155.86 $3,318.85 -08-Apr-03 AMERICAN Ex:Travel:Airfare $155.86 $3,474.71 -08-Apr-30 UNITED Ex:Travel:Airfare $437.21 $3,911.92 -08-Apr-30 UNITED Ex:Travel:Airfare $437.21 $4,349.13 -08-Sep-06 AMERICAN Ex:Travel:Airfare $912.60 $5,261.73 -08-Sep-06 AMERICAN Ex:Travel:Airfare $912.60 $6,174.33 -08-Sep-22 AGNT FEE Ex:Travel:Airfare $70.00 $6,244.33 -08-Sep-22 LIAT 1974 LIMITED Ex:Travel:Airfare $418.34 $6,662.67 -08-Sep-22 DELTA Ex:Travel:Airfare $806.20 $7,468.87 -08-Sep-22 DELTA Ex:Travel:Airfare $806.20 $8,275.07 +08-Jan-11 LIAT Expense:Travel:Airfare $40.00 $40.00 +08-Jan-14 cheaptickets.com Expense:Travel:Airfare $182.19 $222.19 +08-Feb-05 UNITED Expense:Travel:Airfare $238.80 $460.99 +08-Feb-05 UNITED Expense:Travel:Airfare $238.80 $699.79 +08-Mar-16 IBERIA Expense:Travel:Airfare $1,231.60 $1,931.39 +08-Mar-16 IBERIA Expense:Travel:Airfare $1,231.60 $3,162.99 +08-Apr-03 AMERICAN Expense:Travel:Airfare $155.86 $3,318.85 +08-Apr-03 AMERICAN Expense:Travel:Airfare $155.86 $3,474.71 +08-Apr-30 UNITED Expense:Travel:Airfare $437.21 $3,911.92 +08-Apr-30 UNITED Expense:Travel:Airfare $437.21 $4,349.13 +08-Sep-06 AMERICAN Expense:Travel:Airfare $912.60 $5,261.73 +08-Sep-06 AMERICAN Expense:Travel:Airfare $912.60 $6,174.33 +08-Sep-22 AGNT FEE Expense:Travel:Airfare $70.00 $6,244.33 +08-Sep-22 LIAT 1974 LIMITED Expense:Travel:Airfare $418.34 $6,662.67 +08-Sep-22 DELTA Expense:Travel:Airfare $806.20 $7,468.87 +08-Sep-22 DELTA Expense:Travel:Airfare $806.20 $8,275.07 >>>2 === 0 reg airfare --sort=date,-amount >>>1 -08-Jan-11 LIAT Ex:Travel:Airfare $40.00 $40.00 -08-Jan-14 cheaptickets.com Ex:Travel:Airfare $182.19 $222.19 -08-Feb-05 UNITED Ex:Travel:Airfare $238.80 $460.99 -08-Feb-05 UNITED Ex:Travel:Airfare $238.80 $699.79 -08-Mar-16 IBERIA Ex:Travel:Airfare $1,231.60 $1,931.39 -08-Mar-16 IBERIA Ex:Travel:Airfare $1,231.60 $3,162.99 -08-Apr-03 AMERICAN Ex:Travel:Airfare $155.86 $3,318.85 -08-Apr-03 AMERICAN Ex:Travel:Airfare $155.86 $3,474.71 -08-Apr-30 UNITED Ex:Travel:Airfare $437.21 $3,911.92 -08-Apr-30 UNITED Ex:Travel:Airfare $437.21 $4,349.13 -08-Sep-06 AMERICAN Ex:Travel:Airfare $912.60 $5,261.73 -08-Sep-06 AMERICAN Ex:Travel:Airfare $912.60 $6,174.33 -08-Sep-22 DELTA Ex:Travel:Airfare $806.20 $6,980.53 -08-Sep-22 DELTA Ex:Travel:Airfare $806.20 $7,786.73 -08-Sep-22 LIAT 1974 LIMITED Ex:Travel:Airfare $418.34 $8,205.07 -08-Sep-22 AGNT FEE Ex:Travel:Airfare $70.00 $8,275.07 +08-Jan-11 LIAT Expense:Travel:Airfare $40.00 $40.00 +08-Jan-14 cheaptickets.com Expense:Travel:Airfare $182.19 $222.19 +08-Feb-05 UNITED Expense:Travel:Airfare $238.80 $460.99 +08-Feb-05 UNITED Expense:Travel:Airfare $238.80 $699.79 +08-Mar-16 IBERIA Expense:Travel:Airfare $1,231.60 $1,931.39 +08-Mar-16 IBERIA Expense:Travel:Airfare $1,231.60 $3,162.99 +08-Apr-03 AMERICAN Expense:Travel:Airfare $155.86 $3,318.85 +08-Apr-03 AMERICAN Expense:Travel:Airfare $155.86 $3,474.71 +08-Apr-30 UNITED Expense:Travel:Airfare $437.21 $3,911.92 +08-Apr-30 UNITED Expense:Travel:Airfare $437.21 $4,349.13 +08-Sep-06 AMERICAN Expense:Travel:Airfare $912.60 $5,261.73 +08-Sep-06 AMERICAN Expense:Travel:Airfare $912.60 $6,174.33 +08-Sep-22 DELTA Expense:Travel:Airfare $806.20 $6,980.53 +08-Sep-22 DELTA Expense:Travel:Airfare $806.20 $7,786.73 +08-Sep-22 LIAT 1974 LIMITED Expense:Travel:Airfare $418.34 $8,205.07 +08-Sep-22 AGNT FEE Expense:Travel:Airfare $70.00 $8,275.07 >>>2 === 0 reg airfare --sort=-date,-amount >>>1 -08-Sep-22 DELTA Ex:Travel:Airfare $806.20 $806.20 -08-Sep-22 DELTA Ex:Travel:Airfare $806.20 $1,612.40 -08-Sep-22 LIAT 1974 LIMITED Ex:Travel:Airfare $418.34 $2,030.74 -08-Sep-22 AGNT FEE Ex:Travel:Airfare $70.00 $2,100.74 -08-Sep-06 AMERICAN Ex:Travel:Airfare $912.60 $3,013.34 -08-Sep-06 AMERICAN Ex:Travel:Airfare $912.60 $3,925.94 -08-Apr-30 UNITED Ex:Travel:Airfare $437.21 $4,363.15 -08-Apr-30 UNITED Ex:Travel:Airfare $437.21 $4,800.36 -08-Apr-03 AMERICAN Ex:Travel:Airfare $155.86 $4,956.22 -08-Apr-03 AMERICAN Ex:Travel:Airfare $155.86 $5,112.08 -08-Mar-16 IBERIA Ex:Travel:Airfare $1,231.60 $6,343.68 -08-Mar-16 IBERIA Ex:Travel:Airfare $1,231.60 $7,575.28 -08-Feb-05 UNITED Ex:Travel:Airfare $238.80 $7,814.08 -08-Feb-05 UNITED Ex:Travel:Airfare $238.80 $8,052.88 -08-Jan-14 cheaptickets.com Ex:Travel:Airfare $182.19 $8,235.07 -08-Jan-11 LIAT Ex:Travel:Airfare $40.00 $8,275.07 +08-Sep-22 DELTA Expense:Travel:Airfare $806.20 $806.20 +08-Sep-22 DELTA Expense:Travel:Airfare $806.20 $1,612.40 +08-Sep-22 LIAT 1974 LIMITED Expense:Travel:Airfare $418.34 $2,030.74 +08-Sep-22 AGNT FEE Expense:Travel:Airfare $70.00 $2,100.74 +08-Sep-06 AMERICAN Expense:Travel:Airfare $912.60 $3,013.34 +08-Sep-06 AMERICAN Expense:Travel:Airfare $912.60 $3,925.94 +08-Apr-30 UNITED Expense:Travel:Airfare $437.21 $4,363.15 +08-Apr-30 UNITED Expense:Travel:Airfare $437.21 $4,800.36 +08-Apr-03 AMERICAN Expense:Travel:Airfare $155.86 $4,956.22 +08-Apr-03 AMERICAN Expense:Travel:Airfare $155.86 $5,112.08 +08-Mar-16 IBERIA Expense:Travel:Airfare $1,231.60 $6,343.68 +08-Mar-16 IBERIA Expense:Travel:Airfare $1,231.60 $7,575.28 +08-Feb-05 UNITED Expense:Travel:Airfare $238.80 $7,814.08 +08-Feb-05 UNITED Expense:Travel:Airfare $238.80 $8,052.88 +08-Jan-14 cheaptickets.com Expense:Travel:Airfare $182.19 $8,235.07 +08-Jan-11 LIAT Expense:Travel:Airfare $40.00 $8,275.07 >>>2 === 0 bal --sort=total @@ -202,27 +202,27 @@ reg --sort=account >>>1 08-Dec-26 U.S. Department of .. Assets:Checking $-127.00 $-127.00 08-Dec-26 U.S. Department of .. Assets:Checking $-127.00 $-254.00 -08-Jan-11 LIAT Ex:Travel:Airfare $40.00 $-214.00 -08-Jan-14 cheaptickets.com Ex:Travel:Airfare $182.19 $-31.81 -08-Feb-05 UNITED Ex:Travel:Airfare $238.80 $206.99 -08-Feb-05 UNITED Ex:Travel:Airfare $238.80 $445.79 -08-Mar-16 IBERIA Ex:Travel:Airfare $1,231.60 $1,677.39 -08-Mar-16 IBERIA Ex:Travel:Airfare $1,231.60 $2,908.99 -08-Apr-03 AMERICAN Ex:Travel:Airfare $155.86 $3,064.85 -08-Apr-03 AMERICAN Ex:Travel:Airfare $155.86 $3,220.71 -08-Apr-30 UNITED Ex:Travel:Airfare $437.21 $3,657.92 -08-Apr-30 UNITED Ex:Travel:Airfare $437.21 $4,095.13 -08-Sep-06 AMERICAN Ex:Travel:Airfare $912.60 $5,007.73 -08-Sep-06 AMERICAN Ex:Travel:Airfare $912.60 $5,920.33 -08-Sep-22 AGNT FEE Ex:Travel:Airfare $70.00 $5,990.33 -08-Sep-22 DELTA Ex:Travel:Airfare $806.20 $6,796.53 -08-Sep-22 DELTA Ex:Travel:Airfare $806.20 $7,602.73 -08-Sep-22 LIAT 1974 LIMITED Ex:Travel:Airfare $418.34 $8,021.07 +08-Jan-11 LIAT Expense:Travel:Airfare $40.00 $-214.00 +08-Jan-14 cheaptickets.com Expense:Travel:Airfare $182.19 $-31.81 +08-Feb-05 UNITED Expense:Travel:Airfare $238.80 $206.99 +08-Feb-05 UNITED Expense:Travel:Airfare $238.80 $445.79 +08-Mar-16 IBERIA Expense:Travel:Airfare $1,231.60 $1,677.39 +08-Mar-16 IBERIA Expense:Travel:Airfare $1,231.60 $2,908.99 +08-Apr-03 AMERICAN Expense:Travel:Airfare $155.86 $3,064.85 +08-Apr-03 AMERICAN Expense:Travel:Airfare $155.86 $3,220.71 +08-Apr-30 UNITED Expense:Travel:Airfare $437.21 $3,657.92 +08-Apr-30 UNITED Expense:Travel:Airfare $437.21 $4,095.13 +08-Sep-06 AMERICAN Expense:Travel:Airfare $912.60 $5,007.73 +08-Sep-06 AMERICAN Expense:Travel:Airfare $912.60 $5,920.33 +08-Sep-22 AGNT FEE Expense:Travel:Airfare $70.00 $5,990.33 +08-Sep-22 DELTA Expense:Travel:Airfare $806.20 $6,796.53 +08-Sep-22 DELTA Expense:Travel:Airfare $806.20 $7,602.73 +08-Sep-22 LIAT 1974 LIMITED Expense:Travel:Airfare $418.34 $8,021.07 08-Feb-05 CTX Expenses:Travel:Auto $240.38 $8,261.45 08-Feb-22 BUDGET RENT-A-CAR Expenses:Travel:Auto $40.59 $8,302.04 -08-Aug-08 BCIS I-131 FILING F.. Ex:Travel:Passport $170.00 $8,472.04 -08-Dec-26 U.S. Department of .. Ex:Travel:Passport $127.00 $8,599.04 -08-Dec-26 U.S. Department of .. Ex:Travel:Passport $127.00 $8,726.04 +08-Aug-08 BCIS I-131 FILING F.. Expens:Travel:Passport $170.00 $8,472.04 +08-Dec-26 U.S. Department of .. Expens:Travel:Passport $127.00 $8,599.04 +08-Dec-26 U.S. Department of .. Expens:Travel:Passport $127.00 $8,726.04 08-Jan-11 LIAT Liabilities:MasterCard $-40.00 $8,686.04 08-Jan-14 cheaptickets.com Liabilities:MasterCard $-182.19 $8,503.85 08-Feb-05 CTX Liabilities:MasterCard $-240.38 $8,263.47 diff --git a/test/baseline/opt-subtotal.test b/test/baseline/opt-subtotal.test index 41defbc1..f2d9454f 100644 --- a/test/baseline/opt-subtotal.test +++ b/test/baseline/opt-subtotal.test @@ -85,9 +85,9 @@ reg --subtotal Assets:Checking >>>1 08-Jan-11 - 08-Dec-26 Assets:Checking $-254.00 $-254.00 - Ex:Travel:Airfare $8,275.07 $8,021.07 + Expense:Travel:Airfare $8,275.07 $8,021.07 Expenses:Travel:Auto $280.97 $8,302.04 - Ex:Travel:Passport $424.00 $8,726.04 + Expens:Travel:Passport $424.00 $8,726.04 Liabilities:MasterCard $-8,726.04 0 >>>2 === 0 diff --git a/test/baseline/opt-total-width.test b/test/baseline/opt-total-width.test index 1d7b8b94..bbcb549e 100644 --- a/test/baseline/opt-total-width.test +++ b/test/baseline/opt-total-width.test @@ -4,8 +4,8 @@ reg --total-width=25 Assets:Investments:Vanguard:VMMXX 0.350 VMMXX @ $1.00 Income:Dividends:Vanguard:VMMXX $-0.35 >>>1 -07-Feb-02 RD VMMXX As:In:Vanguard:VMMXX 0.350 VMMXX 0.350 VMMXX - In:Di:Vanguard:VMMXX $-0.35 $-0.35 +07-Feb-02 RD VMMXX As:Investm:Vanguar:VMMXX 0.350 VMMXX 0.350 VMMXX + In:Dividen:Vanguar:VMMXX $-0.35 $-0.35 0.350 VMMXX >>>2 === 0 diff --git a/test/baseline/opt-total.test b/test/baseline/opt-total.test index 8f4719d2..c73614c1 100644 --- a/test/baseline/opt-total.test +++ b/test/baseline/opt-total.test @@ -4,7 +4,7 @@ reg --total=10 Assets:Investments:Vanguard:VMMXX 0.350 VMMXX @ $1.00 Income:Dividends:Vanguard:VMMXX $-0.35 >>>1 -07-Feb-02 RD VMMXX As:In:Vanguard:VMMXX 0.350 VMMXX 10 - In:Di:Vanguard:VMMXX $-0.35 10 +07-Feb-02 RD VMMXX As:Inves:Vanguar:VMMXX 0.350 VMMXX 10 + In:Divid:Vanguar:VMMXX $-0.35 10 >>>2 === 0 diff --git a/test/regress/04C5E1CA.test b/test/regress/04C5E1CA.test index 729ae6bf..9aca9b1f 100644 --- a/test/regress/04C5E1CA.test +++ b/test/regress/04C5E1CA.test @@ -8,10 +8,10 @@ reg Expenses:School:CS Club:Home Depot:4" Brush (2 * $3.97) Liabilities:Mastercard >>>1 -09-Apr-04 CS Club Sign Ex:Sc:CS:Ho:4" Brush 2 2 +09-Apr-04 CS Club Sign Ex:Sc:CS:Home:4" Brush 2 2 Liabilities:Mastercard $-7.94 2 $-7.94 -09-Apr-04 CS Club Sign Ex:Sc:CS:Ho:4" Brush $7.94 2 +09-Apr-04 CS Club Sign Ex:Sc:CS:Home:4" Brush $7.94 2 Liabilities:Mastercard $-7.94 2 $-7.94 >>>2 diff --git a/test/regress/13965214.test b/test/regress/13965214.test index 674d4d7d..29a7278e 100644 --- a/test/regress/13965214.test +++ b/test/regress/13965214.test @@ -3,20 +3,20 @@ reg Y2008 01/30 A - Bank 130 - Income + Bank 130 + Income 02/01 B - Bank 140 - Income + Bank 140 + Income 02/20 C - Bank 150 - Income + Bank 150 + Income 03/01 D - Bank 160 - Income + Bank 160 + Income >>>1 08-Jan-30 A Bank 130 130 Income -130 0 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/1D275740.test b/test/regress/1D275740.test index 72eb1769..d7536a57 100644 --- a/test/regress/1D275740.test +++ b/test/regress/1D275740.test @@ -89,11 +89,11 @@ D 1.200,40 € Actif:SV 14,89 € >>>1 1999/11/01 * Achat - Actif:SSB 125,0000 STK @ 13,37936 $ + Actif:SSB 125,0000 STK Actif:SSB -1672,42 $ 1999/11/04 * Vente - Actif:SSB -125,0000 STK @ 15,01288 $ + Actif:SSB -125,0000 STK Dépense:SSB:Commissions 55,07 $ Actif:SSB 1821,54 $ diff --git a/test/regress/25A099C9.test b/test/regress/25A099C9.test index 251b0f24..b3e23a6c 100644 --- a/test/regress/25A099C9.test +++ b/test/regress/25A099C9.test @@ -4,16 +4,16 @@ >>>2 While parsing file "$sourcepath/src/amount.h", line 66: Error: No quantity specified for amount -While parsing file "$sourcepath/src/amount.h", line 720: -Error: Invalid date/time: line amount_t amoun While parsing file "$sourcepath/src/amount.h", line 726: -Error: Invalid date/time: line string amount_ +Error: Invalid date/time: line amount_t amoun While parsing file "$sourcepath/src/amount.h", line 732: Error: Invalid date/time: line string amount_ While parsing file "$sourcepath/src/amount.h", line 738: Error: Invalid date/time: line string amount_ While parsing file "$sourcepath/src/amount.h", line 744: +Error: Invalid date/time: line string amount_ +While parsing file "$sourcepath/src/amount.h", line 750: Error: Invalid date/time: line std::ostream& -While parsing file "$sourcepath/src/amount.h", line 751: +While parsing file "$sourcepath/src/amount.h", line 757: Error: Invalid date/time: line std::istream& === 7 diff --git a/test/regress/3AB70168.test b/test/regress/3AB70168.test index 6c08b0bf..ffa6a573 100644 --- a/test/regress/3AB70168.test +++ b/test/regress/3AB70168.test @@ -5,9 +5,9 @@ o 2007/03/02 01:00:00 i 2007/03/11 23:00:00 B o 2007/03/12 01:00:00 >>>1 - 2.0h A - 2.0h B + 2.00h A + 2.00h B -------------------- - 4.0h + 4.00h >>>2 === 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/5FBF2ED8.test b/test/regress/5FBF2ED8.test index 78df5a6e..ad8454d1 100644 --- a/test/regress/5FBF2ED8.test +++ b/test/regress/5FBF2ED8.test @@ -1,16 +1,16 @@ bal -B <<< -2008/01/01 * Checking balance - Assets:Bank:Checking £0.00 - Equity:Opening Balances +2008/01/01 * Checking balance + Assets:Bank:Checking £0.00 + Equity:Opening Balances -2008/02/02 Salary - Income:Employer £-334.00 - Assets:Bank:Checking $512.85 @@ £334.00 +2008/02/02 Salary + Income:Employer £-334.00 + Assets:Bank:Checking $512.85 @@ £334.00 -2008/03/02 Salary - Income:Employer £-248.07 - Assets:Bank:Checking $404.82 @@ £248.07 +2008/03/02 Salary + Income:Employer £-248.07 + Assets:Bank:Checking $404.82 @@ £248.07 >>>1 £582.07 Assets:Bank:Checking £-582.07 Income:Employer 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/727B2DF8.test b/test/regress/727B2DF8.test index a13e8292..fbe42e54 100644 --- a/test/regress/727B2DF8.test +++ b/test/regress/727B2DF8.test @@ -46,9 +46,9 @@ N $ ; :AnotherTag: >>>1 04-May-01 Checking balance [34mAssets:Bank:Checking [0m $1,000.00 $1,000.00 - [34mEq:Opening Balances [0m [31m$-1,000.00[0m 0 + [34mEquit:Opening Balances[0m [31m$-1,000.00[0m 0 04-May-03 Investment balance [34mAssets:Brokerage [0m 50 AAPL 50 AAPL - [34mEq:Opening Balances [0m [31m$-1,500.00[0m [31m$-1,500.00[0m + [34mEquit:Opening Balances[0m [31m$-1,500.00[0m [31m$-1,500.00[0m 50 AAPL 04-May-14 Páy dày [34mAssets:Bank:Checking [0m 500.00€ [31m$-1,500.00[0m 50 AAPL @@ -59,7 +59,7 @@ N $ 50 AAPL [34mIncome:Salary [0m [31m$-500.00[0m [31m$-1,500.00[0m 50 AAPL -04-May-14 Another dày in whic.. [34mРу:Ру:Ру:Русский язык [0m $1,000.00 [31m$-500.00[0m +04-May-14 Another dày in whic.. [34mРу:Ру:Рус:Русский язык[0m $1,000.00 [31m$-500.00[0m 50 AAPL [34mIncome:Salary [0m [31m$-1,000.00[0m [31m$-1,500.00[0m 50 AAPL diff --git a/test/regress/7C44010B.test b/test/regress/7C44010B.test new file mode 100644 index 00000000..f0437588 --- /dev/null +++ b/test/regress/7C44010B.test @@ -0,0 +1,30 @@ +reg -X F -J Assets +<<< +D 1000,00 € + +1994/1/1 Company + Assets:Checking 10000 F + Income:Salary + +1998/1/1 Transfer + Assets:US account 200 $ + Assets:Checking -1000 F + +P 1998/12/31 $ 6 F + +1999/1/1 Books + Expenses:Books 200 $ + Assets:US account + +P 2002/1/1 € 6,55957 F + +2002/1/1 Company + Assets:Checking 2000 € + Income:Salary +>>> +1994-01-01 10000 +1998-01-01 11000 +1998-01-01 10000 +1998-12-31 10200 +1999-01-01 9000 +2002-01-01 22119.14 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 8cd51e42..0b463d61 100644 --- a/test/regress/86D2BDC4.test +++ b/test/regress/86D2BDC4.test @@ -2,10 +2,10 @@ reg -B <<< 2009/06/03 Westjet Expenses:Transportation:Air C$429.80 @ 1.572865 - Expenses:Bank:Fees 2.73 + Expenses:Bank:Fees 2.73 Liabilities:Mastercard >>>1 -09-Jun-03 Westjet Ex:Transportation: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/9EB10714.test b/test/regress/9EB10714.test new file mode 100644 index 00000000..9fd49b7a --- /dev/null +++ b/test/regress/9EB10714.test @@ -0,0 +1,43 @@ +reg -J -V ^Actif +<<< +1994/01/01 Achat Rialto + Actif:Fixe:Rialto 2 Rialto + Actif:BNP -120000 € + Actif:BNP 120000 € + Revenu:Salaire -120000 € + +P 1995/01/01 Rialto 70000 € +P 1996/01/01 Rialto 90000 € +P 1997/01/01 Rialto 90000 € +P 1998/01/01 Rialto 105000 € +P 1999/01/01 Rialto 110000 € +P 2000/01/01 Rialto 120000 € +P 2001/01/01 Rialto 130000 € +P 2002/01/01 Rialto 140000 € +P 2003/01/01 Rialto 150000 € +P 2004/01/01 Rialto 160000 € +P 2005/01/01 Rialto 170000 € +P 2006/01/01 Rialto 180000 € +P 2007/01/01 Rialto 190000 € +P 2008/01/01 Rialto 200000 € +P 2009/01/01 Rialto 210000 € +P 2010/01/01 Rialto 211000 € +>>> +1994-01-01 120000 +1994-01-01 0 +1994-01-01 120000 +1995-01-01 140000 +1996-01-01 180000 +1998-01-01 210000 +1999-01-01 220000 +2000-01-01 240000 +2001-01-01 260000 +2002-01-01 280000 +2003-01-01 300000 +2004-01-01 320000 +2005-01-01 340000 +2006-01-01 360000 +2007-01-01 380000 +2008-01-01 400000 +2009-01-01 420000 +2010-01-01 422000 diff --git a/test/regress/A28CF697.test b/test/regress/A28CF697.test new file mode 100644 index 00000000..513dbd97 --- /dev/null +++ b/test/regress/A28CF697.test @@ -0,0 +1,9 @@ +print +<<< +2010-02-05 * Flight SN2094 + Assets:Rewards:Airmiles 125 "M&M" + Income:Rewards +>>> +2010/02/05 * Flight SN2094 + Assets:Rewards:Airmiles 125 "M&M" + Income:Rewards 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/D943AE0F.test b/test/regress/D943AE0F.test index 7a2e14d8..8fd5f932 100644 --- a/test/regress/D943AE0F.test +++ b/test/regress/D943AE0F.test @@ -8,7 +8,7 @@ D 1000.00 EUR P 2008/04/20 00:00:00 CAD 1.20 EUR >>>1 -08-Apr-15 Paid expenses back .. Ex:Cie-Reimbursements 2200.00 EUR 2200.00 EUR +08-Apr-15 Paid expenses back .. Exp:Cie-Reimbursements 2200.00 EUR 2200.00 EUR Assets:Checking -2200.00 EUR 0 08-Apr-20 Commodities revalued <Revalued> 200.00 EUR 200.00 EUR >>>2 diff --git a/test/regress/E4C9A8EA.test b/test/regress/E4C9A8EA.test index fed47c82..a305a839 100644 --- a/test/regress/E4C9A8EA.test +++ b/test/regress/E4C9A8EA.test @@ -10,15 +10,15 @@ reg Assets:Investments:RBC-Broker:Account-RSP 72.06 CAD Expenses:Financial:Fees >>>1 -07-Dec-31 Cost basis for: RED.. As:In:RB:Account-RSP 4.00 RHT 4.00 RHT - Eq:Op:Cost -689.87 CAD -689.87 CAD +07-Dec-31 Cost basis for: RED.. As:In:RBC-:Account-RSP 4.00 RHT 4.00 RHT + Eq:Opening-Balanc:Cost -689.87 CAD -689.87 CAD 4.00 RHT -08-Jan-03 Sell -- RHT -- RED .. As:In:RB:Account-RSP -4.00 RHT -689.87 CAD - Ex:Fi:Commissions 9.95 USD -689.87 CAD +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 9.95 USD - As:In:RB:Account-RSP 72.06 CAD -617.81 CAD + As:In:RBC-:Account-RSP 72.06 CAD -617.81 CAD 9.95 USD - Ex:Financial:Fees 2.89 CAD -614.92 CAD + Expense:Financial:Fees 2.89 CAD -614.92 CAD 9.95 USD >>>2 === 0 diff --git a/test/regress/E627C594.test b/test/regress/E627C594.test index 0dfbf778..ba48a0c7 100644 --- a/test/regress/E627C594.test +++ b/test/regress/E627C594.test @@ -10,6 +10,8 @@ reg --forecast-while="d<[2010/03/01]" --now=2009/11/01 >>>1 09-Nov-01 Sample Expenses:Food:Dining $20.00 $20.00 Assets $-20.00 0 +09-Dec-01 Forecast transaction Expenses:Food $500.00 $500.00 +09-Dec-01 Forecast transaction Assets $-500.00 0 10-Jan-01 Forecast transaction Expenses:Food $500.00 $500.00 10-Jan-01 Forecast transaction Assets $-500.00 0 10-Feb-01 Forecast transaction Expenses:Food $500.00 $500.00 diff --git a/test/regress/F559EC12.test b/test/regress/F559EC12.test index c8b686db..d6b2521e 100644 --- a/test/regress/F559EC12.test +++ b/test/regress/F559EC12.test @@ -6,6 +6,7 @@ format "%-12(scrub(amount))" ; This note applies to all postings. :SecondTag: Expenses:Books 20 BOOK @ $10 ; Metadata: Some Value + ; Typed:: $100 + $200 ; :ExampleTag: ; Here follows a note describing the posting. Liabilities:MasterCard $-200.00 @@ -27,6 +28,7 @@ format "%12(scrub(amount))" ; This note applies to all postings. :SecondTag: Expenses:Books 20 BOOK @ $10 ; Metadata: Some Value + ; Typed:: $100 + $200 ; :ExampleTag: ; Here follows a note describing the posting. Liabilities:MasterCard $-200.00 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_amount.cc b/test/unit/t_amount.cc index 63d82675..b1c7b837 100644 --- a/test/unit/t_amount.cc +++ b/test/unit/t_amount.cc @@ -249,7 +249,7 @@ void AmountTestCase::testAssignment() assertEqual(x10, x9); assertFalse(x1.is_null()); - x1 = x0; // sets x1 back to uninitialized state + x1 = x0; // sets x1 back to uninitialized state assertTrue(x0.is_null()); assertTrue(x1.is_null()); @@ -699,11 +699,11 @@ void AmountTestCase::testCommoditySubtraction() assertEqual(internalAmount("$123454434148472090.138858329277476789"), x7 - x8); assertEqual(string("$123454434148472090.138858329277476789"), (x7 - x8).to_string()); assertEqual(string("$123454434148472090.14"), - (amount_t("$1.00") * (x7 - x8)).to_string()); + (amount_t("$1.00") * (x7 - x8)).to_string()); assertEqual(internalAmount("$-123454434148472090.138858329277476789"), x8 - x7); assertEqual(string("$-123454434148472090.138858329277476789"), (x8 - x7).to_string()); assertEqual(string("$-123454434148472090.14"), - (amount_t("$1.00") * (x8 - x7)).to_string()); + (amount_t("$1.00") * (x8 - x7)).to_string()); assertValid(x1); assertValid(x2); @@ -743,7 +743,7 @@ void AmountTestCase::testIntegerMultiplication() amount_t x4("123456789123456789123456789"); assertEqual(amount_t("15241578780673678546105778281054720515622620750190521"), - x4 * x4); + x4 * x4); assertValid(x1); assertValid(y1); @@ -780,7 +780,7 @@ void AmountTestCase::testFractionalMultiplication() amount_t x2("123456789123456789.123456789123456789"); assertEqual(amount_t("15241578780673678546105778311537878.046486820281054720515622620750190521"), - x2 * x2); + x2 * x2); assertValid(x1); assertValid(y1); @@ -835,7 +835,7 @@ void AmountTestCase::testCommodityMultiplication() amount_t x7(internalAmount("$123456789123456789.123456789123456789")); assertEqual(internalAmount("$15241578780673678546105778311537878.046486820281054720515622620750190521"), - x7 * x7); + x7 * x7); assertValid(x1); assertValid(x2); @@ -877,7 +877,7 @@ void AmountTestCase::testIntegerDivision() assertEqual(string("2204585520061728377204585.517857"), (x4 / y4).to_string()); assertEqual(amount_t("0.000000000000000000000000000001"), - amount_t("10") / amount_t("10000000000000000000000000000000")); + amount_t("10") / amount_t("10000000000000000000000000000000")); assertValid(x1); assertValid(y1); @@ -973,9 +973,9 @@ void AmountTestCase::testCommodityDivision() assertEqual(amount_t("$1"), x7 / x7); assertEqual(string("$0.0019216115121765559608381226612019501"), - (x6 / x7).to_fullstring()); + (x6 / x7).to_fullstring()); assertEqual(string("$520.39654928343335571379527154924040947272"), - (x7 / x6).to_fullstring()); + (x7 / x6).to_fullstring()); assertValid(x1); assertValid(x2); @@ -1110,14 +1110,14 @@ void AmountTestCase::testReduction() amount_t x2("600s"); amount_t x3("6000s"); amount_t x4("360000s"); - amount_t x5("10m"); // 600s - amount_t x6("100m"); // 6000s - amount_t x7("1000m"); // 60000s - amount_t x8("10000m"); // 600000s - amount_t x9("10h"); // 36000s - amount_t x10("100h"); // 360000s - amount_t x11("1000h"); // 3600000s - amount_t x12("10000h"); // 36000000s + amount_t x5("10m"); // 600s + amount_t x6("100m"); // 6000s + amount_t x7("1000m"); // 60000s + amount_t x8("10000m"); // 600000s + amount_t x9("10h"); // 36000s + amount_t x10("100h"); // 360000s + amount_t x11("1000h"); // 3600000s + amount_t x12("10000h"); // 36000000s assertThrow(x0.reduce(), amount_error); assertThrow(x0.unreduce(), amount_error); @@ -1220,7 +1220,7 @@ void AmountTestCase::testCommodityForZero() { amount_t x1(internalAmount("$0.000000000000000000001")); - assertTrue(x1); // an internal amount never betrays its precision + assertTrue(x1); // an internal amount never betrays its precision assertFalse(x1.is_zero()); assertFalse(x1.is_realzero()); @@ -1287,7 +1287,7 @@ void AmountTestCase::testPrinting() x1.print(bufstr); assertEqual(std::string("982340823.380238098235098235098235098"), - bufstr.str()); + bufstr.str()); } assertValid(x0); @@ -1304,7 +1304,7 @@ void AmountTestCase::testCommodityPrinting() x1.print(bufstr); assertEqual(std::string("$982340823.386238098235098235098235098"), - bufstr.str()); + bufstr.str()); } { @@ -1312,7 +1312,7 @@ void AmountTestCase::testCommodityPrinting() (x1 * x2).print(bufstr); assertEqual(std::string("$964993493285024293.18099172508158508135413499124"), - bufstr.str()); + bufstr.str()); } { diff --git a/test/unit/t_commodity.cc b/test/unit/t_commodity.cc index 3d84ead6..b8555202 100644 --- a/test/unit/t_commodity.cc +++ b/test/unit/t_commodity.cc @@ -73,11 +73,11 @@ void CommodityTestCase::testPriceHistory() cad.add_price(jan17_06, amount_t("$1.11")); #ifndef NOT_FOR_PYTHON - optional<amount_t> amt = x1.value(false, feb28_07sbm); + optional<amount_t> amt = x1.value(feb28_07sbm); assertTrue(amt); assertEqual(amount_t("$1831.83"), *amt); - amt = x1.value(false, CURRENT_TIME()); + amt = x1.value(CURRENT_TIME()); assertTrue(amt); assertEqual(string("$2124.12"), amt->to_string()); #ifdef INTEGER_MATH @@ -86,18 +86,18 @@ void CommodityTestCase::testPriceHistory() assertEqual(string("$2124.122"), amt->to_fullstring()); #endif - amt = x1.value(false, CURRENT_TIME(), euro); + amt = x1.value(CURRENT_TIME(), euro); assertTrue(amt); assertEqual(string("EUR 1366.87"), amt->rounded().to_string()); // Add a newer Euro pricing aapl.add_price(jan17_07, amount_t("EUR 23.00")); - amt = x1.value(false, CURRENT_TIME(), euro); + amt = x1.value(CURRENT_TIME(), euro); assertTrue(amt); assertEqual(string("EUR 2302.30"), amt->to_string()); - amt = x1.value(false, CURRENT_TIME(), cad); + amt = x1.value(CURRENT_TIME(), cad); assertTrue(amt); assertEqual(string("CAD 3223.22"), amt->to_string()); #endif // NOT_FOR_PYTHON 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); diff --git a/test/unit/t_times.cc b/test/unit/t_times.cc index d8a67b43..aaf31263 100644 --- a/test/unit/t_times.cc +++ b/test/unit/t_times.cc @@ -22,8 +22,8 @@ void DateTimeTestCase::tearDown() void DateTimeTestCase::testConstructors() { #ifndef NOT_FOR_PYTHON - std::time_t now = std::time(NULL); - struct tm * moment = std::localtime(&now); + std::time_t now = std::time(NULL); + struct tm * moment = std::localtime(&now); std::time_t localMoment = std::mktime(moment); #endif // NOT_FOR_PYTHON |