mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-17 00:44:49 +01:00
48 lines
737 B
C#
48 lines
737 B
C#
namespace MoleMole.Config
|
|
{
|
|
public class ConfigPropArguments
|
|
{
|
|
public bool IsTargetable;
|
|
|
|
public bool IsTriggerField;
|
|
|
|
public bool OnlyReduceHPByOne;
|
|
|
|
public float HP;
|
|
|
|
public float Attack;
|
|
|
|
public bool UseOwnerAttack;
|
|
|
|
public float EffectDuration;
|
|
|
|
public float CD;
|
|
|
|
public float Length;
|
|
|
|
public bool TriggerHitWhenFieldEnter;
|
|
|
|
public string AnimEventIDForHit;
|
|
|
|
public float Acceleration;
|
|
|
|
public float MaxMoveSpeed;
|
|
|
|
public float WarningRange;
|
|
|
|
public float EscapeRange;
|
|
|
|
public bool DieWhenFieldEnter;
|
|
|
|
public string OnKillEffectPattern;
|
|
|
|
public string OnDestroyEffectPattern;
|
|
|
|
public ConfigPropObject.E_RetreatType RetreatType;
|
|
|
|
public float Duration;
|
|
|
|
public bool CanAffectMonsters;
|
|
}
|
|
}
|