mirror of
https://github.com/oshima-studios/OshimaGameModule.git
synced 2025-12-05 16:16:35 +00:00
14 lines
482 B
C#
14 lines
482 B
C#
using Milimoe.FunGame.Core.Entity;
|
|
using Milimoe.FunGame.Core.Library.Constant;
|
|
|
|
namespace Oshima.FunGame.OshimaModules.Items
|
|
{
|
|
public class 奖券() : Item(ItemType.SpecialItem)
|
|
{
|
|
public override long Id => (long)SpecialItemID.奖券;
|
|
public override string Name => "奖券";
|
|
public override string Description => "进行抽卡时,优先使用奖券替代金币。";
|
|
public override QualityType QualityType => QualityType.Blue;
|
|
}
|
|
}
|