add room for noble faces, set up noble letters, make chairs

This commit is contained in:
xenofem 2022-07-27 06:00:47 -04:00
parent 4a0f5de37f
commit cec6d8b93a
7 changed files with 115 additions and 79 deletions

View file

@ -1,12 +1,13 @@
suits := puppets bread wheels blades chairs cards
values := 1 2 3 4 5 6 traveler knight wizard noble
nobles := count-of-cards queen-of-puppets earl-of-bread scion-of-blades prince-of-wheels regent-of-chairs
cards := $(foreach suit,$(suits),$(foreach value,$(values),$(value)-$(suit)))
svgdeck: $(foreach card,$(cards),build/$(card).svg)
pngdeck: $(foreach card,$(cards),build/$(card).png)
build/%.svg: deck.asy cards.asy numerals.asy $(foreach suit,$(suits),$(suit).asy)
build/%.svg: deck.asy cards.asy numerals.asy suits.asy nobles.asy $(foreach suit,$(suits),$(suit).asy) $(foreach noble,$(nobles),$(noble).asy)
mkdir -p build
sh -c "buf_size=5000000 asy -globalwrite deck.asy"