semi-idle-arpg/scripts/GlobalTypes.gd

32 lines
482 B
GDScript3
Raw Normal View History

# file containing type information to be referrenced by other classes
extends Node
class Ability:
enum PDmgTypes {
SLICE,
PUNCTURE,
BASH,
HACK,
SHRED,
}
enum MDmgTypes {
BURN,
FREEZE,
SHOCK,
POISON,
LIFE,
MENTAL,
RADIANT,
ARCANE,
FORCE
}
enum SModTypes {
STUN,
SLOW,
ABSORB,
SHIELD,
DOTB,
DOTE
}