ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/doc/spoiler-html/weap-extract
Revision: 1.2
Committed: Thu Sep 7 21:43:33 2006 UTC (17 years, 8 months ago) by pippijn
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +0 -0 lines
State: FILE REMOVED
Log Message:
Moved documents to doc/historic

File Contents

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