-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathLuxuryFurnisher.lua
More file actions
2335 lines (2310 loc) · 55.9 KB
/
LuxuryFurnisher.lua
File metadata and controls
2335 lines (2310 loc) · 55.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
FurC.LuxuryFurnisher = FurC.LuxuryFurnisher or {}
local ver = FurC.Constants.Versioning
-- 35 Fallen Banners
FurC.LuxuryFurnisher[ver.FALLBAN] = {
[210886] = { -- Orcish Gateway, City
itemPrice = 4500,
itemDate = "2025-03-14",
},
}
-- 30 Gold Road
FurC.LuxuryFurnisher[ver.WEALD] = {
[204632] = { -- Dwarven Archway, Temple",
itemPrice = 4500,
itemDate = "2024-11-08",
},
[204629] = { -- Dwarven Statue, Guardian",
itemPrice = 20000,
itemDate = "2024-10-04",
},
[204628] = { -- Apocrypha Statue, Lurker's Maw
itemPrice = 15000, -- Gold
itemDate = "2024-09-27",
},
[204627] = { -- Coldharbour Column, Skulls",
itemPrice = 15000, -- Gold
itemDate = "2024-09-20",
},
[204626] = { -- Coldharbour Gravestone, Etched",
itemPrice = 4000,
itemDate = "2024-09-13",
},
}
-- 29 Scions of Ithelia
FurC.LuxuryFurnisher[ver.SCIONS] = {
[203595] = { -- Vampiric Cage, Hanging
itemPrice = 8000,
itemDate = "2024-09-06",
},
[203594] = { -- Druidic Cage, Ivy
itemPrice = 8000,
itemDate = "2024-08-30",
},
[203593] = { -- Deadlands Brazier
itemPrice = 10000,
itemDate = "2024-08-23",
},
[203592] = { -- Orc Brazier
itemPrice = 12000,
itemDate = "2024-08-16",
},
[203591] = { -- Flowers, Dibella's Tears
itemPrice = 2000,
itemDate = "2024-08-09",
},
[203590] = { -- Flowers, Snowspray
itemPrice = 10000,
itemDate = "2024-08-02",
},
[203589] = { -- Festering Coral, Large Crimson-Orange
itemPrice = 5000,
itemDate = "2024-07-26",
},
[203588] = { -- Alinor Boat, Unfinished
itemPrice = 4500,
itemDate = "2024-07-19",
},
[203587] = { -- Redguard Colonnade, Mosaic
itemPrice = 80000,
itemDate = "2024-07-12",
},
[203586] = { -- Redguard Archway, Brass
itemPrice = 3000,
itemDate = "2024-07-05",
},
[203585] = { -- Alinor Maple, Large Red
itemPrice = 10000,
itemDate = "2024-06-28",
},
[203584] = { -- Altmer Stable, Summerset
itemPrice = 60000,
itemDate = "2024-06-21",
},
[203583] = { -- Ayleid Panel, Arched
itemPrice = 10000,
itemDate = "2024-06-14",
},
[203582] = { -- Ayleid Doorway, Tall Arched
itemPrice = 20000,
itemDate = "2024-06-07",
},
}
-- 28 Secrets of the Telvanni
FurC.LuxuryFurnisher[ver.ENDLESS] = {
[203151] = { -- Falmer Gate, Stick
itemPrice = 3000,
itemDate = "2024-05-31",
},
[203150] = { -- Falmer Fence, Stick
itemPrice = 200,
itemDate = "2024-05-24",
},
[203149] = { -- Redguard Seal, Spider
itemPrice = 8000,
itemDate = "2024-05-17",
},
[203148] = { -- Argonian Puzzle Totem, Head
itemPrice = 3500,
itemDate = "2024-05-10",
},
[203147] = { -- Shelf, Folded Laundry
itemDate = "2024-04-26",
itemPrice = 300,
},
[203146] = { -- Wood Elf Banner, Mages Guild
itemPrice = 12000,
itemDate = "2024-04-19",
},
[203145] = { -- Banner, Foodhall
itemPrice = 450,
itemDate = "2024-04-12",
},
[203144] = { -- Clockwork Illuminator Holder
itemPrice = 65000,
itemDate = "2024-04-05",
},
[203143] = { -- Clockwork Stairway, Spiral
itemPrice = 65000,
itemDate = "2024-03-29",
},
[203142] = { -- Skeleton, Whale Spine
itemPrice = 15000,
itemDate = "2024-03-22",
},
[203141] = { -- Skeleton, Daedric Titan
itemPrice = 200000,
itemDate = "2024-03-15",
},
[203140] = { -- Orcish Banner, Golkarr
itemPrice = 15000,
itemDate = "2024-03-08",
},
[203139] = { -- Orcish Stable, Orsinium
itemPrice = 150000,
itemDate = "2025-03-14",
},
[203134] = { -- Wedding Planter, Octagonal
itemPrice = 20000,
itemDate = "2024-02-09",
},
[203137] = { -- Apocrypha Plant, Crimson
itemPrice = 3000,
itemDate = "2024-02-02",
},
[203136] = { -- Reach Totem, Mammoth Rib
itemPrice = 4500,
itemDate = "2024-01-26",
},
[199122] = { -- Redguard Bottle, Glowing
itemPrice = 15000,
itemDate = "2024-05-03",
},
}
-- 27 Base Game Patch
FurC.LuxuryFurnisher[ver.BASED] = {
[198052] = { -- Dwarven Lamp, Reachfolk Adorned
itemPrice = 15000,
itemDate = "2024-01-19",
},
[198046] = { -- Nedic Banner, Forest
itemPrice = 12000,
itemDate = "2024-01-12",
},
[198045] = { -- Nedic Banner, Ancestral
itemPrice = 12000,
itemDate = "2024-01-05",
},
[198042] = { -- Glass Crystal, Opaque Cluster
itemPrice = 4500,
itemDate = "2023-12-29",
},
[198053] = { -- Dais, Bloodmage Crystal
itemPrice = 100000,
itemDate = "2023-12-22",
},
[198056] = { -- Necrom Urn, Blue Elegant
itemPrice = 12000,
itemDate = "2023-12-15",
},
[198055] = { -- Necrom Funerary Offering, Mushrooms
itemPrice = 800,
itemDate = "2023-12-08",
},
[198054] = { -- Necrom Funerary Pyre, Logs
itemPrice = 6000,
itemDate = "2023-12-08",
},
[198049] = { -- Elsweyr Door, Lunar Reverence
itemPrice = 50000,
itemDate = "2023-12-01",
},
[198050] = { -- Trapdoor, Dragonguard
itemPrice = 20000,
itemDate = "2023-11-24",
},
[198044] = { -- Mushroom, Gray Spike Cluster
itemPrice = 1500,
itemDate = "2023-11-17",
},
[198043] = { -- Plants, Gnisis Pitcher Cluster
itemPrice = 450,
itemDate = "2023-11-10",
},
[198058] = { -- Reach Totem, Twig Symbol
itemPrice = 2500,
itemDate = "2023-11-03",
},
[198057] = { -- Reach Totem, Twig Raven
itemPrice = 3000,
itemDate = "2023-10-27",
},
[198096] = { -- Daedric Sarcophagus, Metal
itemPrice = 30000,
itemDate = "2023-10-20",
},
[198047] = { -- Coldharbour Column, Molag Bal Rotating
itemPrice = 35000,
itemDate = "2023-10-13",
},
[198051] = { -- Dwarven Puzzle Cube, Mage Ascendant
itemPrice = 20000,
itemDate = "2023-10-06",
},
}
-- 26 Necrom
FurC.LuxuryFurnisher[ver.NECROM] = {
[198048] = { -- Markarth Barrier, Low
itemPrice = 18000,
itemDate = "2024-11-08",
},
[196214] = { -- Order of the Hour Rug, Winged",
itemPrice = 15000,
itemDate = "2023-09-22",
},
[196213] = { -- Door, Dark Brotherhood Sanctuary",
itemPrice = 50000,
itemDate = "2023-09-15",
},
[196212] = { -- Apocrypha Statue, Mouth of Mora",
itemPrice = 17500,
itemDate = "2024-10-04",
},
[196211] = { -- Apocrypha Statue, Lurker",
itemPrice = 22500,
itemDate = "2024-09-27",
},
[196210] = { -- Necrom Coffin",
itemPrice = 17000,
itemDate = "2024-09-20",
},
[196209] = { -- Sarcophagus, Stone Lid"
itemPrice = 4500,
itemDate = "2024-09-13",
},
[196208] = { -- Sarcophagus, Stone Base",
itemPrice = 3500,
itemDate = "2024-09-13",
},
[196207] = { -- Daedric Turret, Flame Tower",
itemPrice = 35000,
itemDate = "2024-09-06",
},
[196206] = { -- Daedric Post, Spike"
itemPrice = 3000,
itemDate = "2024-08-30",
},
[196204] = { -- Blackwood Brazier, Cold-Flame",
itemPrice = 15000,
itemDate = "2024-08-16",
},
[193806] = { -- Redguard Window, Iron Lattice,
itemPrice = 20000,
itemDate = "2024-07-12",
},
[193805] = { -- Yokudan Sarcophagus Base, Gilded,
itemPrice = 25000,
itemDate = "2024-07-05",
},
[193791] = { -- Palm, Blooming Tropical,
itemPrice = 4500,
itemDate = "2024-08-02",
},
[193790] = { -- Festering Coral, Crimson-Orange,
itemPrice = 4000,
itemDate = "2024-07-26",
},
[193789] = { -- Gonfalon Bay Dockside Bell,
itemPrice = 18000,
itemDate = "2024-07-19",
},
}
-- 25 Scribes of Fate
FurC.LuxuryFurnisher[ver.SCRIBE] = {
[196205] = { -- Systres Brazier, Cold-Flame"
itemPrice = 20000,
itemDate = "2024-08-23",
},
[193804] = { -- High Elf Wine Pot,
itemPrice = 18000,
itemDate = "2024-06-28",
},
[193803] = { -- Tree, Large Pink Maple,
itemPrice = 13000,
itemDate = "2024-06-21",
},
[193802] = { -- Ayleid Constellation Stele, The Steed,
itemPrice = 20000,
itemDate = "2024-06-14",
},
[193801] = { -- Ayleid Partition, Arched,
itemPrice = 20000,
itemDate = "2024-06-07",
},
[193800] = { -- Falmer Tent, Conical,
itemPrice = 4000,
itemDate = "2024-05-31",
},
[193799] = { -- Falmer Hut, Long,
itemPrice = 14000,
itemDate = "2024-05-24",
},
[193798] = { -- Wrothgar Puzzle Cube, Hunter,
itemPrice = 20000,
itemDate = "2024-05-17",
},
[193797] = { -- Wrothgar Puzzle Cube, Mountains,
itemPrice = 20000,
itemDate = "2024-05-10",
},
[192579] = { -- Common Crate, Fabric Bolts",
itemPrice = 4000,
itemDate = "2024-04-26",
},
[192572] = { -- Inn Sign, Hanging
itemPrice = 4000,
itemDate = "2024-04-12",
},
[192571] = { -- Grahtwood Banner, Hanging Inn
itemPrice = 4000,
itemDate = "2024-04-19",
},
[192569] = { -- Alchemy Shelves, Filled
itemPrice = 4000,
itemDate = "2024-05-03",
},
}
-- 24 Firesong
FurC.LuxuryFurnisher[ver.DRUID] = {
[193792] = { -- Plant, Galen Palm Cluster,
itemPrice = 2000,
itemDate = "2024-08-09",
},
[192583] = { -- Clockwork Planter, Brassbloom
itemPrice = 7000,
itemDate = "2024-03-29",
},
[192582] = { -- Vines, Nirncrux
itemPrice = 12000,
itemDate = "2024-01-19",
},
[192581] = { -- Reachfolk Banner, Ice Witch
itemPrice = 2000,
itemDate = "2024-01-26",
},
[192580] = { -- Redguard Archway, Four-Column
itemPrice = 50000,
itemDate = "2023-02-11",
},
[203135] = { -- Redguard Dome, Mosaic
itemPrice = 90000,
itemDate = "2024-02-18",
},
[192578] = { -- Orsinium Well, Snowy Grated
itemPrice = 10000,
itemDate = "2024-03-08",
},
[192577] = { -- Orsinium Statue Base
itemPrice = 4000,
itemDate = "2025-03-14",
},
[192576] = { -- Druidic Totem, Animal
itemPrice = 3500,
itemDate = "2024-03-22",
},
[192575] = { -- Nedic Banner, Blood
itemPrice = 4000,
itemDate = "2024-01-12",
},
[192574] = { -- Banner, Boethiah Standard
itemPrice = 12000,
itemDate = "2024-01-05",
},
[192573] = { -- Clockwork Illuminator, Spot
itemPrice = 14000,
itemDate = "2024-04-05",
},
[192570] = { -- Decorative Wall Drape, Mauve
itemPrice = 3000,
itemDate = "2024-02-09",
},
[192568] = { -- Fargrave Stall, Bone Merchant
itemPrice = 30000,
itemDate = "2024-03-15",
},
[192567] = { -- Fuchsia Hosta
itemPrice = 2000,
itemDate = "2023-01-14",
},
[192566] = { -- Tree, Small Palm
itemPrice = 3000,
itemDate = "2024-02-02",
},
[189482] = { -- Bone Sconce, Arm
itemPrice = 4000,
itemDate = "2023-11-03",
},
[189480] = { -- Bloodmage Crystal, Oblong
itemPrice = 4000,
itemDate = "2023-12-29",
},
[189479] = { -- Bloodmage Crystal, Oval
itemPrice = 4000,
itemDate = "2023-12-22",
},
[189476] = { -- Velothi Altar, Small
itemPrice = 4000,
itemDate = "2023-12-15",
},
[189475] = { -- Mummy, Skyward Gazing
itemPrice = 6500,
itemDate = "2023-12-08",
},
}
-- 23 Lost Depths
FurC.LuxuryFurnisher[ver.DEPTHS] = {
[189481] = { -- Bone Sculpture, Circular
itemPrice = 3000,
itemDate = "2023-10-27",
},
[189478] = { --Elsweyr Moon Reflection Tower, Base
itemPrice = 30000,
itemDate = "2023-12-01",
},
[189477] = { -- Elsweyr Window, Ritual
itemPrice = 10000,
itemDate = "2023-11-24",
},
[189474] = { -- Vvardenfell Anemone, Basket
itemPrice = 3500,
itemDate = "2023-11-17",
},
[189473] = { -- Elkhorn Coral, Verdant Sapling
itemPrice = 800,
itemDate = "2023-11-10",
},
[187796] = { -- Deadlands Brazier, Four-Flame
itemPrice = 35000,
itemDate = "2023-10-20",
},
[187795] = { -- Deadlands Cage, Short
itemPrice = 8000,
itemDate = "2023-10-13",
},
[187794] = { -- Dwarven Crystal Brazier, Amber
itemPrice = 40000,
itemDate = "2023-10-06",
},
[187793] = { -- Blackreach Gate, Large
itemPrice = 30000,
itemDate = "2024-11-08",
},
[187792] = { -- Imperial Archway, Cemetery
itemPrice = 15000,
itemDate = "2023-09-22",
},
}
-- 21 Ascending Tide
FurC.LuxuryFurnisher[ver.TIDES] = {
[187791] = { -- Anvil Banner, Large
itemPrice = 12000,
itemDate = "2023-09-15",
},
[187790] = { -- Statue, Stendarr
itemPrice = 35000,
itemDate = "2024-10-04",
},
[187789] = { -- Daedric Statue, Mephala
itemPrice = 25000,
itemDate = "2024-09-27",
},
[187788] = { -- Skull Candles, Triple
itemPrice = 10000,
itemDate = "2024-09-20",
},
[187787] = { -- Mausoleum Pillar, Tall
itemPrice = 10000,
itemDate = "2024-09-13",
},
[187786] = { -- Rubble Pile, Skeletal Remains
itemPrice = 4000,
itemDate = "2024-09-06",
},
[187785] = { -- Vampiric Table, Flat Exsanguination
itemPrice = 35000,
itemDate = "2024-08-30",
},
[184202] = { -- Altmer Brazier, Cold-Flame Column
itemPrice = 20000,
itemDate = "2024-08-23",
},
[184201] = { -- Elsweyr Brazier, Cold-Flame Column
itemPrice = 20000,
itemDate = "2024-08-16",
},
[184200] = { -- Mushroom, Giant Glowtendril
itemPrice = 20000,
itemDate = "2024-08-09",
},
[184199] = { -- Mushroom, Twisted Tufted Cap
itemPrice = 4500,
itemDate = "2024-08-02",
},
[184198] = { -- Coral Formation, Branching Red Cluster,
itemPrice = 1000,
itemDate = "2024-07-26",
},
[184197] = { -- Canopy, Netted,
itemPrice = 4000,
itemDate = "2024-07-19",
},
[184196] = { -- Redguard Canopy, Striped
itemPrice = 5000,
itemDate = "2024-07-12",
},
[184195] = { -- Yokudan Sarcophagus Lid, Gilded
itemPrice = 35000,
itemDate = "2024-07-05",
},
[184194] = { -- Alinor Maple, Red
itemPrice = 4000,
itemDate = "2024-06-28",
},
[184193] = { -- Alinor Trellis, Purple Wisteria
itemPrice = 15000,
itemDate = "2024-06-21",
},
[182630] = { -- Ayleid Constellation Stele, The Lord
itemPrice = 20000,
itemDate = "2024-06-14",
},
[182629] = { -- Ayleid Brazier, Stone
itemPrice = 10000,
itemDate = "2024-06-07",
},
[182628] = { -- Riekr Tent, Snowy
itemPrice = 3500,
itemDate = "2024-05-31",
},
[182627] = { -- Hovel, Rock
itemPrice = 4500,
itemDate = "2024-05-24",
},
[182626] = { -- Orcish Seal, Mountains
itemPrice = 3000,
itemDate = "2024-05-17",
},
[182625] = { -- Orcish Seal, Torch
itemPrice = 3000,
itemDate = "2024-05-10",
},
}
-- 20 Deadlands
FurC.LuxuryFurnisher[ver.DEADL] = {
[182632] = { -- Redguard Brazier, Stone Marker
itemPrice = 15000,
itemDate = "2023-02-11",
},
[182631] = { -- Redguard Seal
itemPrice = 3000,
itemDate = "2024-02-09",
},
[182624] = { -- Clockwork Coffer, Vertical
itemPrice = 4000,
itemDate = "2024-05-03",
},
[182623] = { -- Rugs, Rolled
itemPrice = 2500,
itemDate = "2024-04-26",
},
[182622] = { -- Grahtwood Fighters Guild Sign
itemPrice = 12000,
itemDate = "2024-04-19",
},
[182621] = { -- Mystic's Banner
itemPrice = 4000,
itemDate = "2024-04-12",
},
[182620] = { -- Clockwork Door, Arched
itemPrice = 25000,
itemDate = "2024-04-05",
},
[182619] = { -- Clockwork Altar, Devotional
itemPrice = 15000,
itemDate = "2024-03-29",
},
[182618] = { -- Nord Stone, Marked,
itemPrice = 4000,
itemDate = "2024-03-22",
},
[182617] = { -- Unidentified Fargrave Bones
itemPrice = 9000,
itemDate = "2024-03-15",
},
[182616] = { -- Orcish Banner, Iron,
itemPrice = 12000,
itemDate = "2024-03-08",
},
[182615] = { -- Pedestal, Etched Stone
itemPrice = 3000,
itemDate = "2025-03-14",
},
[182614] = { -- Vine, Flowering Wyrdbloom Strand
itemPrice = 700,
itemDate = "2023-01-14",
},
[182613] = { -- Bush, Flowering Ivy
itemPrice = 2000,
itemDate = "2024-02-02",
},
[181541] = { -- Reach Standard, Weathered
itemPrice = 4000,
itemDate = "2024-01-26",
},
[181540] = { -- Nedic Skull Relief, Half
itemPrice = 20000,
itemDate = "2024-01-19",
},
[181539] = { -- Nedic Archway, Worn
itemPrice = 15000,
itemDate = "2024-01-12",
},
[181538] = { -- Nedic Altar, Worn
itemPrice = 3000,
itemDate = "2024-01-05",
},
[181537] = { -- Geode, Citrine
itemPrice = 20000,
itemDate = "2023-12-29",
},
[167352] = { -- Pelt, Fox
itemPrice = 2500,
itemDate = "2024-03-22",
},
[167351] = { -- Crocodile Skeleton, Complete
itemPrice = 9000,
itemDate = "2024-03-15",
},
[167348] = { -- Orcish Figurine, Bear
itemPrice = 12000,
itemDate = "2024-03-08",
},
[167347] = { -- Orcish Figurine, Mammoth
itemPrice = 12000,
itemDate = "2025-03-14",
},
[167346] = { -- Vines, Flowering Wyrdbloom
itemPrice = 4000,
itemDate = "2023-01-14",
},
[167345] = { -- Fern, Cyan Cluster
itemPrice = 4000,
itemDate = "2024-02-02",
},
[167344] = { -- Reachfolk Banner, Moonburst
itemPrice = 4000,
itemDate = "2024-01-26",
},
[167343] = { -- Stone, Nirncrux-Laden
itemPrice = 10000,
itemDate = "2024-01-19",
},
[166007] = { -- Ancient Nord Prayer Wheel Frame, Engraved
itemPrice = 20000,
itemDate = "2024-01-12",
},
[166006] = { -- Ancient Nord Prayer Wheel, Four-Faced
itemPrice = 25000,
itemDate = "2024-01-05",
},
[166005] = { -- Geode, Green Garnet
itemPrice = 20000,
itemDate = "2023-12-29",
},
[153696] = { -- Taxidermy, Bird of Prey
itemPrice = 2500,
itemDate = "2024-03-22",
},
[153692] = { -- Orsinium Well, Covered
itemPrice = 20000,
itemDate = "2024-03-08",
},
[153691] = { -- Orsinium Sarcophagus, Honor's Rest
itemPrice = 25000,
itemDate = "2025-03-14",
},
[153690] = { -- Flower Cluster, Wyrdbloom
itemPrice = 4000,
itemDate = "2023-01-14",
},
[153689] = { -- Fern, Cyan
itemPrice = 2500,
itemDate = "2024-02-02",
},
[151954] = { -- Reachmen Banner, Bull
itemPrice = 4000,
itemDate = "2024-01-26",
},
[151953] = { -- Reikling Totem, Skull (sic)
itemPrice = 1000,
itemDate = "2024-01-19",
},
[151952] = { -- Nedic Stand, Ritual
itemPrice = 4000,
itemDate = "2024-01-12",
},
[151951] = { -- Nedic Orb, Ritual
itemPrice = 20000,
itemDate = "2024-01-05",
},
[151950] = { -- Khajiit Path Marker, Lion
itemPrice = 75000,
itemDate = "2023-12-29",
},
[141762] = { -- Animal Trap, Welded Open
itemPrice = 2500,
itemDate = "2024-03-22",
},
[141759] = { -- Orcish Gazebo, Orsinium
itemPrice = 20000,
itemDate = "2024-03-08",
},
[141758] = { -- Orcish Wagon, Merchant
itemPrice = 15000,
itemDate = "2025-03-14",
},
[141757] = { -- Mushrooms, Climbing Aether Cup
itemPrice = 5000,
itemDate = "2023-01-14",
},
[141756] = { -- Mushrooms, Aether Cup Cluster
itemPrice = 10000,
itemDate = "2023-01-14",
},
[141755] = { -- Mushrooms, Aether Cup Ring
itemPrice = 10000,
itemDate = "2023-01-14",
},
[141754] = { -- Skull Totem, Hircine Worship
itemPrice = 7500,
itemDate = "2024-02-02",
},
[141753] = { -- Plants, Cerulean Spadeleaf Cluster
itemPrice = 2500,
itemDate = "2024-02-02",
},
[141752] = { -- Plant, Cerulean Spadeleaf
itemPrice = 1000,
itemDate = "2024-02-02",
},
[139106] = { -- Reach Briarheart, Corpse Blue
itemPrice = 15000,
itemDate = "2024-01-26",
},
[139105] = { -- Reach Grinding Stones, Nirncrux
itemPrice = 4500,
itemDate = "2024-01-19",
},
[139104] = { -- Craglorn Relief, Serpent
itemPrice = 20000,
itemDate = "2024-01-12",
},
[139103] = { -- Craglorn Display Case, Sealed
itemPrice = 10000,
itemDate = "2024-01-05",
},
[139102] = { -- Blue Crystal Spire, Large
itemPrice = 18000,
itemDate = "2023-12-29",
},
[132152] = { -- Orsinium Sarcophagus, Warrior's
itemPrice = 35000,
itemDate = "2024-03-08",
},
[132151] = { -- Orsinium Totem, Obedience
itemPrice = 20000,
itemDate = "2024-03-08",
},
[132150] = { -- Orsinium Totem, Honor
itemPrice = 20000,
itemDate = "2024-03-08",
},
[132149] = { -- Orsinium Totem, Strength
itemPrice = 20000,
itemDate = "2024-03-08",
},
[132148] = { -- Orsinium Statue, Head
itemPrice = 25000,
itemDate = "2025-03-14",
},
[132147] = { -- Orsinium Statue, Honor’s Rest
itemPrice = 25000,
itemDate = "2025-03-14",
},
[132146] = { -- Orsinium Relief, Malacath
itemPrice = 25000,
itemDate = "2025-03-14",
},
[132145] = { -- Orsinium Tent, Chief’s
itemPrice = 15000,
itemDate = "2025-03-14",
},
[132144] = { -- Reach Briarheart, Blood Red
itemPrice = 15000,
itemDate = "2024-01-26",
},
[132142] = { -- Reach Tent, Camp
itemPrice = 2500,
itemDate = "2024-01-26",
},
[132141] = { -- Reach Skull, Mammoth
itemPrice = 50000,
itemDate = "2024-01-26",
},
[131438] = { -- Reach Grinder, Nirncrux
itemPrice = 50000,
itemDate = "2024-01-19",
},
[131437] = { -- Reach Vine, Bloodroot Tendril
itemPrice = 25000,
itemDate = "2024-01-19",
},
[131436] = { -- Reach Vine, Bloodroot Sprout
itemPrice = 15000,
itemDate = "2024-01-19",
},
[131435] = { -- Reach Bowl, Nirncrux
itemPrice = 5000,
itemDate = "2024-01-19",
},
[121272] = { -- Soul Gem, Great
itemPrice = 20000,
itemDate = "2023-12-29",
},
[120845] = { -- Craglorn Sword Sconce
itemPrice = 5000,
itemDate = "2024-01-12",
},
[120844] = { -- Craglorn Brazier, Ornate
itemPrice = 15000,
itemDate = "2024-01-12",
},
[120843] = { -- Craglorn Skull, Carved
itemPrice = 35000,
itemDate = "2024-01-12",
},
[120842] = { -- Craglorn Chair, Serpent
itemPrice = 2500,
itemDate = "2024-01-05",
},
[120841] = { -- Craglorn Urn, Standing
itemPrice = 7500,
itemDate = "2024-01-05",
},
[120840] = { -- Craglorn Coffer, Ornate
itemPrice = 5000,
itemDate = "2024-01-05",
},
[120834] = { -- Blue Flame Brazier
itemPrice = 5000,
itemDate = "2023-12-29",
},
[120832] = { -- Blue Crystal Spire
itemPrice = 12000,
itemDate = "2023-12-29",
},
[118292] = { -- Elk Head, Wall Mount
itemPrice = 20000,
itemDate = "2024-03-22",
},
[118285] = { -- Carcass, Fresh Pheasant
itemPrice = 7500,
itemDate = "2024-03-22",
},
[118243] = { -- Tapestry, Echatere Pelt
itemPrice = 25000,
itemDate = "2024-03-22",
},
[116506] = { -- Orcish Grand Table with Skins
itemPrice = 50000,
itemDate = "2024-03-22",
},
}
-- 19 Blackwood
FurC.LuxuryFurnisher[ver.BLACKW] = {
[181543] = { -- Harpy Totem, Feathered
itemPrice = 7000,
itemDate = "2023-11-03",
},
[181542] = { -- Crow Totem, Gruesome
itemPrice = 4000,
itemDate = "2023-10-27",
},
[181536] = { -- Blue Crystal Cluster, Medium
itemPrice = 10000,
itemDate = "2023-12-22",
},
[181535] = { -- Mummy, Bound
itemPrice = 8000,
itemDate = "2023-12-15",
},
[181534] = { -- Funerary Urn, Broken
itemPrice = 4000,
itemDate = "2023-12-08",
},
[181533] = { -- Mummy, Scroll Guardian
itemPrice = 8000,
itemDate = "2023-12-08",
},
[175769] = { -- Lunar Reflector, Dormant
itemPrice = 40000,
itemDate = "2023-12-01",
},
[175768] = { -- Dragonguard Brazier, Empty
itemPrice = 30000,
itemDate = "2023-11-24",
},
[175767] = { -- Flowers, Reed Mace
itemPrice = 3000,
itemDate = "2023-11-17",
},
[175766] = { -- Mushroom, Glowing Trumpet
itemPrice = 1000,
itemDate = "2023-11-10",
},
[175765] = { -- Tapestry of a Failed Incarnate, The Brute
itemPrice = 20000,
itemDate = "2023-10-20",
},
[175764] = { -- Egg, Gruesome
itemPrice = 3000,
itemDate = "2023-10-13",
},
[175763] = { -- Dwarven Urn, Masks
itemPrice = 8000,
itemDate = "2023-10-06",
},
[175762] = { -- Dwarven Hatch, Sealed
itemPrice = 12000,
itemDate = "2024-11-08",
},
[175761] = { -- Imperial Curtains, Heavy
itemPrice = 12000,
itemDate = "2023-09-22",
},
[175760] = { -- Banner, Anvil
itemPrice = 4000,
itemDate = "2023-09-15",
},
[171833] = { -- Dark Elf Statue, St. Delyn
itemPrice = 35000,
itemDate = "2024-10-04",
},
[171832] = { -- Dark Elf Statue, St. Olms
itemPrice = 35000,
itemDate = "2024-09-27",
},
[171831] = { --Mad Architect's Medallion
itemPrice = 2500,