From c8f280dbc8c22e355c7536ad17f39766c8264ec3 Mon Sep 17 00:00:00 2001 From: Adam Borowski Date: Wed, 11 Nov 2009 17:02:45 +0100 Subject: Crossbows of shocking, for everyone. Launchers of holy wrath, for dpeg's angels. Neither cause additional mulching of ammo, since both the charge and blessing is temporary. Blessing and reaping cancel each other. Holy wrath launchers are a lot weaker than silver ammo, but these two stack. Plus, they're permanent while ammo is scarce. --- crawl-ref/source/artefact.cc | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'crawl-ref/source/artefact.cc') diff --git a/crawl-ref/source/artefact.cc b/crawl-ref/source/artefact.cc index fb2687526a..0ac8f3ac0c 100644 --- a/crawl-ref/source/artefact.cc +++ b/crawl-ref/source/artefact.cc @@ -769,6 +769,12 @@ void static _get_randart_properties(const item_def &item, { proprt[ARTP_BRAND] = SPWPN_NORMAL; } + + if (atype == WPN_CROSSBOW && one_chance_in(5) + || atype == WPN_HAND_CROSSBOW && one_chance_in(10)) + { + proprt[ARTP_BRAND] = SPWPN_ELECTROCUTION; + } } } -- cgit v1.2.3-54-g00ecf