summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/godblessing.h
blob: b9bbb3a7fbe6d15abe6507fceb71060ef3feab25 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
 * @file
 * @brief Functions for gods blessing followers.
**/

#ifndef BLESS_H
#define BLESS_H

#include "player.h"

void gift_ammo_to_orc(monster* orc, bool initial_gift = false);

bool bless_follower(monster* follower = NULL,
                    god_type god = you.religion,
                    bool force = false);

#endif