diff options
author | chai <chaifix@163.com> | 2022-04-23 00:01:46 +0800 |
---|---|---|
committer | chai <chaifix@163.com> | 2022-04-23 00:01:46 +0800 |
commit | 747a355b8a7d273264ce1d8f1848633f8fa52c47 (patch) | |
tree | 0892c72aa6be72f2b6c0e02dc6a660574691c1df /SurvivalTest/Assets/Scripts/Equips/Equip_MightyGlove.cs | |
parent | 64eeb50eb855d1166d41bd25b58a34919a49589d (diff) |
+ gem
Diffstat (limited to 'SurvivalTest/Assets/Scripts/Equips/Equip_MightyGlove.cs')
-rw-r--r-- | SurvivalTest/Assets/Scripts/Equips/Equip_MightyGlove.cs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/SurvivalTest/Assets/Scripts/Equips/Equip_MightyGlove.cs b/SurvivalTest/Assets/Scripts/Equips/Equip_MightyGlove.cs new file mode 100644 index 0000000..1af4143 --- /dev/null +++ b/SurvivalTest/Assets/Scripts/Equips/Equip_MightyGlove.cs @@ -0,0 +1,15 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +/// <summary> +/// 超凡手套,集齐五颗宝石饰品解锁超武 +/// </summary> +public class Equip_MightyGlove : EquipBase +{ + public override AutoMode autoMode => AutoMode.Interval; + + public override void OnTrigger(GameObject owner) + { + } +}
\ No newline at end of file |