Files
spellforge/scripts/autoloads/status_id.gd
T
2026-07-20 10:56:52 +08:00

15 lines
549 B
GDScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
## StatusID — 状态效果整数 IDAutoload: StatusID
## 规则:禁止使用 StatusType.XXX 枚举(跨切片约束 P6-N30),必须用本常量。
## 新增状态从 9 起递增,不得复用或跳号。
extends Node
const BURN: int = 1
const FREEZE: int = 2
const POISON: int = 3
const WET: int = 4
const OILY: int = 5
const STUN: int = 6
const COMBO_MARK: int = 7 # 连击叠加(consecutive_hits_stacking.md
const VULNERABILITY: int = 8 # 易伤标记
# 新增从 9 起