summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-11-30 11:59:49 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-11-30 11:59:49 +0000
commit8ed3bfab0f28d4257b3a262ea62f6c8d8d1cbadd (patch)
tree5506634e9d9e81c32404a480402305bf7293cf90
parent918cab578ab18e1ed47b89e8bed1bd07bc795542 (diff)
downloadcrawl-ref-8ed3bfab0f28d4257b3a262ea62f6c8d8d1cbadd.tar.gz
crawl-ref-8ed3bfab0f28d4257b3a262ea62f6c8d8d1cbadd.zip
Tweaked damage numbers on bows and longbows so they're better differentiated.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@532 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/dat/levdes.vim2
-rw-r--r--crawl-ref/source/itemprop.cc4
2 files changed, 4 insertions, 2 deletions
diff --git a/crawl-ref/source/dat/levdes.vim b/crawl-ref/source/dat/levdes.vim
index 116fd4c3a4..fa693cc694 100644
--- a/crawl-ref/source/dat/levdes.vim
+++ b/crawl-ref/source/dat/levdes.vim
@@ -3,6 +3,8 @@
" Basic Vim syntax highlighting for Dungeon Crawl Stone Soup level design
" (.des) files.
"
+" This syntax highlighting script is distributed under the terms of the
+" Crawl Public License. See licence.txt for details.
if version < 600
syntax clear
diff --git a/crawl-ref/source/itemprop.cc b/crawl-ref/source/itemprop.cc
index e3a70c440b..c189c13c55 100644
--- a/crawl-ref/source/itemprop.cc
+++ b/crawl-ref/source/itemprop.cc
@@ -322,10 +322,10 @@ static weapon_def Weapon_prop[NUM_WEAPONS] =
{ WPN_CROSSBOW, "crossbow", 5, 4, 15, 150, 8,
SK_CROSSBOWS, HANDS_TWO, SIZE_MEDIUM, MI_BOLT, false,
DAMV_NON_MELEE },
- { WPN_BOW, "bow", 4, 1, 11, 90, 2,
+ { WPN_BOW, "bow", 3, 1, 11, 90, 2,
SK_BOWS, HANDS_TWO, SIZE_MEDIUM, MI_ARROW, false,
DAMV_NON_MELEE },
- { WPN_LONGBOW, "longbow", 5, 0, 12, 120, 3,
+ { WPN_LONGBOW, "longbow", 6, 0, 12, 120, 3,
SK_BOWS, HANDS_TWO, SIZE_LARGE, MI_ARROW, false,
DAMV_NON_MELEE },
};