1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-10 06:16:00 +00:00

crossbow:: piercing dragons

This commit is contained in:
Zeno Rogue
2023-10-29 07:57:05 +01:00
parent b2c8bb96d6
commit 1f6bee5701
3 changed files with 5 additions and 3 deletions

View File

@@ -101,7 +101,7 @@ EX int create_path() {
if(thruVine(cw2.at, cw2.peek())) continue;
if(cw2.at->monst) {
flagtype attackflags = AF_NORMAL;
flagtype attackflags = AF_BOW;
if(items[itOrbSpeed]&1) attackflags |= AF_FAST;
if(items[itOrbSlaying]) attackflags |= AF_CRUSH;
if(items[itCurseWeakness]) attackflags |= AF_WEAK;
@@ -265,7 +265,7 @@ EX void add_fire(cell *c) {
}
EX void shoot() {
flagtype attackflags = AF_NORMAL;
flagtype attackflags = AF_BOW;
if(items[itOrbSpeed]&1) attackflags |= AF_FAST;
if(items[itOrbSlaying]) attackflags |= AF_CRUSH;
if(items[itCurseWeakness]) attackflags |= AF_WEAK;