feat: gameover with firsk attack

This commit is contained in:
mcolonna 2024-04-16 20:05:11 +02:00
parent a492a9a411
commit 3ca6fb18b2
70 changed files with 14324 additions and 46 deletions

7
dev/import_assets_gif.sh Executable file
View file

@ -0,0 +1,7 @@
#!/bin/sh
for PNG in $(find . -type f -name "*.gif")
do
convert "$PNG" -alpha opaque "${PNG%.gif}.xpm"
convert "$PNG" -alpha extract "${PNG%.gif}.alpha.xpm"
rm "$PNG"
done