-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDungeon Church; Rider-Waite Tarot.json
More file actions
1815 lines (1815 loc) · 70.5 KB
/
Copy pathDungeon Church; Rider-Waite Tarot.json
File metadata and controls
1815 lines (1815 loc) · 70.5 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
{
"_meta": {
"sources": [
{
"json": "DCTAROT",
"abbreviation": "DCTAROT",
"full": "Dungeon Church: Rider-Waite-Smith Tarot Deck",
"version": "0.9",
"url": "https://dungeon.church/rider-waite-tarot-deck-for-5etools",
"authors": [
"A.E. Waite","Pamela Colman Smith"
],
"convertedBy": [
"Dungeon Church"
],
"color": "ff2600",
"dateReleased": "1909-01-01"
}
],
"edition": "classic",
"dateAdded": 1748999500,
"dateLastModified": 1748999500
},
"deck": [
{
"name": "Rider-Waite Tarot Deck",
"source": "DCTAROT",
"cards": [
"The Fool|Rider-Waite Tarot Deck|DCTAROT",
"The Magician|Rider-Waite Tarot Deck|DCTAROT",
"The High Priestess|Rider-Waite Tarot Deck|DCTAROT",
"The Empress|Rider-Waite Tarot Deck|DCTAROT",
"The Emperor|Rider-Waite Tarot Deck|DCTAROT",
"The Hierophant|Rider-Waite Tarot Deck|DCTAROT",
"The Lovers|Rider-Waite Tarot Deck|DCTAROT",
"The Chariot|Rider-Waite Tarot Deck|DCTAROT",
"Strength|Rider-Waite Tarot Deck|DCTAROT",
"The Hermit|Rider-Waite Tarot Deck|DCTAROT",
"Wheel of Fortune|Rider-Waite Tarot Deck|DCTAROT",
"Justice|Rider-Waite Tarot Deck|DCTAROT",
"The Hanged Man|Rider-Waite Tarot Deck|DCTAROT",
"Death|Rider-Waite Tarot Deck|DCTAROT",
"Temperance|Rider-Waite Tarot Deck|DCTAROT",
"The Devil|Rider-Waite Tarot Deck|DCTAROT",
"The Tower|Rider-Waite Tarot Deck|DCTAROT",
"The Star|Rider-Waite Tarot Deck|DCTAROT",
"The Moon|Rider-Waite Tarot Deck|DCTAROT",
"The Sun|Rider-Waite Tarot Deck|DCTAROT",
"Judgement|Rider-Waite Tarot Deck|DCTAROT",
"The World|Rider-Waite Tarot Deck|DCTAROT",
"Ace of Wands|Rider-Waite Tarot Deck|DCTAROT",
"Two of Wands|Rider-Waite Tarot Deck|DCTAROT",
"Three of Wands|Rider-Waite Tarot Deck|DCTAROT",
"Four of Wands|Rider-Waite Tarot Deck|DCTAROT",
"Five of Wands|Rider-Waite Tarot Deck|DCTAROT",
"Six of Wands|Rider-Waite Tarot Deck|DCTAROT",
"Seven of Wands|Rider-Waite Tarot Deck|DCTAROT",
"Eight of Wands|Rider-Waite Tarot Deck|DCTAROT",
"Nine of Wands|Rider-Waite Tarot Deck|DCTAROT",
"Ten of Wands|Rider-Waite Tarot Deck|DCTAROT",
"Page of Wands|Rider-Waite Tarot Deck|DCTAROT",
"Knight of Wands|Rider-Waite Tarot Deck|DCTAROT",
"Queen of Wands|Rider-Waite Tarot Deck|DCTAROT",
"King of Wands|Rider-Waite Tarot Deck|DCTAROT",
"Ace of Cups|Rider-Waite Tarot Deck|DCTAROT",
"Two of Cups|Rider-Waite Tarot Deck|DCTAROT",
"Three of Cups|Rider-Waite Tarot Deck|DCTAROT",
"Four of Cups|Rider-Waite Tarot Deck|DCTAROT",
"Five of Cups|Rider-Waite Tarot Deck|DCTAROT",
"Six of Cups|Rider-Waite Tarot Deck|DCTAROT",
"Seven of Cups|Rider-Waite Tarot Deck|DCTAROT",
"Eight of Cups|Rider-Waite Tarot Deck|DCTAROT",
"Nine of Cups|Rider-Waite Tarot Deck|DCTAROT",
"Ten of Cups|Rider-Waite Tarot Deck|DCTAROT",
"Page of Cups|Rider-Waite Tarot Deck|DCTAROT",
"Knight of Cups|Rider-Waite Tarot Deck|DCTAROT",
"Queen of Cups|Rider-Waite Tarot Deck|DCTAROT",
"King of Cups|Rider-Waite Tarot Deck|DCTAROT",
"Ace of Swords|Rider-Waite Tarot Deck|DCTAROT",
"Two of Swords|Rider-Waite Tarot Deck|DCTAROT",
"Three of Swords|Rider-Waite Tarot Deck|DCTAROT",
"Four of Swords|Rider-Waite Tarot Deck|DCTAROT",
"Five of Swords|Rider-Waite Tarot Deck|DCTAROT",
"Six of Swords|Rider-Waite Tarot Deck|DCTAROT",
"Seven of Swords|Rider-Waite Tarot Deck|DCTAROT",
"Eight of Swords|Rider-Waite Tarot Deck|DCTAROT",
"Nine of Swords|Rider-Waite Tarot Deck|DCTAROT",
"Ten of Swords|Rider-Waite Tarot Deck|DCTAROT",
"Page of Swords|Rider-Waite Tarot Deck|DCTAROT",
"Knight of Swords|Rider-Waite Tarot Deck|DCTAROT",
"Queen of Swords|Rider-Waite Tarot Deck|DCTAROT",
"King of Swords|Rider-Waite Tarot Deck|DCTAROT",
"Ace of Pentacles|Rider-Waite Tarot Deck|DCTAROT",
"Two of Pentacles|Rider-Waite Tarot Deck|DCTAROT",
"Three of Pentacles|Rider-Waite Tarot Deck|DCTAROT",
"Four of Pentacles|Rider-Waite Tarot Deck|DCTAROT",
"Five of Pentacles|Rider-Waite Tarot Deck|DCTAROT",
"Six of Pentacles|Rider-Waite Tarot Deck|DCTAROT",
"Seven of Pentacles|Rider-Waite Tarot Deck|DCTAROT",
"Eight of Pentacles|Rider-Waite Tarot Deck|DCTAROT",
"Nine of Pentacles|Rider-Waite Tarot Deck|DCTAROT",
"Ten of Pentacles|Rider-Waite Tarot Deck|DCTAROT",
"Page of Pentacles|Rider-Waite Tarot Deck|DCTAROT",
"Knight of Pentacles|Rider-Waite Tarot Deck|DCTAROT",
"Queen of Pentacles|Rider-Waite Tarot Deck|DCTAROT",
"King of Pentacles|Rider-Waite Tarot Deck|DCTAROT"
],
"back": {
"type": "image",
"width": 0,
"height": 0,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-back.jpg"
},
"altText": "alt"
},
"entries": [
{
"type": "section",
"entries": [
"The {@link Rider-Waite Tarot|https://en.wikipedia.org/wiki/Rider%E2%80%93Waite_Tarot} is a widely popular deck for tarot card reading, first published by {@link William Rider & Son|https://en.wikipedia.org/wiki/Rider_(imprint)} in 1909, based on the instructions of academic and mystic {@link A. E. Waite|https://en.wikipedia.org/wiki/A._E._Waite} and illustrated by {@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}, both members of the {@link Hermetic Order of the Golden Dawn|https://en.wikipedia.org/wiki/Hermetic_Order_of_the_Golden_Dawn}. Also known as the Waite-Smith, Rider-Waite-Smith, or Rider Tarot, the deck has been published in numerous editions and inspired a wide array of variants and imitations. Estimates suggest over 100 million copies of the deck circulate across over 20 countries."
]
},
{
"type": "section",
"name": "Overview",
"entries": [
"The Rider-Waite tarot deck has 78 cards: 56 {@link Minor Arcana|https://en.wikipedia.org/wiki/Minor_Arcana}, and 22 {@link Major Arcana|https://en.wikipedia.org/wiki/Major_Arcana}. The Minor Arcana generally correspond to the suits of {@link Spanish|https://en.wikipedia.org/wiki/Spanish-suited_playing_cards} or {@link Italian playing cards|https://en.wikipedia.org/wiki/Italian_playing_cards}. The Major Arcana, corresponding to the {@link trump cards|https://en.wikipedia.org/wiki/Trump_(card_games)} of gaming tarot, have unique designs numbered from 0 ({@link The Fool|https://en.wikipedia.org/wiki/The_Fool_(tarot_card)}) to 21 ({@link The World|https://en.wikipedia.org/wiki/The_World_(tarot_card)}).",
"While the images are simple, the details and backgrounds feature abundant symbolism. Some imagery remains similar to that found in earlier decks, but overall the Waite-Smith card designs are substantially different from their predecessors. Christian imagery was removed from some cards, and added to others. For example, the 'Papess' became the 'High Priestess' and no longer features a Papal tiara. The 'Lovers' card, previously depicting a medieval scene of a clothed man and woman receiving a blessing from a noble or cleric was changed to a depiction of the naked {@link Adam and Eve|https://en.wikipedia.org/wiki/Adam_and_Eve} in the {@link Garden of Eden|https://en.wikipedia.org/wiki/Garden_of_Eden}, and the ace of cups featuring a dove carrying {@link Sacramental bread|https://en.wikipedia.org/wiki/Sacramental_bread}. The Minor Arcana are illustrated with allegorical scenes by Smith, where earlier decks, with a few rare exceptions, had simple designs for the Minor Arcana.",
"The symbols and imagery used in the deck were influenced by the 19th-century magician and occultist {@link Eliphas Levi|https://en.wikipedia.org/wiki/Eliphas_Levi}, as well as by the teachings of the {@link Hermetic Order of the Golden Dawn|https://en.wikipedia.org/wiki/Hermetic_Order_of_the_Golden_Dawn}. In order to accommodate the {@link astrological|https://en.wikipedia.org/wiki/Astrology} correspondences taught by the Golden Dawn, Waite introduced several innovations to the deck. He switched the order of the Strength and Justice cards so that Strength corresponded with {@link Leo|https://en.wikipedia.org/wiki/Leo_(astrology)} and Justice corresponded with {@link Libra|https://en.wikipedia.org/wiki/Libra_(astrology)}. He based '{@link the Lovers|https://en.wikipedia.org/wiki/The_Lovers}' card on Italian tarot decks, which have two persons and an angel, to reinforce its correspondence with {@link Gemini|https://en.wikipedia.org/wiki/Gemini_(astrology)}."
]
},
{
"type": "section",
"name": "The Major Arcana",
"entries": [
"The Major Arcana are the named cards in a {@link cartomantic tarot pack|https://en.wikipedia.org/wiki/Tarot#Cartomancy}. There are usually 22 such cards in a standard 78-card pack, typically numbered from 0 to 21 (or 1 to 21, with the Fool being left unnumbered). Although the cards correspond to the {@link trump cards|https://en.wikipedia.org/wiki/Tarot_card_game} of a pack used for playing tarot card game, the term 'Major Arcana' is rarely used by players and is typically associated exclusively with use for {@link divination|https://en.wikipedia.org/wiki/Divination} by {@link occultists|https://en.wikipedia.org/wiki/Occultist}."
]
},
{
"type": "section",
"name": "The Minor Arcana",
"entries": [
"The Minor Arcana, sometimes known as the Lesser Arcana, are the {@link suit cards|https://en.wikipedia.org/wiki/Suit_(cards)} in a {@link cartomantic tarot deck|https://en.wikipedia.org/wiki/Cartomancy}.",
"Cartomantic tarot cards emerged in France in the late 18th century, popularised by occultists such as {@link Etteilla|https://en.wikipedia.org/wiki/Etteilla}. The terms Major and Minor Arcana originate with {@link Jean-Baptiste Pitois|https://en.wikipedia.org/wiki/Jean-Baptiste_Pitois} (1811-1877), {@link nom de plume|https://en.wikipedia.org/wiki/Nom_de_plume} Paul Christian.",
"In their contemporary versions, the Minor Arcana are often illustrated—a convention popularized by the Rider-Waite tarot in 1910. Used in a tarot card reading in conjunction with the Major Arcana, the cards of the Minor Arcana suggest subtleties and details, and signify day-to-day insights."
]
},
"{@i Text from {@link Wikipedia|https://en.wikipedia.org/wiki/Rider%E2%80%93Waite_Tarot}}"
],
"hasCardArt": true
}
],
"card": [
{
"name": "Ace of Wands",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Wands",
"value": 1,
"valueName": "ace",
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-wands-1.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Inspiration, Creation, Energy}",
"The {@link Ace of Wands|https://en.wikipedia.org/wiki/Ace_of_Wands_(tarot_card)} symbolizes an initial burst of inspiration and the raw potential to create or initiate a new endeavor. It encourages embracing opportunities with enthusiasm and passion."
]
},
{
"name": "Two of Wands",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Wands",
"value": 2,
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-wands-2.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Planning, Decisions, Progress}",
"The {@link Two of Wands|https://en.wikipedia.org/wiki/Two_of_Wands} represents thoughtful planning and careful decision-making about the future. It suggests evaluating one's ambitions and setting clear intentions to progress toward goals."
]
},
{
"name": "Three of Wands",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Wands",
"value": 3,
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-wands-3.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Expansion, Exploration, Foresight}",
"The {@link Three of Wands|https://en.wikipedia.org/wiki/Three_of_Wands} indicates a time of growth and exploring broader horizons. It encourages anticipation and confidence as efforts begin to yield promising results."
]
},
{
"name": "Four of Wands",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Wands",
"value": 4,
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-wands-4.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Celebration, Harmony, Community}",
"The {@link Four of Wands|https://en.wikipedia.org/wiki/Four_of_Wands_(Tarot_card)} signifies celebration, joy, and communal harmony. It highlights enjoying milestones and fostering strong bonds within a supportive environment."
]
},
{
"name": "Five of Wands",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Wands",
"value": 5,
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-wands-5.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Competition, Conflict, Challenges}",
"The {@link Five of Wands|https://en.wikipedia.org/wiki/Five_of_Wands_(Tarot_card)} reflects a period of rivalry or minor conflicts that stimulate growth. It advises navigating these challenges constructively to foster personal improvement."
]
},
{
"name": "Six of Wands",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Wands",
"value": 6,
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-wands-6.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Victory, Recognition, Confidence}",
"The {@link Six of Wands|https://en.wikipedia.org/wiki/Six_of_Wands} symbolizes triumph and public acknowledgment of one's achievements. It emphasizes confidence gained through success and recognition."
]
},
{
"name": "Seven of Wands",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Wands",
"value": 7,
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-wands-7.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Defense, Perseverance, Standing Ground}",
"The {@link Seven of Wands|https://en.wikipedia.org/wiki/Seven_of_Wands} highlights perseverance and the need to defend one's position or beliefs. It suggests maintaining resolve in the face of opposition."
]
},
{
"name": "Eight of Wands",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Wands",
"value": 8,
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-wands-7.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Action, Speed, Movement}",
"The {@link Eight of Wands|https://en.wikipedia.org/wiki/Eight_of_Wands} represents rapid movement, swift changes, or quick progress. It urges readiness to act decisively and embrace momentum when opportunities arise."
]
},
{
"name": "Nine of Wands",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Wands",
"value": 9,
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-wands-8.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Resilience, Endurance, Caution}",
"The {@link Nine of Wands|https://en.wikipedia.org/wiki/Nine_of_Wands} symbolizes endurance and resilience despite past struggles. It advises remaining cautious yet persistent, acknowledging strength gained from previous trials."
]
},
{
"name": "Ten of Wands",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Wands",
"value": 10,
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-wands-10.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Burden, Responsibility, Completion}",
"The {@link Ten of Wands|https://en.wikipedia.org/wiki/Ten_of_Wands} indicates heavy responsibilities or burdens nearing completion. It emphasizes recognizing one's limits and seeking balance to avoid burnout."
]
},
{
"name": "Page of Wands",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Wands",
"value": 11,
"valueName": "page",
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-wands-page.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Exploration, Enthusiasm, Discovery}",
"The {@link Page of Wands|https://en.wikipedia.org/wiki/Page_of_Wands} embodies youthful curiosity and enthusiasm for discovery. It suggests openness to new experiences and eagerness to pursue creative ideas."
]
},
{
"name": "Knight of Wands",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Wands",
"value": 12,
"valueName": "knight",
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-wands-knight.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Adventure, Passion, Impulsivity}",
"The {@link Knight of Wands|https://en.wikipedia.org/wiki/Knight_of_Wands} represents an adventurous spirit driven by passion and impulsiveness. It encourages embracing new ventures with vigor but advises moderation to avoid recklessness."
]
},
{
"name": "Queen of Wands",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Wands",
"value": 13,
"valueName": "queen",
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-wands-queen.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Confidence, Charisma, Determination}",
"The {@link Queen of Wands|https://en.wikipedia.org/wiki/Queen_of_Wands} embodies self-assuredness, charm, and unwavering determination. She represents strong leadership and the ability to inspire and uplift others."
]
},
{
"name": "King of Wands",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Wands",
"value": 14,
"valueName": "king",
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-wands-king.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Leadership, Vision, Courage}",
"The {@link King of Wands|https://en.wikipedia.org/wiki/King_of_Wands} symbolizes visionary leadership, courage, and decisiveness. He encourages bold actions driven by clear vision and unwavering ambition."
]
},
{
"name": "Ace of Cups",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Cups",
"value": 1,
"valueName": "ace",
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-cups-1.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Love, Emotion, Intuition}",
"The {@link Ace of Cups|https://en.wikipedia.org/wiki/Ace_of_Cups} symbolizes emotional renewal, deep connections, and new feelings. It suggests openness to emotional experiences and the potential for fulfilling relationships."
]
},
{
"name": "Two of Cups",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Cups",
"value": 2,
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-cups-2.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Partnership, Unity, Harmony}",
"The {@link Two of Cups|https://en.wikipedia.org/wiki/Two_of_Cups} signifies mutual attraction and emotional unity. It emphasizes the importance of balanced partnerships and harmonious relationships built on mutual respect."
]
},
{
"name": "Three of Cups",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Cups",
"value": 3,
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-cups-3.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Celebration, Friendship, Community}",
"The {@link Three of Cups|https://en.wikipedia.org/wiki/Three_of_Cups} highlights joyous celebrations and the supportive bond of friendships. It suggests sharing happiness with others and strengthening social connections."
]
},
{
"name": "Four of Cups",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Cups",
"value": 4,
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-cups-4.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Contemplation, Apathy, Reevaluation}",
"The {@link Four of Cups|https://en.wikipedia.org/wiki/Four_of_Cups} represents introspection and reevaluating emotional satisfaction. It advises being mindful of apathy and appreciating existing opportunities."
]
},
{
"name": "Five of Cups",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Cups",
"value": 5,
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-cups-5.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Loss, Grief, Regret}",
"The {@link Five of Cups|https://en.wikipedia.org/wiki/Five_of_Cups} symbolizes emotional setbacks and mourning loss. It advises acknowledging grief but also encourages seeing potential and hope in what remains."
]
},
{
"name": "Six of Cups",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Cups",
"value": 6,
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-cups-6.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Nostalgia, Innocence, Reunion}",
"The {@link Six of Cups|https://en.wikipedia.org/wiki/Six_of_Cups} reflects nostalgic emotions and memories. It suggests reconnecting with the innocence of past experiences or reuniting with familiar comforts."
]
},
{
"name": "Seven of Cups",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Cups",
"value": 7,
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-cups-7.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Choices, Illusion, Imagination}",
"The {@link Seven of Cups|https://en.wikipedia.org/wiki/Seven_of_Cups} indicates multiple choices, imaginative possibilities, and potential illusions. It advises discernment in distinguishing between realistic goals and fanciful dreams."
]
},
{
"name": "Eight of Cups",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Cups",
"value": 8,
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-cups-8.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Withdrawal, Abandonment, Transition}",
"The {@link Eight of Cups|https://en.wikipedia.org/wiki/Eight_of_Cups} represents the emotional decision to move on from unfulfilling situations. It encourages seeking deeper meaning by leaving behind what no longer satisfies."
]
},
{
"name": "Nine of Cups",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Cups",
"value": 9,
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-cups-9.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Satisfaction, Wishes, Contentment}",
"The {@link Nine of Cups|https://en.wikipedia.org/wiki/Nine_of_Cups} signifies emotional fulfillment and satisfaction. It symbolizes achieving personal happiness and experiencing the joy of having one's wishes realized."
]
},
{
"name": "Ten of Cups",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Cups",
"value": 10,
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-cups-10.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Harmony, Family, Happiness}",
"The {@link Ten of Cups|https://en.wikipedia.org/wiki/Ten_of_Cups} embodies emotional harmony, happiness, and familial unity. It represents a period of peace and contentment shared with loved ones."
]
},
{
"name": "Page of Cups",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Cups",
"value": 11,
"valueName": "page",
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-cups-page.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Curiosity, Creativity, Sensitivity}",
"The {@link Page of Cups|https://en.wikipedia.org/wiki/Page_of_Cups} symbolizes youthful curiosity, creative exploration, and emotional sensitivity. It suggests being open to imaginative possibilities and intuitive insights."
]
},
{
"name": "Knight of Cups",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Cups",
"value": 12,
"valueName": "knight",
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-cups-knight.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Romance, Idealism, Adventure}",
"The {@link Knight of Cups|https://en.wikipedia.org/wiki/Knight_of_Cups} embodies romantic pursuit, emotional idealism, and adventurous spirit. It encourages pursuing dreams and embracing emotional experiences openly and passionately."
]
},
{
"name": "Queen of Cups",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Cups",
"value": 13,
"valueName": "queen",
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-cups-queen.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Compassion, Intuition, Empathy}",
"The {@link Queen of Cups|https://en.wikipedia.org/wiki/Queen_of_Cups} symbolizes deep emotional understanding, compassion, and empathy. She represents nurturing intuition and emotional guidance, creating harmonious connections."
]
},
{
"name": "King of Cups",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Cups",
"value": 14,
"valueName": "king",
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-cups-king.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Emotional Balance, Diplomacy, Wisdom}",
"The {@link King of Cups|https://en.wikipedia.org/wiki/King_of_Cups} embodies emotional maturity, balance, and diplomatic wisdom. He encourages managing emotions wisely and guiding others with compassionate understanding."
]
},
{
"name": "Ace of Swords",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Swords",
"value": 1,
"valueName": "ace",
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-swords-1.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Clarity, Truth, Breakthrough}",
"The {@link Ace of Swords|https://en.wikipedia.org/wiki/Ace_of_Swords} symbolizes clear thinking and decisive breakthroughs. It highlights the power of intellect and encourages truthful communication."
]
},
{
"name": "Two of Swords",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Swords",
"value": 2,
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-swords-2.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Indecision, Balance, Stalemate}",
"The {@link Two of Swords|https://en.wikipedia.org/wiki/Two_of_Swords} represents difficult decisions and internal conflict. It suggests the need to balance logic and emotions to move beyond a stalemate."
]
},
{
"name": "Three of Swords",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Swords",
"value": 3,
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-swords-3.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Heartbreak, Sorrow, Betrayal}",
"The {@link Three of Swords|https://en.wikipedia.org/wiki/Three_of_Swords} signifies emotional pain and sorrow. It represents confronting harsh truths and encourages healing through acknowledgment of pain."
]
},
{
"name": "Four of Swords",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Swords",
"value": 4,
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-swords-4.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Rest, Recovery, Reflection}",
"The {@link Four of Swords|https://en.wikipedia.org/wiki/Four_of_Swords} symbolizes rest and recuperation. It advises taking time for recovery and deep reflection after periods of stress or conflict."
]
},
{
"name": "Five of Swords",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Swords",
"value": 5,
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-swords-5.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Conflict, Defeat, Self-interest}",
"The {@link Five of Swords|https://en.wikipedia.org/wiki/Five_of_Swords} reflects conflict and difficult victories. It cautions against actions driven by self-interest that may harm relationships or integrity."
]
},
{
"name": "Six of Swords",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Swords",
"value": 6,
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-swords-6.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Transition, Release, Moving On}",
"The {@link Six of Swords|https://en.wikipedia.org/wiki/Six_of_Swords} represents moving away from difficulties toward calmer conditions. It encourages embracing transitions and leaving behind past hardships."
]
},
{
"name": "Seven of Swords",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Swords",
"value": 7,
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-swords-7.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Deception, Strategy, Resourcefulness}",
"The {@link Seven of Swords|https://en.wikipedia.org/wiki/Seven_of_Swords} symbolizes clever strategy or deception. It advises caution and awareness, highlighting the importance of integrity despite temptations."
]
},
{
"name": "Eight of Swords",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Swords",
"value": 8,
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-swords-7.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Restriction, Imprisonment, Powerlessness}",
"The {@link Eight of Swords|https://en.wikipedia.org/wiki/Eight_of_Swords} represents feelings of restriction or helplessness. It emphasizes recognizing self-imposed limitations and finding ways to regain personal freedom."
]
},
{
"name": "Nine of Swords",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Swords",
"value": 9,
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-swords-8.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Anxiety, Fear, Worry}",
"The {@link Nine of Swords|https://en.wikipedia.org/wiki/Nine_of_Swords} signifies intense anxiety and fear. It advises confronting inner worries directly to overcome their influence and regain emotional stability."
]
},
{
"name": "Ten of Swords",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Swords",
"value": 10,
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-swords-10.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Endings, Defeat, Renewal}",
"The {@link Ten of Swords|https://en.wikipedia.org/wiki/Ten_of_Swords} symbolizes a painful but definitive ending. It highlights the necessity of accepting closure to facilitate renewal and recovery."
]
},
{
"name": "Page of Swords",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Swords",
"value": 11,
"valueName": "page",
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-swords-page.jpg"
},
"credit": "{@link Pamela Colman Smith|https://en.wikipedia.org/wiki/Pamela_Colman_Smith}"
},
"entries": [
"{@i Curiosity, Alertness, Communication}",
"The {@link Page of Swords|https://en.wikipedia.org/wiki/Page_of_Swords} embodies youthful curiosity, alertness, and clear communication. It encourages asking questions and gathering information to build understanding."
]
},
{
"name": "Knight of Swords",
"source": "DCTAROT",
"set": "Rider-Waite Tarot Deck",
"suit": "Swords",
"value": 12,
"valueName": "knight",
"face": {
"type": "image",
"width": 1920,
"height": 1112,
"href": {
"type": "external",
"url": "https://objectstorage.us-sanjose-1.oraclecloud.com/n/axhus520kaxe/b/dungeonchurch-content/o/5e/tarot/tarot-swords-knight.jpg"