mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-17 00:44:49 +01:00
36 lines
750 B
C#
36 lines
750 B
C#
using FullInspector;
|
|
|
|
namespace MoleMole.Config
|
|
{
|
|
public abstract class ConfigEntityAnimEvent
|
|
{
|
|
public string Predicate = "Always";
|
|
|
|
public string Predicate2 = "Always";
|
|
|
|
[InspectorNullable]
|
|
public ConfigEntityAttackPattern AttackPattern;
|
|
|
|
[InspectorNullable]
|
|
public ConfigEntityAttackProperty AttackProperty;
|
|
|
|
[InspectorNullable]
|
|
public ConfigEntityCameraShake CameraShake;
|
|
|
|
[InspectorNullable]
|
|
public ConfigEntityAttackEffect AttackEffect;
|
|
|
|
[InspectorNullable]
|
|
public ConfigEntityTriggerAbility TriggerAbility;
|
|
|
|
[InspectorNullable]
|
|
public ConfigTriggerEffectPattern TriggerEffectPattern;
|
|
|
|
[InspectorNullable]
|
|
public ConfigTimeSlow TimeSlow;
|
|
|
|
[InspectorNullable]
|
|
public ConfigTintCamera TriggerTintCamera;
|
|
}
|
|
}
|