加入很多新内容,这波一块交了

This commit is contained in:
FloatGaming
2026-04-08 20:53:41 +08:00
parent d9376833b6
commit 85dfff28dd
128 changed files with 14546 additions and 474 deletions
+5 -1
View File
@@ -1,4 +1,4 @@
using UnityEngine;
using UnityEngine;
using System.Collections.Generic;
using Spine.Unity;
@@ -45,6 +45,9 @@ public class EnemyData_SO : ScriptableObject
[Header("Inspector")]
public EnemyType enemyType = EnemyType.Simple;
[Header("Reward")]
[Tooltip("Flat bounty score bonus added on top of the HP-based bounty formula.")]
public int enemyBountyBonus = 0;
public enum EnemyType
{
@@ -132,3 +135,4 @@ public class EnemyData_SO : ScriptableObject
[Range(0f, 1f)]
public float manaGainOnDamagePercent = 0.2f; // default 20%
}