server-1.12/doc/spoiler-html/weap-extract

7 lines
244 B
Plaintext

# This awk-script will find and print out all of the 'normal'
# weapons that have an additional magical effect - e.g. stake..
$4 ~ /[A-Za-z]/ && $4 !~ /Attacks: physical $/ {
printf("<tr><th> %s</th><td> - </td><td>%s</td></tr>\n",$3,$4);
}