HomeUser Control Panel (unavailable in archive)ForumsTutorialsArt GalleryResourcesMaps

damage types

11-06-2006, 09:47 PM#1
Buriza
i was making a trigger using unit- deal damage and after making it deal chaos damage it had another option to have it deal fire, cold, force and others. what do these damage types do? when i tested it they didnt have any special effects or buffs, just damage. if anyone can fill me in on this id appreciate it. hope i posted in the right place.

thanks
11-06-2006, 09:51 PM#2
Anitarf
As far as I know the damage types have no gameplay effect whatsoever.
11-07-2006, 01:17 AM#3
zen87
Quote:
* Appendix B : Attack Types
¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
I'd rather suggest you to use variables for this, but unfortunally, blizzard screwed the
types disallowing us to make damage or attack type variables. So there are the instructions
for them in JASS, first thing is the thing you have to insert and second thing is the description

Attack types: (how they act depends on armor)

ATTACK_TYPE_NORMAL Spell
ATTACK_TYPE_MELEE Melee
ATTACK_TYPE_PIERCE Pierce
ATTACK_TYPE_SIEGE Siege
ATTACK_TYPE_MAGIC Magic
ATTACK_TYPE_CHAOS Chaos
ATTACK_TYPE_HERO Hero

I think that the attack type commonly used by spells is chaos, otherwise it is Magic-
¯¯¯¯¯
* Appendix C : Damage Types
¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯¯
I'd rather suggest you to use variables for this, but unfortunally, blizzard screwed the
types disallowing us to make damage or attack type variables. So there are the instructions
for them in JASS, first thing is the thing you have to insert and second thing is the description

Damage types: (how they act depends on tft magic things:
- magical damage is buffed by etheral and resisted by spell immunes (normal spells)
- phisical damage is resisted by ethereal and is able to affect spell immunes (passive spells)
- Universal is buffed by ethereal and can even affect spell immunes (ultimates)

DAMAGE_TYPE_FIRE Magical
DAMAGE_TYPE_COLD Magical
DAMAGE_TYPE_LIGHTNING Magical
DAMAGE_TYPE_DIVINE Magical
DAMAGE_TYPE_MAGIC Magical
DAMAGE_TYPE_SONIC Magical
DAMAGE_TYPE_FORCE Magical
DAMAGE_TYPE_DEATH Magical
DAMAGE_TYPE_MIND Magical
DAMAGE_TYPE_PLANT Magical
DAMAGE_TYPE_DEFENSIVE Magical
DAMAGE_TYPE_SPIRIT_LINK Magical
DAMAGE_TYPE_SHADOW_STRIKE Magical

DAMAGE_TYPE_NORMAL Phisical
DAMAGE_TYPE_ENHANCED Phisical
DAMAGE_TYPE_POISON Phisical
DAMAGE_TYPE_DISEASE Phisical
DAMAGE_TYPE_ACID Phisical
DAMAGE_TYPE_DEMOLITION Phisical
DAMAGE_TYPE_SLOW_POISON Phisical

DAMAGE_TYPE_UNKNOWN Universal
DAMAGE_TYPE_UNIVERSAL Universal
from vex's handy caster sys's Damage and Target Options tutorial.
11-07-2006, 01:18 AM#4
Buriza
thanks. gotta find some new way to make elemental damage in rpg now.