示例#1
0
        protected override void ChildClone(GamePlayAction newConfig)
        {
            base.ChildClone(newConfig);
            Action_OutputPower action = ((Action_OutputPower)newConfig);

            action.OutputPower = OutputPower;
        }
示例#2
0
        protected override void ChildClone(GamePlayAction newConfig)
        {
            base.ChildClone(newConfig);
            Action_EmitProjectile action = ((Action_EmitProjectile)newConfig);

            action.ProjectileName = ProjectileName;
        }
示例#3
0
        protected override void ChildClone(GamePlayAction newConfig)
        {
            base.ChildClone(newConfig);
            Action_ApplyModifier action = ((Action_ApplyModifier)newConfig);

            action.Target       = Target.Clone();
            action.ModifierName = ModifierName;
        }
示例#4
0
        protected override void ChildClone(GamePlayAction newConfig)
        {
            base.ChildClone(newConfig);
            Action_ActOnTargets action = ((Action_ActOnTargets)newConfig);

            action.Target = Target.Clone();
            action.Action = Action.Clone();
        }
示例#5
0
        protected override void ChildClone(GamePlayAction newConfig)
        {
            base.ChildClone(newConfig);
            Action_AddAbility action = ((Action_AddAbility)newConfig);

            action.Target      = Target.Clone();
            action.AbilityName = AbilityName;
        }
示例#6
0
        protected override void ChildClone(GamePlayAction newConfig)
        {
            base.ChildClone(newConfig);
            Action_DealDamage action = ((Action_DealDamage)newConfig);

            action.Target = Target.Clone();
            action.Damage = Damage;
        }