blob: 206f57b372faa508ed7fe828a3b249f5d28508f1 (
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
|
// 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
* - When disabled damage depends on gears target is wearing, not caster.
* @values 1 (enabled) or 0 (disabled)
**/
#define MAGIC_REFLECTION_TYPE 1
/**
* Spirit Sphere Limitation
**/
#define MAX_SPIRITBALL 15
/**
* No settings past this point
**/
#endif // _CONFIG_GENERAL_H_
|