blob: b75c907e33cae5a3582c35ee448be5660fbbb0e9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
// Copyright (c) Hercules Dev Team, licensed under GNU GPL.
// See the LICENSE file
// Portions Copyright (c) Athena Dev Teams
#ifndef CONFIG_GENERAL_H
#define CONFIG_GENERAL_H
/**
* Hercules configuration file (http://hercules.ws)
**/
/**
* Default Magical Reflection Behavior
* - When reflecting, reflected damage depends on gears caster is wearing, not target (official)
* - When disabled damage depends on gears target is wearing, not caster. (old/eathena)
* @values 1 (enabled) or 0 (disabled)
**/
#define MAGIC_REFLECTION_TYPE 1
/**
* Spirit Sphere Limitation
**/
#define MAX_SPIRITBALL 15
/**
* Spirit Charm Limitation
**/
#define MAX_SPIRITCHARM 10
/**
* when enabled, reflect damage doesn't bypass devotion (and thus damage is passed to crusader)
* uncomment to enable
**/
//#define DEVOTION_REFLECT_DAMAGE
/**
* No settings past this point
**/
#endif // CONFIG_GENERAL_H
|