diff --git a/CMakeLists.txt b/CMakeLists.txt index a9411a8..eea4255 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,8 +8,11 @@ find_package(Qt6 6.5 REQUIRED COMPONENTS Quick) qt_standard_project_setup(REQUIRES 6.5) +set(CMAKE_AUTORCC ON) + qt_add_executable(appSolitare main.cpp + images.qrc ) qt_add_qml_module(appSolitare @@ -18,6 +21,7 @@ qt_add_qml_module(appSolitare QML_FILES Main.qml QML_FILES ScoreBar.qml + QML_FILES PlayingCard.qml ) # Qt for iOS sets MACOSX_BUNDLE_GUI_IDENTIFIER automatically since Qt 6.1. diff --git a/LICENSE-THIRD-PARTY.txt b/LICENSE-THIRD-PARTY.txt new file mode 100644 index 0000000..2aa1418 --- /dev/null +++ b/LICENSE-THIRD-PARTY.txt @@ -0,0 +1,3 @@ +The set of playing card SVG images located in the /img/playing_cards/ directory was sourced from the following website: + +These images are licensed under the public domain, and the resources were created by . diff --git a/Main.qml b/Main.qml index 1d5d34f..29ef6a7 100644 --- a/Main.qml +++ b/Main.qml @@ -16,4 +16,9 @@ ApplicationWindow { time: 500 moves: 64 } + + PlayingCard { + color: "clubs" + value: "ace" + } } diff --git a/PlayingCard.qml b/PlayingCard.qml new file mode 100644 index 0000000..c69f251 --- /dev/null +++ b/PlayingCard.qml @@ -0,0 +1,20 @@ +import QtQuick + +Item { + id: playingCard + width: 100 + height: width * 1.4 // Maintian the aspect ratio of a playing card + + // Annoyingly, there is no easy way to make this type-safe, QML does have enums + // but they only act as ints, and since we need the string names for the img paths + // anyways, typing these as simple strings is the easiest way to do this. + required property string color + required property string value + + Image { + id: cardImage + anchors.fill: parent + source: "qrc:/img/playing_cards/fronts/" + playingCard.color + "_" + playingCard.value + ".svg" + fillMode: Image.PreserveAspectFit + } +} diff --git a/generate_images_qrc.sh b/generate_images_qrc.sh new file mode 100755 index 0000000..55a5b3d --- /dev/null +++ b/generate_images_qrc.sh @@ -0,0 +1,23 @@ +#!/bin/bash +set -euo pipefail + +QRC="images.qrc" +IMG_DIR="img" + +cat <"$QRC" + + + +EOF + +find "$IMG_DIR" -type f | while IFS= read -r file; do + printf " %s\n" "$file" >>"$QRC" +done + +cat <>"$QRC" + + + + +EOF diff --git a/images.qrc b/images.qrc new file mode 100644 index 0000000..5dd87e4 --- /dev/null +++ b/images.qrc @@ -0,0 +1,74 @@ + + + + img/playing_cards/backs/abstract.svg + img/playing_cards/backs/abstract_clouds.svg + img/playing_cards/backs/abstract_scene.svg + img/playing_cards/backs/astronaut.svg + img/playing_cards/backs/blue.svg + img/playing_cards/backs/blue2.svg + img/playing_cards/backs/cars.svg + img/playing_cards/backs/castle.svg + img/playing_cards/backs/fish.svg + img/playing_cards/backs/frog.svg + img/playing_cards/backs/red.svg + img/playing_cards/backs/red2.svg + img/playing_cards/fronts/clubs_10.svg + img/playing_cards/fronts/clubs_2.svg + img/playing_cards/fronts/clubs_3.svg + img/playing_cards/fronts/clubs_4.svg + img/playing_cards/fronts/clubs_5.svg + img/playing_cards/fronts/clubs_6.svg + img/playing_cards/fronts/clubs_7.svg + img/playing_cards/fronts/clubs_8.svg + img/playing_cards/fronts/clubs_9.svg + img/playing_cards/fronts/clubs_ace.svg + img/playing_cards/fronts/clubs_jack.svg + img/playing_cards/fronts/clubs_king.svg + img/playing_cards/fronts/clubs_queen.svg + img/playing_cards/fronts/diamonds_10.svg + img/playing_cards/fronts/diamonds_2.svg + img/playing_cards/fronts/diamonds_3.svg + img/playing_cards/fronts/diamonds_4.svg + img/playing_cards/fronts/diamonds_5.svg + img/playing_cards/fronts/diamonds_6.svg + img/playing_cards/fronts/diamonds_7.svg + img/playing_cards/fronts/diamonds_8.svg + img/playing_cards/fronts/diamonds_9.svg + img/playing_cards/fronts/diamonds_ace.svg + img/playing_cards/fronts/diamonds_jack.svg + img/playing_cards/fronts/diamonds_king.svg + img/playing_cards/fronts/diamonds_queen.svg + img/playing_cards/fronts/hearts_10.svg + img/playing_cards/fronts/hearts_2.svg + img/playing_cards/fronts/hearts_3.svg + img/playing_cards/fronts/hearts_4.svg + img/playing_cards/fronts/hearts_5.svg + img/playing_cards/fronts/hearts_6.svg + img/playing_cards/fronts/hearts_7.svg + img/playing_cards/fronts/hearts_8.svg + img/playing_cards/fronts/hearts_9.svg + img/playing_cards/fronts/hearts_ace.svg + img/playing_cards/fronts/hearts_jack.svg + img/playing_cards/fronts/hearts_king.svg + img/playing_cards/fronts/hearts_queen.svg + img/playing_cards/fronts/joker_black.svg + img/playing_cards/fronts/joker_red.svg + img/playing_cards/fronts/spades_10.svg + img/playing_cards/fronts/spades_2.svg + img/playing_cards/fronts/spades_3.svg + img/playing_cards/fronts/spades_4.svg + img/playing_cards/fronts/spades_5.svg + img/playing_cards/fronts/spades_6.svg + img/playing_cards/fronts/spades_7.svg + img/playing_cards/fronts/spades_8.svg + img/playing_cards/fronts/spades_9.svg + img/playing_cards/fronts/spades_ace.svg + img/playing_cards/fronts/spades_jack.svg + img/playing_cards/fronts/spades_king.svg + img/playing_cards/fronts/spades_queen.svg + + + + diff --git a/img/playing_cards/backs/abstract.svg b/img/playing_cards/backs/abstract.svg new file mode 100644 index 0000000..230ba70 --- /dev/null +++ b/img/playing_cards/backs/abstract.svg @@ -0,0 +1,2692 @@ + + + + + Abstract + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Abstract + 2020-05-08 + + + Lazur URH + + + An abstract design. + + + + Lazur URH + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + abstract; blocks; + + + + + + + + + + + + diff --git a/img/playing_cards/backs/abstract_clouds.svg b/img/playing_cards/backs/abstract_clouds.svg new file mode 100644 index 0000000..424202e --- /dev/null +++ b/img/playing_cards/backs/abstract_clouds.svg @@ -0,0 +1,2929 @@ + + + Abstract Clouds + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Abstract Clouds + + 2020-08-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + abstract; clouds; design; + + + An abstract clouds design. + + + Dordy + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/backs/abstract_scene.svg b/img/playing_cards/backs/abstract_scene.svg new file mode 100644 index 0000000..99d6561 --- /dev/null +++ b/img/playing_cards/backs/abstract_scene.svg @@ -0,0 +1,245 @@ + + + + + Abstract Scene + + + + + + + + + + image/svg+xml + + Abstract Scene + + 2020-05-08 + + + Daniel S. Fowler + + + + + dORDY + + + + + + + + + + Public Domain + + + en-GB + + + abstract; scene; landscape; colors; + + + An abstract scene. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/backs/astronaut.svg b/img/playing_cards/backs/astronaut.svg new file mode 100644 index 0000000..c1bb10c --- /dev/null +++ b/img/playing_cards/backs/astronaut.svg @@ -0,0 +1,3075 @@ + + + + + Struggling astronaut + + + + + + image/svg+xml + + Struggling astronaut + + 2020-05-08 + + + ric5sch + + + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + astronaut; space; struggle; + + + An astronaut struggling to reach his space craft. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/backs/blue.svg b/img/playing_cards/backs/blue.svg new file mode 100644 index 0000000..0b9d1e3 --- /dev/null +++ b/img/playing_cards/backs/blue.svg @@ -0,0 +1,821 @@ + +Blue Card Backimage/svg+xmlBlue Card Back2021-03-14Daniel S. FowlerPublic Domainhttps://tekeye.uken-GBblue; back; playing; card;https://tekeye.uk/playing_cards/svg-playing-cardsA playing card back pattern in blue. + + diff --git a/img/playing_cards/backs/blue2.svg b/img/playing_cards/backs/blue2.svg new file mode 100644 index 0000000..a49caea --- /dev/null +++ b/img/playing_cards/backs/blue2.svg @@ -0,0 +1,813 @@ + +Another Blue Card Backimage/svg+xmlAnother Blue Card Back2020-03-13Daniel S. FowlerPublic Domainhttps://tekeye.uken-GBblue; back; playing; card;A blue patterned playing card back.https://tekeye.uk/playing_cards/svg-playing-cards + + diff --git a/img/playing_cards/backs/cars.svg b/img/playing_cards/backs/cars.svg new file mode 100644 index 0000000..e096e94 --- /dev/null +++ b/img/playing_cards/backs/cars.svg @@ -0,0 +1,6177 @@ + + + Vintage red cars + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + https://tekeye.uk + + + Vintage red cars + 2020-05-08 + Vintage red cars + + + + Daniel S. Fowler + + + + + automobile; automotive; classic; cars; heritage; legacy; motor; racing; motoring; motorsports; transportation; vintage; red; green; + + + + + netalloy + + + + + Public Domain + + + en-GB + + + + + + + + + diff --git a/img/playing_cards/backs/castle.svg b/img/playing_cards/backs/castle.svg new file mode 100644 index 0000000..6a17e95 --- /dev/null +++ b/img/playing_cards/backs/castle.svg @@ -0,0 +1,3948 @@ + + + Castle Playing Card Back + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Castle Playing Card Back + + 2021-03-14 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + playing; card; rear; back; castle; moon; + + + A night time themed castle playing card back. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/backs/fish.svg b/img/playing_cards/backs/fish.svg new file mode 100644 index 0000000..15f570f --- /dev/null +++ b/img/playing_cards/backs/fish.svg @@ -0,0 +1,737 @@ + + + + + Copperband butterfly fish + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + https://tekeye.uk + + + Copperband butterfly fish + 2020-05-08 + A copperband butterfly fish. + + + + Daniel S. Fowler + + + + + beak; coralfish; chelmon; rostratus; copperband; butterfly; fish; reef; blue; + + + + + Public Domain + + + + + bravebug + + + en-GB + + + + + + + + + diff --git a/img/playing_cards/backs/frog.svg b/img/playing_cards/backs/frog.svg new file mode 100644 index 0000000..e8825dc --- /dev/null +++ b/img/playing_cards/backs/frog.svg @@ -0,0 +1,1947 @@ + + + Frog + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + + + + https://tekeye.uk + + + Frog + 2020-05-08 + Rainforest treefrog + + + + Daniel S. Fowler + + + + + amphibian; animal; frog; tree frog; treefrog + + + + + flooredmusic + + + en-GB + + + Public Domain + + + + + + + + + + + diff --git a/img/playing_cards/backs/red.svg b/img/playing_cards/backs/red.svg new file mode 100644 index 0000000..0f6cf1b --- /dev/null +++ b/img/playing_cards/backs/red.svg @@ -0,0 +1,804 @@ + +Red Card Backimage/svg+xmlRed Card Back2021-03-14Daniel S. FowlerPublic Domainhttps://tekeye.uken-GBblue; back; playing; card;Playing card back, red patterned design.https://tekeye.uk/playing_cards/svg-playing-cards + + + diff --git a/img/playing_cards/backs/red2.svg b/img/playing_cards/backs/red2.svg new file mode 100644 index 0000000..a5283f0 --- /dev/null +++ b/img/playing_cards/backs/red2.svg @@ -0,0 +1,808 @@ + +Red Card Backimage/svg+xmlRed Card Back2020-05-08Daniel S. FowlerPublic Domainhttps://tekeye.uken-GBred; back; playing; card;A red pattered playing card back. + + diff --git a/img/playing_cards/fronts/clubs_10.svg b/img/playing_cards/fronts/clubs_10.svg new file mode 100644 index 0000000..df60b05 --- /dev/null +++ b/img/playing_cards/fronts/clubs_10.svg @@ -0,0 +1,434 @@ + + + + + Ten of Clubs Playing Card + + + + + + + + image/svg+xml + + Ten of Clubs Playing Card + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + ten; clubs; playing; card; black; white; + + + A ten of clubs playing card in black and white. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/clubs_2.svg b/img/playing_cards/fronts/clubs_2.svg new file mode 100644 index 0000000..b94a59c --- /dev/null +++ b/img/playing_cards/fronts/clubs_2.svg @@ -0,0 +1,225 @@ + + + + + Two of Clubs Playing Card + + + + + + + + image/svg+xml + + Two of Clubs Playing Card + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + playing; card; two; clubs; black; white; + + + A two of clubs playing card + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/clubs_3.svg b/img/playing_cards/fronts/clubs_3.svg new file mode 100644 index 0000000..10cb11a --- /dev/null +++ b/img/playing_cards/fronts/clubs_3.svg @@ -0,0 +1,246 @@ + + + + + Three of Clubs Playing Card + + + + + + + + image/svg+xml + + Three of Clubs Playing Card + 2020-05-04 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + three; clubs; playing; card; black; white; + + + A three of clubs playing card in black and white. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/clubs_4.svg b/img/playing_cards/fronts/clubs_4.svg new file mode 100644 index 0000000..e7c21d4 --- /dev/null +++ b/img/playing_cards/fronts/clubs_4.svg @@ -0,0 +1,269 @@ + + + Four of Clubs Playing Card + + + + + + + + image/svg+xml + + Four of Clubs Playing Card + + 2020-05-04 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + four; clubs; playing; card; white; black; + + + A four of clubs playing card in black and white. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/clubs_5.svg b/img/playing_cards/fronts/clubs_5.svg new file mode 100644 index 0000000..cb7dc18 --- /dev/null +++ b/img/playing_cards/fronts/clubs_5.svg @@ -0,0 +1,284 @@ + + + Five of Clubs Playing Card + + + + + + + + image/svg+xml + + Five of Clubs Playing Card + + 2020-05-04 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + five; clubs; playing; card; white; black + + + A five of clubs playing card + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/clubs_6.svg b/img/playing_cards/fronts/clubs_6.svg new file mode 100644 index 0000000..f9909f6 --- /dev/null +++ b/img/playing_cards/fronts/clubs_6.svg @@ -0,0 +1,303 @@ + + + + + Six of Clubs Playing Card + + + + + + + + image/svg+xml + + Six of Clubs Playing Card + + 2020-05-04 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + six; clubs; playing; card; white; + + + A six of clubs playing card in black and white. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/clubs_7.svg b/img/playing_cards/fronts/clubs_7.svg new file mode 100644 index 0000000..506040c --- /dev/null +++ b/img/playing_cards/fronts/clubs_7.svg @@ -0,0 +1,321 @@ + + + + + Seven of Clubs Playing Card + + + + + + + + image/svg+xml + + Seven of Clubs Playing Card + + 2020-05-04 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + seven; clubs; playing; card; white; black; + + + A seven of clubs playing card, in black and white. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/clubs_8.svg b/img/playing_cards/fronts/clubs_8.svg new file mode 100644 index 0000000..dc15581 --- /dev/null +++ b/img/playing_cards/fronts/clubs_8.svg @@ -0,0 +1,342 @@ + + + + + EIght of Clubs Playing Card + + + + + + + + image/svg+xml + + EIght of Clubs Playing Card + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + eight; clubs; playing; card; black; white; + + + An eight of clubs playing card in black and white. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/clubs_9.svg b/img/playing_cards/fronts/clubs_9.svg new file mode 100644 index 0000000..22b49eb --- /dev/null +++ b/img/playing_cards/fronts/clubs_9.svg @@ -0,0 +1,357 @@ + + + + + Nine of Clubs Playing Card + + + + + + + + image/svg+xml + + Nine of Clubs Playing Card + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + nine; clubs; playing; card; blak; white; + + + A nine of clubs playing card in black and white. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/clubs_ace.svg b/img/playing_cards/fronts/clubs_ace.svg new file mode 100644 index 0000000..00b376d --- /dev/null +++ b/img/playing_cards/fronts/clubs_ace.svg @@ -0,0 +1,231 @@ + + + + + Ace of Clubs Playing Card + + + + + + + + image/svg+xml + + Ace of Clubs Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + ace; clubs; playing; card; + + + An ace of clubs playing card in black and white. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/clubs_jack.svg b/img/playing_cards/fronts/clubs_jack.svg new file mode 100644 index 0000000..6a66c7d --- /dev/null +++ b/img/playing_cards/fronts/clubs_jack.svg @@ -0,0 +1,261 @@ + + + + + Jack of Clubs Playing Card + + + + + + + + image/svg+xml + + Jack of Clubs Playing Card + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + jack; clubs; playing; card; + + + A jack of clubs playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/clubs_king.svg b/img/playing_cards/fronts/clubs_king.svg new file mode 100644 index 0000000..d63cb1f --- /dev/null +++ b/img/playing_cards/fronts/clubs_king.svg @@ -0,0 +1,263 @@ + + + + + King of Clubs Playing Card + + + + + + + + image/svg+xml + + King of Clubs Playing Card + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + king; clubs; playing; card; + + + A king of clubs playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/clubs_queen.svg b/img/playing_cards/fronts/clubs_queen.svg new file mode 100644 index 0000000..a9e71c6 --- /dev/null +++ b/img/playing_cards/fronts/clubs_queen.svg @@ -0,0 +1,265 @@ + + + + + Queen of Clubs Playing Card + + + + + + + + image/svg+xml + + Queen of Clubs Playing Card + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + queen; clubs; playing; card; + + + A queen of clubs playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/diamonds_10.svg b/img/playing_cards/fronts/diamonds_10.svg new file mode 100644 index 0000000..b6b8e1f --- /dev/null +++ b/img/playing_cards/fronts/diamonds_10.svg @@ -0,0 +1,269 @@ + + + + + Ten of Diamonds Playing Card + + + + + + + + image/svg+xml + + Ten of Diamonds Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + Ten; diamonds; playing; card; white; red; + + + A ten of diamonds playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/diamonds_2.svg b/img/playing_cards/fronts/diamonds_2.svg new file mode 100644 index 0000000..42b08c7 --- /dev/null +++ b/img/playing_cards/fronts/diamonds_2.svg @@ -0,0 +1,185 @@ + + + + + Two of Diamonds Playing Card + + + + + + + + image/svg+xml + + Two of Diamonds Playing Card + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + two; diamonds; playing; card; white; red; + + + A two of diamonds playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/diamonds_3.svg b/img/playing_cards/fronts/diamonds_3.svg new file mode 100644 index 0000000..935ae2e --- /dev/null +++ b/img/playing_cards/fronts/diamonds_3.svg @@ -0,0 +1,157 @@ + + + + + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/diamonds_4.svg b/img/playing_cards/fronts/diamonds_4.svg new file mode 100644 index 0000000..e13f0ea --- /dev/null +++ b/img/playing_cards/fronts/diamonds_4.svg @@ -0,0 +1,190 @@ + + + + + Four of Diamonds Playing Card + + + + + + + + image/svg+xml + + Four of Diamonds Playing Card + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + Four; diamonds; playing; card; white; red; + + + A four of diamonds playing card. + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/diamonds_5.svg b/img/playing_cards/fronts/diamonds_5.svg new file mode 100644 index 0000000..4cf496c --- /dev/null +++ b/img/playing_cards/fronts/diamonds_5.svg @@ -0,0 +1,209 @@ + + + + + Five of Diamonds Playing Card + + + + + + + + image/svg+xml + + Five of Diamonds Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + Five; diamonds; playing; card; white; red; + + + A five of diamonds playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/diamonds_6.svg b/img/playing_cards/fronts/diamonds_6.svg new file mode 100644 index 0000000..45fdd16 --- /dev/null +++ b/img/playing_cards/fronts/diamonds_6.svg @@ -0,0 +1,217 @@ + + + + + Six of Diamonds Playing Card + + + + + + + + image/svg+xml + + Six of Diamonds Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + six; diamonds; playing; card; white; red; + + + A six of diamonds playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/diamonds_7.svg b/img/playing_cards/fronts/diamonds_7.svg new file mode 100644 index 0000000..3fd1592 --- /dev/null +++ b/img/playing_cards/fronts/diamonds_7.svg @@ -0,0 +1,227 @@ + + + + + Seven of Diamonds Playing Card + + + + + + + + image/svg+xml + + Seven of Diamonds Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + seven; diamonds; playing; card; white; red; + + + A seven of diamonds playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/diamonds_8.svg b/img/playing_cards/fronts/diamonds_8.svg new file mode 100644 index 0000000..198c9ce --- /dev/null +++ b/img/playing_cards/fronts/diamonds_8.svg @@ -0,0 +1,233 @@ + + + + + Eight of Diamonds Playing Card + + + + + + + + image/svg+xml + + Eight of Diamonds Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + eight; diamonds; playing; card; white; red; + + + A eight of diamonds playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/diamonds_9.svg b/img/playing_cards/fronts/diamonds_9.svg new file mode 100644 index 0000000..ffd6743 --- /dev/null +++ b/img/playing_cards/fronts/diamonds_9.svg @@ -0,0 +1,243 @@ + + + + + Nine of Diamonds Playing Card + + + + + + + + image/svg+xml + + Nine of Diamonds Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + nine; diamonds; playing; card; white; red; + + + A nine of diamonds playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/diamonds_ace.svg b/img/playing_cards/fronts/diamonds_ace.svg new file mode 100644 index 0000000..10a5ac0 --- /dev/null +++ b/img/playing_cards/fronts/diamonds_ace.svg @@ -0,0 +1,177 @@ + + + + + Ace of Diamonds Playing Card + + + + + + + + image/svg+xml + + Ace of Diamonds Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + ace; diamonds; playing; card; white; red; + + + An ace of diamonds playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/diamonds_jack.svg b/img/playing_cards/fronts/diamonds_jack.svg new file mode 100644 index 0000000..d053cf2 --- /dev/null +++ b/img/playing_cards/fronts/diamonds_jack.svg @@ -0,0 +1,217 @@ + + + + + Jack of Diamonds Playing Card + + + + + + + + image/svg+xml + + Jack of Diamonds Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + jack; diamonds; playing; card; + + + A jack of diamonds playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/diamonds_king.svg b/img/playing_cards/fronts/diamonds_king.svg new file mode 100644 index 0000000..f6c03a8 --- /dev/null +++ b/img/playing_cards/fronts/diamonds_king.svg @@ -0,0 +1,226 @@ + + + + + King of Diamonds Playing Card + + + + + + + + image/svg+xml + + King of Diamonds Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + king; diamonds; playing; card; white; red; + + + A king of diamonds playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/diamonds_queen.svg b/img/playing_cards/fronts/diamonds_queen.svg new file mode 100644 index 0000000..0288fcf --- /dev/null +++ b/img/playing_cards/fronts/diamonds_queen.svg @@ -0,0 +1,225 @@ + + + + + Queen of Diamonds Playing Card + + + + + + + + image/svg+xml + + Queen of Diamonds Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + queen; diamonds; playing; card; white; red; + + + A queen of diamonds playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/hearts_10.svg b/img/playing_cards/fronts/hearts_10.svg new file mode 100644 index 0000000..b9b75f1 --- /dev/null +++ b/img/playing_cards/fronts/hearts_10.svg @@ -0,0 +1,255 @@ + + + + + Ten of Hearts Playing Card + + + + + + + + image/svg+xml + + Ten of Hearts Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + ten; hearts; playing; card; white; red; + + + A ten of hearts playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/hearts_2.svg b/img/playing_cards/fronts/hearts_2.svg new file mode 100644 index 0000000..dece7d4 --- /dev/null +++ b/img/playing_cards/fronts/hearts_2.svg @@ -0,0 +1,183 @@ + + + + + Two of Diamonds Playing Card + + + + + + + + image/svg+xml + + Two of Diamonds Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + two; diamonds; playing; card; white; red; + + + A two of diamonds playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/hearts_3.svg b/img/playing_cards/fronts/hearts_3.svg new file mode 100644 index 0000000..354a96f --- /dev/null +++ b/img/playing_cards/fronts/hearts_3.svg @@ -0,0 +1,178 @@ + + + + + Three of Hearts Playing Card + + + + + + + + image/svg+xml + + Three of Hearts Playing Card + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + three; hearts; playing; card; white; red; + + + A three of hearts playing card. + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/hearts_4.svg b/img/playing_cards/fronts/hearts_4.svg new file mode 100644 index 0000000..bae0873 --- /dev/null +++ b/img/playing_cards/fronts/hearts_4.svg @@ -0,0 +1,199 @@ + + + + + Four of Hearts Playing Card + + + + + + + + image/svg+xml + + Four of Hearts Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + four; hearts; playing; card; white; red; + + + A four of hearts playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/hearts_5.svg b/img/playing_cards/fronts/hearts_5.svg new file mode 100644 index 0000000..ecb040c --- /dev/null +++ b/img/playing_cards/fronts/hearts_5.svg @@ -0,0 +1,205 @@ + + + + + Five of Hearts Playing Card + + + + + + + + image/svg+xml + + Five of Hearts Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + five; hearts; playing; card; white; red; + + + A five of hearts playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/hearts_6.svg b/img/playing_cards/fronts/hearts_6.svg new file mode 100644 index 0000000..5b68e8b --- /dev/null +++ b/img/playing_cards/fronts/hearts_6.svg @@ -0,0 +1,208 @@ + + + + + Six of Hearts Playing Card + + + + + + + + image/svg+xml + + Six of Hearts Playing Card + + 2024-11-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + six; hearts; playing; card; white; red; + + + A six of hearts playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/hearts_7.svg b/img/playing_cards/fronts/hearts_7.svg new file mode 100644 index 0000000..e44961d --- /dev/null +++ b/img/playing_cards/fronts/hearts_7.svg @@ -0,0 +1,217 @@ + + + + + Seven of Hearts Playing Card + + + + + + + + image/svg+xml + + Seven of Hearts Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + seven; hearts; playing; card; white; red; + + + A seven of hearts playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/hearts_8.svg b/img/playing_cards/fronts/hearts_8.svg new file mode 100644 index 0000000..c74063d --- /dev/null +++ b/img/playing_cards/fronts/hearts_8.svg @@ -0,0 +1,223 @@ + + + + + Eight of Hearts Playing Card + + + + + + + + image/svg+xml + + Eight of Hearts Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + eight; hearts; playing; card; white; red; + + + A eight of hearts playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/hearts_9.svg b/img/playing_cards/fronts/hearts_9.svg new file mode 100644 index 0000000..a7f62d9 --- /dev/null +++ b/img/playing_cards/fronts/hearts_9.svg @@ -0,0 +1,229 @@ + + + + + Nine of Hearts Playing Card + + + + + + + + image/svg+xml + + Nine of Hearts Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + nine; hearts; playing; card; white; red; + + + A nine of hearts playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/hearts_ace.svg b/img/playing_cards/fronts/hearts_ace.svg new file mode 100644 index 0000000..c797c1d --- /dev/null +++ b/img/playing_cards/fronts/hearts_ace.svg @@ -0,0 +1,177 @@ + + + + + Ace of Hearts Playing Card + + + + + + + + image/svg+xml + + Ace of Hearts Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + ace; hearts; playing; card; white; red; + + + An ace of hearts playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/hearts_jack.svg b/img/playing_cards/fronts/hearts_jack.svg new file mode 100644 index 0000000..e582e65 --- /dev/null +++ b/img/playing_cards/fronts/hearts_jack.svg @@ -0,0 +1,228 @@ + + + + + Jack of Hearts Playing Card + + + + + + + + image/svg+xml + + Jack of Hearts Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + jack; hearts; playing; card; + + + A jack of hearts playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/hearts_king.svg b/img/playing_cards/fronts/hearts_king.svg new file mode 100644 index 0000000..bb4af6e --- /dev/null +++ b/img/playing_cards/fronts/hearts_king.svg @@ -0,0 +1,215 @@ + + + + + King of Hearts Playing Card + + + + + + + + image/svg+xml + + King of Hearts Playing Card + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + king; hearts; playing; card; + + + A king of hearts playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/hearts_queen.svg b/img/playing_cards/fronts/hearts_queen.svg new file mode 100644 index 0000000..1e1973c --- /dev/null +++ b/img/playing_cards/fronts/hearts_queen.svg @@ -0,0 +1,234 @@ + + + + + Queen of Hearts Playing Card + + + + + + + + image/svg+xml + + Queen of Hearts Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + queen; hearts; playing; card; + + + A queen of hearts playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/joker_black.svg b/img/playing_cards/fronts/joker_black.svg new file mode 100644 index 0000000..ce500dd --- /dev/null +++ b/img/playing_cards/fronts/joker_black.svg @@ -0,0 +1,1034 @@ + + + Black Joker Playing Card + + + + + + + + + + + + + + + + + + + + + image/svg+xml + + Black Joker Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + black; joker; playing; card; + + + A black joker playing card. + + + + + + + + + + + + + + + J + O + K + E + R + J + O + K + E + R + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/joker_red.svg b/img/playing_cards/fronts/joker_red.svg new file mode 100644 index 0000000..408d516 --- /dev/null +++ b/img/playing_cards/fronts/joker_red.svg @@ -0,0 +1,898 @@ + + + Red Joker Playing Card + + + + + + + + + + + + + + + image/svg+xml + + Red Joker Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + red; joker; playing; card; + + + A red joker playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/spades_10.svg b/img/playing_cards/fronts/spades_10.svg new file mode 100644 index 0000000..dabed47 --- /dev/null +++ b/img/playing_cards/fronts/spades_10.svg @@ -0,0 +1,251 @@ + + + + + Ten of Spades Playing Card + + + + + + + + image/svg+xml + + Ten of Spades Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + ten; spades; playing; card; black; white + + + A ten of spades playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/spades_2.svg b/img/playing_cards/fronts/spades_2.svg new file mode 100644 index 0000000..caaabfc --- /dev/null +++ b/img/playing_cards/fronts/spades_2.svg @@ -0,0 +1,183 @@ + + + + + Two of Spades Playing Card + + + + + + + + image/svg+xml + + Two of Spades Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + two; spades; playing; card; black; white; + + + A two of spades playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/spades_3.svg b/img/playing_cards/fronts/spades_3.svg new file mode 100644 index 0000000..34c30c1 --- /dev/null +++ b/img/playing_cards/fronts/spades_3.svg @@ -0,0 +1,189 @@ + + + + + Three of Spades Playing Card + + + + + + + + image/svg+xml + + Three of Spades Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + three; spades; playing; card; black; white + + + A three of spades playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/spades_4.svg b/img/playing_cards/fronts/spades_4.svg new file mode 100644 index 0000000..84cb34e --- /dev/null +++ b/img/playing_cards/fronts/spades_4.svg @@ -0,0 +1,195 @@ + + + + + Four of Spades Playing Card + + + + + + + + image/svg+xml + + Four of Spades Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + four; spades; playing; card; black; white + + + A four of spades playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/spades_5.svg b/img/playing_cards/fronts/spades_5.svg new file mode 100644 index 0000000..f675611 --- /dev/null +++ b/img/playing_cards/fronts/spades_5.svg @@ -0,0 +1,201 @@ + + + + + Five of Spades Playing Card + + + + + + + + image/svg+xml + + Five of Spades Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + five; spades; playing; card; black; white + + + A five of spades playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/spades_6.svg b/img/playing_cards/fronts/spades_6.svg new file mode 100644 index 0000000..9d74b62 --- /dev/null +++ b/img/playing_cards/fronts/spades_6.svg @@ -0,0 +1,207 @@ + + + + + Six of Spades Playing Card + + + + + + + + image/svg+xml + + Six of Spades Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + six; spades; playing; card; black; white + + + A six of spades playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/spades_7.svg b/img/playing_cards/fronts/spades_7.svg new file mode 100644 index 0000000..83b5bc8 --- /dev/null +++ b/img/playing_cards/fronts/spades_7.svg @@ -0,0 +1,213 @@ + + + + + Seven of Spades Playing Card + + + + + + + + image/svg+xml + + Seven of Spades Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + seven; spades; playing; card; black; white + + + A seven of spades playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/spades_8.svg b/img/playing_cards/fronts/spades_8.svg new file mode 100644 index 0000000..3c285c8 --- /dev/null +++ b/img/playing_cards/fronts/spades_8.svg @@ -0,0 +1,219 @@ + + + + + Eight of Spades Playing Card + + + + + + + + image/svg+xml + + Eight of Spades Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + eight; spades; playing; card; black; white + + + An eight of spades playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/spades_9.svg b/img/playing_cards/fronts/spades_9.svg new file mode 100644 index 0000000..5f7fa86 --- /dev/null +++ b/img/playing_cards/fronts/spades_9.svg @@ -0,0 +1,202 @@ + + + + + Nine of Spades Playing Card + + + + + + + + image/svg+xml + + Nine of Spades Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + nine; spades; playing; card; black; white + + + A nine of spades playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/spades_ace.svg b/img/playing_cards/fronts/spades_ace.svg new file mode 100644 index 0000000..0ba09de --- /dev/null +++ b/img/playing_cards/fronts/spades_ace.svg @@ -0,0 +1,483 @@ + + + + + Ace of Spades Playing Card + + + + + + + + image/svg+xml + + Ace of Spades Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + ace; spades; playing; card; black; white + + + An ace of spades playing card in black and white with a phrase. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/spades_jack.svg b/img/playing_cards/fronts/spades_jack.svg new file mode 100644 index 0000000..6e9abff --- /dev/null +++ b/img/playing_cards/fronts/spades_jack.svg @@ -0,0 +1,223 @@ + + + + + Jack of Spades Playing Card + + + + + + + + image/svg+xml + + Jack of Spades Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + jack; spades; playing; card; + + + A jack of spades playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/spades_king.svg b/img/playing_cards/fronts/spades_king.svg new file mode 100644 index 0000000..ed92539 --- /dev/null +++ b/img/playing_cards/fronts/spades_king.svg @@ -0,0 +1,214 @@ + + + + + King of Spades Playing Card + + + + + + + + image/svg+xml + + King of Spades Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + king; spades; playing; card; + + + A king of spades playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/img/playing_cards/fronts/spades_queen.svg b/img/playing_cards/fronts/spades_queen.svg new file mode 100644 index 0000000..cf22370 --- /dev/null +++ b/img/playing_cards/fronts/spades_queen.svg @@ -0,0 +1,226 @@ + + + + + Queen of Spades Playing Card + + + + + + + + image/svg+xml + + Queen of Spades Playing Card + + 2020-05-05 + + + Daniel S. Fowler + + + + + Public Domain + + + + + https://tekeye.uk + + + en-GB + + + queen; spades; playing; card; + + + A queen of spades playing card. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +