summaryrefslogtreecommitdiff
path: root/src/map/mob.hpp
blob: 16715c45cc7050140a9bffdafd74c813088e369a (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#ifndef MOB_HPP
#define MOB_HPP

#include "mob.t.hpp"

#include "../common/mmo.hpp"
#include "../common/timer.t.hpp"
#include "../common/random.t.hpp"

#include "clif.t.hpp"
#include "map.hpp"
#include "skill.t.hpp"

struct mob_skill
{
    MobSkillState state;
    SkillID skill_id;
    short skill_lv;
    short permillage;
    interval_t casttime, delay;
    short cancel;
    MobSkillCondition cond1;
    int cond2i;
    MobSkillTarget target;
    int val[5];
    short emotion;
};

struct mob_db
{
    char name[24], jname[24];
    int lv;
    int max_hp, max_sp;
    int base_exp, job_exp;
    int atk1, atk2;
    int def, mdef;
    earray<int, ATTR, ATTR::COUNT> attrs;
    int range, range2, range3;
    // always 1
    int size;
    Race race;
    LevelElement element;
    MobMode mode;
    int speed, adelay, amotion, dmotion;
    int mutations_nr, mutation_power;
    struct
    {
        int nameid;
        random_::Fixed<int, 10000> p;
    } dropitem[8];
    int sex;
    short hair, hair_color, weapon, shield, head_top, head_mid, head_buttom, option, clothes_color; // [Valaris]
    int equip;                 // [Valaris]
    int maxskill;
    struct mob_skill skill[MAX_MOBSKILL];
};
extern struct mob_db mob_db[];

int mobdb_searchname(const char *str);
int mobdb_checkid(const int id);
int mob_once_spawn(struct map_session_data *sd,
        const char *mapname, int x, int y,
        const char *mobname, int class_, int amount, const char *event);
int mob_once_spawn_area(struct map_session_data *sd,
        const char *mapname, int x0, int y0, int x1, int y1,
        const char *mobname, int class_, int amount, const char *event);

int mob_target(struct mob_data *md, struct block_list *bl, int dist);
int mob_stop_walking(struct mob_data *md, int type);
int mob_stopattack(struct mob_data *);
int mob_spawn(int);
int mob_damage(struct block_list *, struct mob_data *, int, int);
int mob_heal(struct mob_data *, int);
int mob_get_sex(int);
short mob_get_hair(int);
short mob_get_hair_color(int);
short mob_get_weapon(int);
short mob_get_shield(int);
short mob_get_head_top(int);
short mob_get_head_mid(int);
short mob_get_head_buttom(int);
short mob_get_clothes_color(int);  //player mob dye [Valaris]
int mob_get_equip(int);       // mob equip [Valaris]
int do_init_mob(void);

int mob_delete(struct mob_data *md);
int mob_catch_delete(struct mob_data *md, BeingRemoveWhy type);
void mob_timer_delete(TimerData *, tick_t, int);

int mob_deleteslave(struct mob_data *md);

int mob_counttargeted(struct mob_data *md, struct block_list *src,
        ATK target_lv);

int mob_warp(struct mob_data *md, int m, int x, int y, BeingRemoveWhy type);

int mobskill_use(struct mob_data *md, tick_t tick, MobSkillCondition event);
int mobskill_event(struct mob_data *md, BF flag);
void mobskill_castend_id(TimerData *tid, tick_t tick, int id);
void mobskill_castend_pos(TimerData *tid, tick_t tick, int id);
int mob_summonslave(struct mob_data *md2, int *value, int amount, int flag);

void mob_reload(void);

#endif // MOB_HPP