mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-02-08 02:56:45 +01:00
19 lines
418 B
Java
19 lines
418 B
Java
package emu.grasscutter.data.binout;
|
|
|
|
import lombok.AccessLevel;
|
|
import lombok.Data;
|
|
import lombok.experimental.FieldDefaults;
|
|
|
|
@Data
|
|
@FieldDefaults(level = AccessLevel.PRIVATE)
|
|
public class ConfigGadgetCombatProperty {
|
|
float HP;
|
|
boolean isLockHP;
|
|
boolean isInvincible;
|
|
boolean isGhostToAllied;
|
|
float attack;
|
|
float defence;
|
|
float weight;
|
|
boolean useCreatorProperty;
|
|
}
|