Mobs

From DSP Wiki
Revision as of 07:04, 25 June 2018 by Delaide (Talk | contribs) (cmbSkill: update cmbskill table)

Jump to: navigation, search

Contents

mob droplist

dropId

The ID assigned to the drop

dropType

What kind of drop the items are:

droptypeid drop type
0 DROP_NORMAL
1 DROP_GROUPED
2 DROP_STEAL
4 DROP_DESPOIL

Normal items drop upon mob death

Grouped unknown (Teo will need to clarify)

Steal items are stolen

Despoil items are stolen on use of despoil ability (separate table from steal)

groupId

Unknown use, all values are 0

groupRate

Unknown use, all values are 1000.

itemId

The id of the item that can drop from that dropid list. Check ffxiah or ffxidb to determine what the item is.

itemRate

The rate of drop (in .1% increments, example, a 10 would mean a 1% drop rate, and 1000 would mean a 100% drop rate)

mob family mods

familyid

ID of specific families of monsters Full listing can be found in the mob_family_system sql table.

modid

Unsure yet, need to figure this out

value

Value of the mod effect

is mob mod

If it is a generic mod or calls a mobskills lua.

mob family system

familyid

The ID for a certain family

family

The name of the monster family (I am not creating a table for over 500 families. Go check the SQL file yourself...)

systemid & system

Monster ecosystems, or what "type" of monster it is. Found in src/map/entities/battleentity.h

Ecosystem Ecosystem ID
SYSTEM_ERROR 0
SYSTEM_AMORPH 1
SYSTEM_AQUAN 2
SYSTEM_ARCANA 3
SYSTEM_ARCHAICMACHINE 4
SYSTEM_AVATAR 5
SYSTEM_BEAST 6
SYSTEM_BEASTMEN 7
SYSTEM_BIRD 8
SYSTEM_DEMON 9
SYSTEM_DRAGON 10
SYSTEM_ELEMENTAL 11
SYSTEM_EMPTY 12
SYSTEM_HUMANOID 13
SYSTEM_LIZARD 14
SYSTEM_LUMORIAN 15
SYSTEM_LUMINION 16
SYSTEM_PLANTOID 17
SYSTEM_UNCLASSIFIED 18
SYSTEM_UNDEAD 19
SYSTEM_VERMIN 20
SYSTEM_VORAGEAN 21

mobsize

The size of the monster

speed

The speed of the monster

HP

The monsters base HP at level 1

MP

The monsters base MP at level 1

STR

The monsters base STR at level 1

DEX

The monsters base DEX at level 1

VIT

The monsters base VIT at level 1

AGI

The monsters base AGI at level 1

INT

The monsters base INT at level 1

MND

The monsters base MND at level 1

CHR

The monsters base CHR at level 1

ATT

The monsters base ATT at level 1

DEF

The monsters base DEF at level 1

ACC

The monsters base ACC at level 1

EVA

The monsters base EVA at level 1

Slash

The multiplier for damage to a monster from this kind of attack. (example, 1 = normal damage, .5 would be half damage, 2 would be double damage)

Pierce

The multiplier for damage to a monster from this kind of attack. (example, 1 = normal damage, .5 would be half damage, 2 would be double damage)

H2H

The multiplier for damage to a monster from this kind of attack. (example, 1 = normal damage, .5 would be half damage, 2 would be double damage)

Impact

The multiplier for damage to a monster from this kind of attack. (example, 1 = normal damage, .5 would be half damage, 2 would be double damage)

Fire

The multiplier for damage to a monster from this kind of attack. (example, 1 = normal damage, .5 would be half damage, 2 would be double damage)

Ice

The multiplier for damage to a monster from this kind of attack. (example, 1 = normal damage, .5 would be half damage, 2 would be double damage)

Wind

The multiplier for damage to a monster from this kind of attack. (example, 1 = normal damage, .5 would be half damage, 2 would be double damage)

Earth

The multiplier for damage to a monster from this kind of attack. (example, 1 = normal damage, .5 would be half damage, 2 would be double damage)

Lightning

The multiplier for damage to a monster from this kind of attack. (example, 1 = normal damage, .5 would be half damage, 2 would be double damage)

Water

The multiplier for damage to a monster from this kind of attack. (example, 1 = normal damage, .5 would be half damage, 2 would be double damage)

Light

The multiplier for damage to a monster from this kind of attack. (example, 1 = normal damage, .5 would be half damage, 2 would be double damage)

