-
Notifications
You must be signed in to change notification settings - Fork 328
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a plugin configuration for jewel of bless consumption
- Loading branch information
Showing
3 changed files
with
33 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
...GameLogic/PlayerActions/ItemConsumeActions/BlessJewelConsumeHandlerPlugInConfiguration.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// <copyright file="BlessJewelConsumeHandlerPlugInConfiguration.cs" company="MUnique"> | ||
// Licensed under the MIT License. See LICENSE file in the project root for full license information. | ||
// </copyright> | ||
|
||
namespace MUnique.OpenMU.GameLogic.PlayerActions.ItemConsumeActions; | ||
|
||
using MUnique.OpenMU.DataModel.Configuration.Items; | ||
|
||
/// <summary> | ||
/// The configuration for the <see cref="BlessJewelConsumeHandlerPlugIn"/>. | ||
/// </summary> | ||
public class BlessJewelConsumeHandlerPlugInConfiguration | ||
{ | ||
/// <summary> | ||
/// Gets or sets the items which can be repaired by consuming a bless on them. | ||
/// </summary> | ||
public ICollection<ItemDefinition> RepairTargetItems { get; set; } = new List<ItemDefinition>(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters