mirror of
https://github.com/oshima-studios/OshimaGameModule.git
synced 2025-12-05 08:09:04 +00:00
14 lines
565 B
C#
14 lines
565 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.Orange;
|
|
}
|
|
}
|