server-master/srcs/WingsAPI.Game/Configurations/Miniland/Minigame.cs
2026-02-10 18:21:30 +01:00

35 lines
No EOL
758 B
C#

using System.Collections.Generic;
namespace WingsEmu.Game.Configurations.Miniland;
public class Minigame
{
public int Vnum { get; set; }
public MinigameType Type { get; set; }
public int MinimumLevel { get; set; }
public int MinimumReputation { get; set; }
public List<MinigameRewards> Rewards { get; set; } = new()
{
new()
{
RewardLevel = RewardLevel.FirstReward,
Rewards = new List<MinigameReward>
{
new()
{
Amount = 1,
Vnum = 1
},
new()
{
Amount = 2,
Vnum = 1014
}
}
}
};
}