This commit is contained in:
2026-04-09 05:03:34 -04:00
parent 464377e03a
commit f291435905
123 changed files with 2 additions and 10569 deletions

13
art/cards/fix.sh Normal file
View File

@@ -0,0 +1,13 @@
for file in \
balance.png beast.png bricklayer.png comet.png cripple.png donjon.png euryale.png fates.png flames.png fool.png \
gem.png idiot.png jester.png key.png knight.png leper.png moon.png owl.png rogue.png ruin.png skull.png \
star.png sun.png talons.png throne.png tiger.png vizier.png void.png
do
sepia="${file%.png}_sepia.png"
blend="${file%.png}_blend.png"
# Step 1: Create rich brown sepia version using grayscale + fill + tint
# magick.exe convert "$file" -colorspace Gray -fill "#704214" -tint 80 "$sepia"
magick.exe convert "$sepia" "$file" -compose blend -define compose:args=40,60 -composite "$blend"
done