ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/arch/spell/Rune/genrunes
Revision: 1.7
Committed: Sat Mar 3 01:13:55 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
CVS Tags: pre_second_normalise_run, post_second_normalise_run, rel-2_0, rel-2_1
Changes since 1.6: +25 -25 lines
Log Message:
re-applied all non-normalising patches (hopefully). beat me if i am wrong, but kepe in mind it was damn complicated

File Contents

# User Rev Content
1 root 1.1 #!/bin/bash
2    
3     # simple script to replace old runes by higher quality graphics (schmorp@schmorp.de)
4     # this is put into the public domain
5    
6     (
7     while read file text color font; do
8     font=$(fc-list "$font" file | tail -1 | sed -e 's/..$//')
9 root 1.2 convert -size 32x32 xc:none -set hinting on \
10 root 1.1 -font "$font" -pointsize 32 -fill "$color" -gravity center -draw "text 0,0 \"$text\"" "$file"
11     pngx "$file" >/dev/null
12     done
13     ) <<EOF
14 root 1.7 rune_frost.base.x11.png ⁎ lightblue Everson Mono Unicode
15     rune_sp_res.base.x11.png ⁑ green Everson Mono Unicode
16     drain_magic.base.x11.png ⁑ gray70 Everson Mono Unicode
17     rune_transfer.base.x11.png ⁑ gray70 Everson Mono Unicode
18     rune_frost.base.x11.png ⁎ lightblue Everson Mono Unicode
19     rune_summon_air.base.x11.png あ white Kochi Mincho
20     rune_summon.base.x11.png あ black Kochi Mincho
21     rune_sum_water.base.x11.png あ blue Kochi Mincho
22     rune_sum_fire.base.x11.png あ red Kochi Mincho
23     rune_sum_earth.base.x11.png あ brown Kochi Mincho
24     rune_shock.base.x11.png ア yellow Kochi Mincho
25     rune_pcloud.base.x11.png す seagreen Kochi Mincho
26     rune_paralysis.base.x11.png せ yellow Kochi Mincho
27     rune_lightning.base.x11.png ウ yellow Kochi Mincho
28     rune_heal.base.x11.png † lightgreen Kochi Mincho
29     rune_fireball.base.x11.png ス red Kochi Mincho
30     rune_fire.base.x11.png ユ red Kochi Mincho
31     rune_death.base.x11.png ゆ black Kochi Mincho
32     rune_confusion.base.x11.png そ black Kochi Mincho
33     rune_bomb.base.x11.png ぶ red Kochi Mincho
34     rune_blast.base.x11.png ふ orange Kochi Mincho
35     rune_antimagic.base.x11.png ※ grey40 Kochi Mincho
36     glyph.base.x11.png 文 orange Kochi Mincho
37     generic_rune.base.x11.png を black Kochi Mincho
38     rune_blightning.base.x11.png ケ yellow Kochi Mincho
39 root 1.1 EOF
40 root 1.4