diff --git a/LICENSE.md b/LICENSE.md index 81fbcc2..1d49517 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -18,6 +18,10 @@ These are drawn by me (Daniel Oaks). I'm happy to distribute those as part of th Adorkastock distributes their free images under the Creative Commons Attribution 3.0 Unported License (CC BY 3.0) license. We've gotten permission to share these images as part of this app so long as their name and website is linked. +## Grafit Studio sample images + +Grafit Studio has given us permission to use their Studio License for sharing their studio's pictures with the app, so long as their name and store is linked. + ## JookpubStock sample images Jen has given their permission to include their free resources as part of this app so long as the webapp is completely free. I'm distributing this for free, so no dramas there. When running the app, this condition is enforced before importing with a checkbox confirming that the site doesn't have any pay-to-access restrictions. diff --git a/samples/grafitstudio/faces/Anya0039.jpg b/samples/grafitstudio/faces/Anya0039.jpg new file mode 100644 index 0000000..86355fd Binary files /dev/null and b/samples/grafitstudio/faces/Anya0039.jpg differ diff --git a/samples/grafitstudio/faces/Anya0091.jpg b/samples/grafitstudio/faces/Anya0091.jpg new file mode 100644 index 0000000..6a70730 Binary files /dev/null and b/samples/grafitstudio/faces/Anya0091.jpg differ diff --git a/samples/grafitstudio/faces/nastiya-49.jpg b/samples/grafitstudio/faces/nastiya-49.jpg new file mode 100644 index 0000000..d8ba3ba Binary files /dev/null and b/samples/grafitstudio/faces/nastiya-49.jpg differ diff --git a/samples/grafitstudio/poses/Milky Liza1841.jpg b/samples/grafitstudio/poses/Milky Liza1841.jpg new file mode 100644 index 0000000..aeb1742 Binary files /dev/null and b/samples/grafitstudio/poses/Milky Liza1841.jpg differ diff --git a/samples/grafitstudio/poses/maria 8 febriary0028.jpg b/samples/grafitstudio/poses/maria 8 febriary0028.jpg new file mode 100644 index 0000000..d995af8 Binary files /dev/null and b/samples/grafitstudio/poses/maria 8 febriary0028.jpg differ diff --git a/samples/grafitstudio/poses/nastiya-411.jpg b/samples/grafitstudio/poses/nastiya-411.jpg new file mode 100644 index 0000000..ca8bd6e Binary files /dev/null and b/samples/grafitstudio/poses/nastiya-411.jpg differ diff --git a/samples/grafitstudio/poses/pose0003.jpg b/samples/grafitstudio/poses/pose0003.jpg new file mode 100644 index 0000000..c979bdd Binary files /dev/null and b/samples/grafitstudio/poses/pose0003.jpg differ diff --git a/samples/grafitstudio/poses/pose0138.jpg b/samples/grafitstudio/poses/pose0138.jpg new file mode 100644 index 0000000..31cc921 Binary files /dev/null and b/samples/grafitstudio/poses/pose0138.jpg differ diff --git a/samples/grafitstudio/poses/pose0276.jpg b/samples/grafitstudio/poses/pose0276.jpg new file mode 100644 index 0000000..84926a3 Binary files /dev/null and b/samples/grafitstudio/poses/pose0276.jpg differ diff --git a/src/sampleData.ts b/src/sampleData.ts index 1be0566..42f1f63 100644 --- a/src/sampleData.ts +++ b/src/sampleData.ts @@ -330,4 +330,59 @@ export var sampleImages: SampleProviderEntry[] = [ }, ], }, + + // grafit studio + { + author: "Grafit Studio", + author_url: "https://www.artstation.com/grafit/store", + requirement: "", + images: [ + { + category: "faces", + images: [ + { + path: "grafitstudio/faces/Anya0039.jpg", + tags: ["expression Sad", "facial_hair No Facial Hair", "bodies Women"], + }, + { + path: "grafitstudio/faces/Anya0091.jpg", + tags: ["expression Sad", "facial_hair No Facial Hair", "bodies Women"], + }, + { + path: "grafitstudio/faces/nastiya-49.jpg", + tags: ["facial_hair No Facial Hair", "bodies Women"], + }, + ], + }, + { + category: "poses", + images: [ + { + path: "grafitstudio/poses/maria 8 febriary0028.jpg", + tags: ["bodies Women", "clothing Nude", "energy Action"], + }, + { + path: "grafitstudio/poses/Milky Liza1841.jpg", + tags: ["bodies Women", "clothing Nude", "energy Stationary"], + }, + { + path: "grafitstudio/poses/nastiya-411.jpg", + tags: ["bodies Women", "clothing Clothed", "energy Action"], + }, + { + path: "grafitstudio/poses/pose0003.jpg", + tags: ["bodies Women", "clothing Clothed", "energy Action"], + }, + { + path: "grafitstudio/poses/pose0138.jpg", + tags: ["bodies Women", "clothing Clothed", "energy Stationary"], + }, + { + path: "grafitstudio/poses/pose0276.jpg", + tags: ["bodies Women", "clothing Clothed", "energy Action"], + }, + ], + }, + ], + }, ];