mirror of
https://github.com/Grasscutters/Grasscutter.git
synced 2026-05-16 14:42:53 +08:00
08fdcf6ed4
* fixed gadget hp properties and invincibility handling * Allow killing of hp locked entities, if the damage is higher then the hp Co-authored-by: hartie95 <mail@hartie95.de>
16 lines
368 B
Java
16 lines
368 B
Java
package emu.grasscutter.data.binout;
|
|
|
|
import lombok.AccessLevel;
|
|
import lombok.Data;
|
|
import lombok.experimental.FieldDefaults;
|
|
|
|
import javax.annotation.Nullable;
|
|
|
|
@Data
|
|
@FieldDefaults(level = AccessLevel.PRIVATE)
|
|
public class ConfigGadget {
|
|
// There are more values that can be added that might be useful in the json
|
|
@Nullable
|
|
ConfigGadgetCombat combat;
|
|
}
|