From 85534819f835a97dd6972bfd0716ad4f95c328b5 Mon Sep 17 00:00:00 2001 From: rsek Date: Sun, 24 Apr 2022 03:27:32 -0700 Subject: [PATCH] add, reorganize, & optimize svgs --- img/vector/answer-no.svg | 5 +++++ img/vector/answer-yes.svg | 5 +++++ .../{bullet-8-point-star.svg => bullet.svg} | 0 .../creature/environment/environment-air.svg | 9 +++++++++ .../environment/environment-interior.svg | 19 +++++++++++++++++++ .../creature/environment/environment-land.svg | 13 +++++++++++++ .../environment/environment-liquid.svg | 13 +++++++++++++ .../environment/environment-space.svg | 14 ++++++++++++++ img/vector/dice-2d10-hex.svg | 1 - img/vector/dice-2d10.svg | 1 - .../{dice-d10.svg => dice-d10-grey.svg} | 0 img/vector/{dice-d6.svg => dice-d6-grey.svg} | 0 img/vector/dice-hit.svg | 1 - img/vector/dice-miss.svg | 1 - img/vector/factions/factions-dominion.svg | 5 +++++ img/vector/factions/factions-fringe.svg | 5 +++++ img/vector/factions/factions-guilds.svg | 15 +++++++++++++++ img/vector/legacies/legacy-bonds.svg | 3 +++ img/vector/legacies/legacy-exploration.svg | 4 ++++ img/vector/legacies/legacy-quests.svg | 3 +++ .../location-theme/location-theme-chaotic.svg | 5 +++++ .../location-theme-fortified.svg | 4 ++++ .../location-theme/location-theme-haunted.svg | 14 ++++++++++++++ .../location-theme-infested.svg | 9 +++++++++ .../location-theme-inhabited.svg | 5 +++++ .../location-theme-mechanical.svg | 16 ++++++++++++++++ .../location-theme/location-theme-ruined.svg | 7 +++++++ .../location-theme/location-theme-sacred.svg | 8 ++++++++ img/vector/location/location-deep_space.svg | 11 +++++++++++ img/vector/location/location-orbital.svg | 16 ++++++++++++++++ img/vector/location/location-planetside.svg | 12 ++++++++++++ img/vector/oracle-overview/2d10-hex.svg | 8 ++++++++ img/vector/oracle-overview/2d10-nobg.svg | 3 +++ img/vector/oracle-overview/ask-hex.svg | 7 +++++++ img/vector/oracle-overview/ask-nobg.svg | 6 ++++++ img/vector/oracle-overview/go-hex.svg | 11 +++++++++++ img/vector/oracle-overview/go-nobg.svg | 10 ++++++++++ .../oracle-overview/inspiration-hex.svg | 6 ++++++ .../oracle-overview/inspiration-nobg.svg | 3 +++ img/vector/oracle-overview/nudge-hex.svg | 11 +++++++++++ img/vector/oracle-overview/nudge-nobg.svg | 10 ++++++++++ img/vector/oracle-overview/oracle-hex.svg | 7 +++++++ img/vector/oracle-overview/oracle-nobg.svg | 6 ++++++ img/vector/oracle-overview/reroll-hex.svg | 11 +++++++++++ img/vector/oracle-overview/reroll-nobg.svg | 10 ++++++++++ img/vector/outcomes/outcome-miss.svg | 8 ++++++++ img/vector/outcomes/outcome-strong-hit.svg | 8 ++++++++ img/vector/outcomes/outcome-weak-hit.svg | 8 ++++++++ 48 files changed, 353 insertions(+), 4 deletions(-) create mode 100644 img/vector/answer-no.svg create mode 100644 img/vector/answer-yes.svg rename img/vector/{bullet-8-point-star.svg => bullet.svg} (100%) create mode 100644 img/vector/creature/environment/environment-air.svg create mode 100644 img/vector/creature/environment/environment-interior.svg create mode 100644 img/vector/creature/environment/environment-land.svg create mode 100644 img/vector/creature/environment/environment-liquid.svg create mode 100644 img/vector/creature/environment/environment-space.svg delete mode 100644 img/vector/dice-2d10-hex.svg delete mode 100644 img/vector/dice-2d10.svg rename img/vector/{dice-d10.svg => dice-d10-grey.svg} (100%) rename img/vector/{dice-d6.svg => dice-d6-grey.svg} (100%) delete mode 100644 img/vector/dice-hit.svg delete mode 100644 img/vector/dice-miss.svg create mode 100644 img/vector/factions/factions-dominion.svg create mode 100644 img/vector/factions/factions-fringe.svg create mode 100644 img/vector/factions/factions-guilds.svg create mode 100644 img/vector/legacies/legacy-bonds.svg create mode 100644 img/vector/legacies/legacy-exploration.svg create mode 100644 img/vector/legacies/legacy-quests.svg create mode 100644 img/vector/location-theme/location-theme-chaotic.svg create mode 100644 img/vector/location-theme/location-theme-fortified.svg create mode 100644 img/vector/location-theme/location-theme-haunted.svg create mode 100644 img/vector/location-theme/location-theme-infested.svg create mode 100644 img/vector/location-theme/location-theme-inhabited.svg create mode 100644 img/vector/location-theme/location-theme-mechanical.svg create mode 100644 img/vector/location-theme/location-theme-ruined.svg create mode 100644 img/vector/location-theme/location-theme-sacred.svg create mode 100644 img/vector/location/location-deep_space.svg create mode 100644 img/vector/location/location-orbital.svg create mode 100644 img/vector/location/location-planetside.svg create mode 100644 img/vector/oracle-overview/2d10-hex.svg create mode 100644 img/vector/oracle-overview/2d10-nobg.svg create mode 100644 img/vector/oracle-overview/ask-hex.svg create mode 100644 img/vector/oracle-overview/ask-nobg.svg create mode 100644 img/vector/oracle-overview/go-hex.svg create mode 100644 img/vector/oracle-overview/go-nobg.svg create mode 100644 img/vector/oracle-overview/inspiration-hex.svg create mode 100644 img/vector/oracle-overview/inspiration-nobg.svg create mode 100644 img/vector/oracle-overview/nudge-hex.svg create mode 100644 img/vector/oracle-overview/nudge-nobg.svg create mode 100644 img/vector/oracle-overview/oracle-hex.svg create mode 100644 img/vector/oracle-overview/oracle-nobg.svg create mode 100644 img/vector/oracle-overview/reroll-hex.svg create mode 100644 img/vector/oracle-overview/reroll-nobg.svg create mode 100644 img/vector/outcomes/outcome-miss.svg create mode 100644 img/vector/outcomes/outcome-strong-hit.svg create mode 100644 img/vector/outcomes/outcome-weak-hit.svg diff --git a/img/vector/answer-no.svg b/img/vector/answer-no.svg new file mode 100644 index 000000000..cf0fd25e9 --- /dev/null +++ b/img/vector/answer-no.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/img/vector/answer-yes.svg b/img/vector/answer-yes.svg new file mode 100644 index 000000000..de2e789b8 --- /dev/null +++ b/img/vector/answer-yes.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/img/vector/bullet-8-point-star.svg b/img/vector/bullet.svg similarity index 100% rename from img/vector/bullet-8-point-star.svg rename to img/vector/bullet.svg diff --git a/img/vector/creature/environment/environment-air.svg b/img/vector/creature/environment/environment-air.svg new file mode 100644 index 000000000..b8e875574 --- /dev/null +++ b/img/vector/creature/environment/environment-air.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/img/vector/creature/environment/environment-interior.svg b/img/vector/creature/environment/environment-interior.svg new file mode 100644 index 000000000..909fb2e97 --- /dev/null +++ b/img/vector/creature/environment/environment-interior.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/img/vector/creature/environment/environment-land.svg b/img/vector/creature/environment/environment-land.svg new file mode 100644 index 000000000..2ec9b1b2a --- /dev/null +++ b/img/vector/creature/environment/environment-land.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/img/vector/creature/environment/environment-liquid.svg b/img/vector/creature/environment/environment-liquid.svg new file mode 100644 index 000000000..bf52beda8 --- /dev/null +++ b/img/vector/creature/environment/environment-liquid.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/img/vector/creature/environment/environment-space.svg b/img/vector/creature/environment/environment-space.svg new file mode 100644 index 000000000..5c4505fc9 --- /dev/null +++ b/img/vector/creature/environment/environment-space.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/img/vector/dice-2d10-hex.svg b/img/vector/dice-2d10-hex.svg deleted file mode 100644 index c8716b38d..000000000 --- a/img/vector/dice-2d10-hex.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/vector/dice-2d10.svg b/img/vector/dice-2d10.svg deleted file mode 100644 index dfc3d21f0..000000000 --- a/img/vector/dice-2d10.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/vector/dice-d10.svg b/img/vector/dice-d10-grey.svg similarity index 100% rename from img/vector/dice-d10.svg rename to img/vector/dice-d10-grey.svg diff --git a/img/vector/dice-d6.svg b/img/vector/dice-d6-grey.svg similarity index 100% rename from img/vector/dice-d6.svg rename to img/vector/dice-d6-grey.svg diff --git a/img/vector/dice-hit.svg b/img/vector/dice-hit.svg deleted file mode 100644 index f7eddf18d..000000000 --- a/img/vector/dice-hit.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/vector/dice-miss.svg b/img/vector/dice-miss.svg deleted file mode 100644 index d7b98d397..000000000 --- a/img/vector/dice-miss.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/img/vector/factions/factions-dominion.svg b/img/vector/factions/factions-dominion.svg new file mode 100644 index 000000000..7c5441d3b --- /dev/null +++ b/img/vector/factions/factions-dominion.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/img/vector/factions/factions-fringe.svg b/img/vector/factions/factions-fringe.svg new file mode 100644 index 000000000..28143f132 --- /dev/null +++ b/img/vector/factions/factions-fringe.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/img/vector/factions/factions-guilds.svg b/img/vector/factions/factions-guilds.svg new file mode 100644 index 000000000..6cbe33d03 --- /dev/null +++ b/img/vector/factions/factions-guilds.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/img/vector/legacies/legacy-bonds.svg b/img/vector/legacies/legacy-bonds.svg new file mode 100644 index 000000000..7a64ca71a --- /dev/null +++ b/img/vector/legacies/legacy-bonds.svg @@ -0,0 +1,3 @@ + + + diff --git a/img/vector/legacies/legacy-exploration.svg b/img/vector/legacies/legacy-exploration.svg new file mode 100644 index 000000000..6185179fe --- /dev/null +++ b/img/vector/legacies/legacy-exploration.svg @@ -0,0 +1,4 @@ + + + + diff --git a/img/vector/legacies/legacy-quests.svg b/img/vector/legacies/legacy-quests.svg new file mode 100644 index 000000000..30f86bc8b --- /dev/null +++ b/img/vector/legacies/legacy-quests.svg @@ -0,0 +1,3 @@ + + + diff --git a/img/vector/location-theme/location-theme-chaotic.svg b/img/vector/location-theme/location-theme-chaotic.svg new file mode 100644 index 000000000..303f32411 --- /dev/null +++ b/img/vector/location-theme/location-theme-chaotic.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/img/vector/location-theme/location-theme-fortified.svg b/img/vector/location-theme/location-theme-fortified.svg new file mode 100644 index 000000000..680f3f599 --- /dev/null +++ b/img/vector/location-theme/location-theme-fortified.svg @@ -0,0 +1,4 @@ + + + + diff --git a/img/vector/location-theme/location-theme-haunted.svg b/img/vector/location-theme/location-theme-haunted.svg new file mode 100644 index 000000000..81f5489f3 --- /dev/null +++ b/img/vector/location-theme/location-theme-haunted.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + + + + diff --git a/img/vector/location-theme/location-theme-infested.svg b/img/vector/location-theme/location-theme-infested.svg new file mode 100644 index 000000000..3aa7f26aa --- /dev/null +++ b/img/vector/location-theme/location-theme-infested.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/img/vector/location-theme/location-theme-inhabited.svg b/img/vector/location-theme/location-theme-inhabited.svg new file mode 100644 index 000000000..281394a19 --- /dev/null +++ b/img/vector/location-theme/location-theme-inhabited.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/img/vector/location-theme/location-theme-mechanical.svg b/img/vector/location-theme/location-theme-mechanical.svg new file mode 100644 index 000000000..b2dc19ba1 --- /dev/null +++ b/img/vector/location-theme/location-theme-mechanical.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/img/vector/location-theme/location-theme-ruined.svg b/img/vector/location-theme/location-theme-ruined.svg new file mode 100644 index 000000000..1b9aa7906 --- /dev/null +++ b/img/vector/location-theme/location-theme-ruined.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/img/vector/location-theme/location-theme-sacred.svg b/img/vector/location-theme/location-theme-sacred.svg new file mode 100644 index 000000000..0139609d0 --- /dev/null +++ b/img/vector/location-theme/location-theme-sacred.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/img/vector/location/location-deep_space.svg b/img/vector/location/location-deep_space.svg new file mode 100644 index 000000000..b06bce930 --- /dev/null +++ b/img/vector/location/location-deep_space.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/img/vector/location/location-orbital.svg b/img/vector/location/location-orbital.svg new file mode 100644 index 000000000..908709993 --- /dev/null +++ b/img/vector/location/location-orbital.svg @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + diff --git a/img/vector/location/location-planetside.svg b/img/vector/location/location-planetside.svg new file mode 100644 index 000000000..fd03450a0 --- /dev/null +++ b/img/vector/location/location-planetside.svg @@ -0,0 +1,12 @@ + + + + + + + + + + + + diff --git a/img/vector/oracle-overview/2d10-hex.svg b/img/vector/oracle-overview/2d10-hex.svg new file mode 100644 index 000000000..fa257ab37 --- /dev/null +++ b/img/vector/oracle-overview/2d10-hex.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/img/vector/oracle-overview/2d10-nobg.svg b/img/vector/oracle-overview/2d10-nobg.svg new file mode 100644 index 000000000..2d10c7917 --- /dev/null +++ b/img/vector/oracle-overview/2d10-nobg.svg @@ -0,0 +1,3 @@ + + + diff --git a/img/vector/oracle-overview/ask-hex.svg b/img/vector/oracle-overview/ask-hex.svg new file mode 100644 index 000000000..2e7108409 --- /dev/null +++ b/img/vector/oracle-overview/ask-hex.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/img/vector/oracle-overview/ask-nobg.svg b/img/vector/oracle-overview/ask-nobg.svg new file mode 100644 index 000000000..5868afe8a --- /dev/null +++ b/img/vector/oracle-overview/ask-nobg.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/img/vector/oracle-overview/go-hex.svg b/img/vector/oracle-overview/go-hex.svg new file mode 100644 index 000000000..3c2bedb54 --- /dev/null +++ b/img/vector/oracle-overview/go-hex.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/img/vector/oracle-overview/go-nobg.svg b/img/vector/oracle-overview/go-nobg.svg new file mode 100644 index 000000000..f4914a2fd --- /dev/null +++ b/img/vector/oracle-overview/go-nobg.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/img/vector/oracle-overview/inspiration-hex.svg b/img/vector/oracle-overview/inspiration-hex.svg new file mode 100644 index 000000000..c26653843 --- /dev/null +++ b/img/vector/oracle-overview/inspiration-hex.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/img/vector/oracle-overview/inspiration-nobg.svg b/img/vector/oracle-overview/inspiration-nobg.svg new file mode 100644 index 000000000..525231427 --- /dev/null +++ b/img/vector/oracle-overview/inspiration-nobg.svg @@ -0,0 +1,3 @@ + + + diff --git a/img/vector/oracle-overview/nudge-hex.svg b/img/vector/oracle-overview/nudge-hex.svg new file mode 100644 index 000000000..cc0d32a1b --- /dev/null +++ b/img/vector/oracle-overview/nudge-hex.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/img/vector/oracle-overview/nudge-nobg.svg b/img/vector/oracle-overview/nudge-nobg.svg new file mode 100644 index 000000000..a3a89fb7b --- /dev/null +++ b/img/vector/oracle-overview/nudge-nobg.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/img/vector/oracle-overview/oracle-hex.svg b/img/vector/oracle-overview/oracle-hex.svg new file mode 100644 index 000000000..96c798f68 --- /dev/null +++ b/img/vector/oracle-overview/oracle-hex.svg @@ -0,0 +1,7 @@ + + + + + + + diff --git a/img/vector/oracle-overview/oracle-nobg.svg b/img/vector/oracle-overview/oracle-nobg.svg new file mode 100644 index 000000000..92ba4bbd5 --- /dev/null +++ b/img/vector/oracle-overview/oracle-nobg.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/img/vector/oracle-overview/reroll-hex.svg b/img/vector/oracle-overview/reroll-hex.svg new file mode 100644 index 000000000..338fb5dbd --- /dev/null +++ b/img/vector/oracle-overview/reroll-hex.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + diff --git a/img/vector/oracle-overview/reroll-nobg.svg b/img/vector/oracle-overview/reroll-nobg.svg new file mode 100644 index 000000000..3ac3510b0 --- /dev/null +++ b/img/vector/oracle-overview/reroll-nobg.svg @@ -0,0 +1,10 @@ + + + + + + + + + + diff --git a/img/vector/outcomes/outcome-miss.svg b/img/vector/outcomes/outcome-miss.svg new file mode 100644 index 000000000..f4a37434c --- /dev/null +++ b/img/vector/outcomes/outcome-miss.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/img/vector/outcomes/outcome-strong-hit.svg b/img/vector/outcomes/outcome-strong-hit.svg new file mode 100644 index 000000000..b43067b03 --- /dev/null +++ b/img/vector/outcomes/outcome-strong-hit.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/img/vector/outcomes/outcome-weak-hit.svg b/img/vector/outcomes/outcome-weak-hit.svg new file mode 100644 index 000000000..b4a85d2eb --- /dev/null +++ b/img/vector/outcomes/outcome-weak-hit.svg @@ -0,0 +1,8 @@ + + + + + + + +