Files
Cielonos/Assets/Scripts/MainGame/Items/Extenders/FutureWand/BlackHoleDisplacer.cs
SoulliesOfficial 347237443f FututeWand初步
2026-07-01 06:32:50 -04:00

17 lines
471 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using UnityEngine;
namespace Cielonos.MainGame.Inventory.Collections
{
/// <summary>
/// “黑洞”位移器 / “Black Hole” Displacer
/// FutureWand的扩展器使重攻击产生的黑洞向前/后移动攻击段数由4变为8
/// </summary>
public class BlackHoleDisplacer : ExtenderBase
{
public override void OnObtained()
{
hostType = typeof(FutureWand);
base.OnObtained();
}
}
}