basic reward system working

This commit is contained in:
Mikhail Thompson
2024-06-28 13:48:43 +03:00
parent 91a6ee3b3d
commit 28f6473bb9
9 changed files with 148 additions and 10 deletions

View File

@@ -0,0 +1,31 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace nksrv.StaticInfo
{
public static class StageCompletionReward
{
// <Stage ID, Reward data>
public static readonly Dictionary<int, NetRewardData> RewardData =
new() {
{ 6000001, new NetRewardData() { Currency = {
new NetCurrencyData() { Type = (int)CurrencyType.Gold, Value = 500 },
new NetCurrencyData() { Type = (int)CurrencyType.CharacterExp , Value = 600 }
} }
},
{ 6000002, new NetRewardData() { Currency = {
new NetCurrencyData() { Type = (int)CurrencyType.Gold, Value = 500 },
new NetCurrencyData() { Type = (int)CurrencyType.CharacterExp , Value = 600 }
} }
},
{ 6000003, new NetRewardData() { Currency = {
new NetCurrencyData() { Type = (int)CurrencyType.Gold, Value = 500 },
new NetCurrencyData() { Type = (int)CurrencyType.CharacterExp , Value = 600 }
} }
},
};
}
}