Dark

The multiplier for damage to a monster from this kind of attack. (example, 1 = normal damage, .5 would be half damage, 2 would be double damage)

Element

Unsure, still need to research

detects

What the monster detects Still need to create the table

charmable

If the monster is able to be charmed.

mob groups

groupid

The monster group ID

poolid

The monster pool ID Please see mob_pools to identify the monsters in a specific ID.

zoneid

The zone ID the monsters are found in. Still need to define the zones

respawntime

How long before a monster respawns.

spawntype

How the monster spawns Still need to research for what the values mean

dropid

The dropid for the monster group Check the mob_droplist table for this information

HP

The amount of HP the monster has.

MP

The amount of MP the monster has.

minLevel

The minimum level of the monster

maxLevel

The maximum level of the monster

allegiance

Unsure, still need to research

mob pets

mob_mobid

Unsure if this is the pob pet ID or the ID of the mob the pet belongs to...

pet_offset

Unsure, still need to research

job

The pet's master's "job".

jobid job
9 BST
14 DRG
15 SMN
18 PUP

mob pools

poolid

The ID of that mob pool

name & packet_name

Name of that mob Name and packet name are almost always the same.

familyid

The family ID of the monster. Please see mob_family_system for the names of each ID.

HEX(modelid)

The hex value of the model ID

mJob

The monster's main job.

Job name Job ID
NONE 0
WAR 1
MNK 2
WHM 3
BLM 4
RDM 5
THF 6
PLD 7
DRK 8
BST 9
BRD 10
RNG 11
SAM 12
NIN 13
DRG 14
SMN 15
BLU 16
COR 17
PUP 18
DNC 19
SCH 20
GEO 21
RUN 22

sJob

Monster's sub job (Please see table above for job ID information)

cmbSkill

Monster's combat skill

skill ID Weapon Skill Type
0 None
1 Hand-to-hand
2 Dagger
3 Sword
4 Greatsword
5 Axe
6 Great Axe
7 Scythe
8 Polearm
9 Katana
10 Great Katana
11 Club
12 Staff

cmbDelay

The attack delay

cmbDmgMult

The damage multiplier (if the monster hits harder than normal)

behavior

The behavior of the monster

Behavior name Behavior ID
NONE 0
NO_DESPAWN 1
STANDBACK 2
RAISABLE 4
AGGRO_AMBUSH 512
NO_TURN 1024

aggro

If the monster aggros, and what it aggros to Still need to find values for table

true_detection

If the monster has "true" detection (ie. Truesight, truehearing, etc) Binary, it either has or doesn't have.

links

If the monster links and what it links to Still need to find values for table

mobType

Unknown, need to research

immunity

What the monster is immune to. Bitmask, so calculate using bitmask values.

Immunity name Immunity ID
IMMUNITY_NONE 0
IMMUNITY_SLEEP 1
IMMUNITY_GRAVITY 2
IMMUNITY_BIND 4
IMMUNITY_STUN 8
IMMUNITY_SILENCE 16
IMMUNITY_PARALYZE 32
IMMUNITY_BLIND 64
IMMUNITY_SLOW 128
IMMUNITY_POISON 256
IMMUNITY_ELEGY 512
IMMUNITY_REQUIEM 1024

name_prefix

Unknown, need to research

flag

Unknown, need to research

entityFlags

Unknown, need to research

animationsub

Unknown, need to research

hasSpellScript

If the monster has a spell script. Still need to find values for table

spellList

The monsters spell list. Check spell lists in mob_spell_lists table.

namevis

Unknown, need to research

roamflag

Unknown, need to research

skill_list_id

Monster's skill list. Check skill lists under mob_skill_lists

mob pool mods

poolid

modid

value

is_mob_mod

mob skills

mob_skill_id

mob_anim_id

mob_skill_name

mob_skill_aoe

mob_skill_distance

mob_anim_time

mob_prepare_time

mob_valid_targets

mob_skill_flag

mob_skill_param

knockback

primary_sc

secondary_sc

tertiary_sc

mob skill lists

skill_list_name

skill_list_id

mob_skill_id

mob spawn mods

mobid

modid

value

is_mob_mod

mob spawn points

mobid

mobname

polutils_name

groupid

pos_x

pos_y

pos_z

pos_rot

mob spell lists

spell_list_name

spell_list_id

spell_id

min_level

max_level

nm spawn points

mobid

pos

pos_x

pos_y

pos_z