-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make it possible to set a cooldown on item collection from skills. Th…
…is acts as a minimal interval between gains
- Loading branch information
Showing
12 changed files
with
134 additions
and
33 deletions.
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
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
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
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
1 change: 0 additions & 1 deletion
1
src/RavenNest.BusinessLogic/Game/Processors/Tasks/CraftingTaskProcessor.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
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
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
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,8 @@ | ||
namespace RavenNest.DataModels | ||
{ | ||
public partial class Achievement : Entity<Achievement> | ||
{ | ||
private string name; public string Name { get => name; set => Set(ref name, value); } | ||
private string description; public string Description { get => description; set => Set(ref description, value); } | ||
} | ||
} |
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,11 @@ | ||
using System; | ||
|
||
namespace RavenNest.DataModels | ||
{ | ||
public partial class AchievementReward : Entity<Achievement> | ||
{ | ||
private Guid achievementId; public Guid AchievementId { get => achievementId; set => Set(ref achievementId, value); } | ||
private int rewardType; public int RewardType { get => rewardType; set => Set(ref rewardType, value); } | ||
private long rewardAmount; public long RewardAmount { get => rewardAmount; set => Set(ref rewardAmount, value); } | ||
} | ||
} |
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,11 @@ | ||
using System; | ||
|
||
namespace RavenNest.DataModels | ||
{ | ||
public partial class CharacterAchievement : Entity<CharacterAchievement> | ||
{ | ||
private Guid achievementId; public Guid AchievementId { get => achievementId; set => Set(ref achievementId, value); } | ||
private Guid characterId; public Guid CharacterId { get => characterId; set => Set(ref characterId, value); } | ||
private DateTime achieved; public DateTime Achieved { get => achieved; set => Set(ref achieved, value); } | ||
} | ||
} |
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
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,11 @@ | ||
using System; | ||
|
||
namespace RavenNest.DataModels | ||
{ | ||
public partial class UserAchievement : Entity<UserAchievement> | ||
{ | ||
private Guid achievementId; public Guid AchievementId { get => achievementId; set => Set(ref achievementId, value); } | ||
private Guid userId; public Guid UserId { get => userId; set => Set(ref userId, value); } | ||
private DateTime achieved; public DateTime Achieved { get => achieved; set => Set(ref achieved, value); } | ||
} | ||
} |