添加新物品至模组工厂

This commit is contained in:
milimoe 2024-12-18 01:55:31 +08:00
parent 7201a35cfb
commit 650dd6bb4e
Signed by: milimoe
GPG Key ID: 05D280912DA6C69E
2 changed files with 6 additions and 0 deletions

View File

@ -1,6 +1,7 @@
using Milimoe.FunGame.Core.Api.Utility;
using Milimoe.FunGame.Core.Entity;
using Oshima.FunGame.OshimaModules.Items;
using Oshima.FunGame.OshimaModules.Items.Consumable;
namespace Oshima.FunGame.OshimaModules
{
@ -29,6 +30,9 @@ namespace Oshima.FunGame.OshimaModules
(long)AccessoryID.15 => new 15(),
(long)AccessoryID.25 => new 25(),
(long)AccessoryID.35 => new 35(),
(long)ConsumableID. => new (),
(long)ConsumableID. => new (),
(long)ConsumableID. => new (),
_ => null,
};
};

View File

@ -3,6 +3,7 @@ using Milimoe.FunGame.Core.Entity;
using Oshima.FunGame.OshimaModules.Effects.ItemEffects;
using Oshima.FunGame.OshimaModules.Effects.OpenEffects;
using Oshima.FunGame.OshimaModules.Items;
using Oshima.FunGame.OshimaModules.Items.Consumable;
using Oshima.FunGame.OshimaModules.Skills;
namespace Oshima.FunGame.OshimaModules
@ -68,6 +69,7 @@ namespace Oshima.FunGame.OshimaModules
(long)PassiveID. => new (),
(long)PassiveID. => new (),
(long)ItemPassiveID. => new (),
(long)ItemActiveID. => new (),
_ => null
};
};