diff options
author | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-08-22 18:53:11 +0000 |
---|---|---|
committer | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-08-22 18:53:11 +0000 |
commit | 507d5f485deddbd551d844aefb5c6646ad18b461 (patch) | |
tree | de1c61b30e8f77d801aa1b6e46f310e46d26253d /src/map/mercenary.c | |
parent | db0184a272d0fbb1b09d4eba6527181b85890357 (diff) | |
download | hercules-507d5f485deddbd551d844aefb5c6646ad18b461.tar.gz hercules-507d5f485deddbd551d844aefb5c6646ad18b461.tar.bz2 hercules-507d5f485deddbd551d844aefb5c6646ad18b461.tar.xz hercules-507d5f485deddbd551d844aefb5c6646ad18b461.zip |
- Mercenary data structures.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13110 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/mercenary.c')
-rw-r--r-- | src/map/mercenary.c | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/map/mercenary.c b/src/map/mercenary.c index da58da7ee..d3b2b7677 100644 --- a/src/map/mercenary.c +++ b/src/map/mercenary.c @@ -37,12 +37,22 @@ #include <string.h> #include <math.h> - //Better equiprobability than rand()% [orn] #define rand(a, b) (a+(int) ((float)(b-a+1)*rand()/(RAND_MAX+1.0))) +/*========================================== + * Mercenary's System + *------------------------------------------*/ struct s_mercenary_db mercenary_db[MAX_MERCENARY_CLASS]; // Mercenary Database +int merc_create(struct map_session_data *sd, int class_) +{ + return 1; +} + +/*========================================== + * Homunculus's System + *------------------------------------------*/ struct s_homunculus_db homunculus_db[MAX_HOMUNCULUS_CLASS]; //[orn] struct skill_tree_entry hskill_tree[MAX_HOMUNCULUS_CLASS][MAX_SKILL_TREE]; |