add room for noble faces, set up noble letters, make chairs
This commit is contained in:
parent
4a0f5de37f
commit
cec6d8b93a
7 changed files with 115 additions and 79 deletions
3
Makefile
3
Makefile
|
@ -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"
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue