start adding fishing

This commit is contained in:
Lan
2020-02-20 22:04:02 +02:00
parent 6cff0b753b
commit d6fc3878d6
6 changed files with 292 additions and 41 deletions

View File

@@ -1,17 +1,25 @@
//namespace Kehyeedra3.Services.Models
//{
// class Fishing
// {
// public ulong UserId { get; set; } = 0;
// public ulong LastFish { get; set; } = 0;
// public ulong CFish { get; set; } = 0;
// public ulong CVal {get; set;} = 0;
// public ulong UFish { get; set; } = 0;
// public ulong UVal {get; set;} = 0;
// public ulong RFish { get; set; } = 0;
// public ulong RVal { get; set; } = 0;
// public ulong LFish { get; set; } = 0;
// public ulong LVal { get; set; } = 0;
// public ulong XP { get; set; } = 0;
// }
//}
namespace Kehyeedra3.Services.Models
{
public class Fishing
{
public ulong Id { get; set; } = 0; // this is userid incase you get alzheimers you stupid baby waa waa
public ulong LastFish { get; set; } = 0;
public ulong Xp { get; set; } = 0;
public ulong TXp { get; set; } = 0;
public ulong Lvl { get; set; } = 0;
public ulong CFish1 { get; set; } = 0;
public ulong CFish2 { get; set; } = 0;
public ulong CFish3 { get; set; } = 0;
public ulong UFish1 { get; set; } = 0;
public ulong UFish2 { get; set; } = 0;
public ulong UFish3 { get; set; } = 0;
public ulong RFish1 { get; set; } = 0;
public ulong RFish2 { get; set; } = 0;
public ulong RFish3 { get; set; } = 0;
public ulong LFish { get; set; } = 0;
}
}