fishing changes and stuff
This commit is contained in:
@@ -1,318 +1,536 @@
|
||||
using Discord;
|
||||
using Discord.Addons.Interactive;
|
||||
using Discord.Commands;
|
||||
using ImageMagick;
|
||||
using Kehyeedra3.Preconditions;
|
||||
using Kehyeedra3.Services.Models;
|
||||
using Microsoft.EntityFrameworkCore.ChangeTracking.Internal;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Net;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Kehyeedra3.Commands
|
||||
{
|
||||
public class Admin : InteractiveBase ///////////////////////////////////////////////
|
||||
{
|
||||
[RequireRolePrecondition(AccessLevel.ServerAdmin)]
|
||||
[Command("adddelet"), Summary("Adds a delet this image to the bot from link or image (admin only)")]
|
||||
public async Task AddDelet() //Listens for attachments
|
||||
{
|
||||
var attachments = Context.Message.Attachments;//Gets attachments as var
|
||||
foreach (var item in attachments)
|
||||
{
|
||||
Uri link = new Uri(item.Url);
|
||||
using (WebClient _webclient = new WebClient())
|
||||
{
|
||||
string location = Path.Combine(Environment.CurrentDirectory, "delet");
|
||||
if (!Directory.Exists(location))
|
||||
Directory.CreateDirectory(location);
|
||||
location += "/" + item.Filename;
|
||||
_webclient.DownloadFileAsync(link, location);
|
||||
}
|
||||
await ReplyAsync($"Delet added");
|
||||
break;
|
||||
}
|
||||
}
|
||||
[RequireRolePrecondition(AccessLevel.ServerAdmin)]
|
||||
[Command("adddelet"), Summary("Adds a delet this image to the bot from link or image (admin only)")]
|
||||
public async Task AddDelet(string url) //Listens for urls
|
||||
{
|
||||
Uri link = new Uri(url);
|
||||
using (WebClient _webclient = new WebClient())
|
||||
{
|
||||
string location = Path.Combine(Environment.CurrentDirectory, $"delet");
|
||||
if (!Directory.Exists(location))
|
||||
Directory.CreateDirectory(location);
|
||||
location += "/" + Guid.NewGuid() + ".jpg";
|
||||
_webclient.DownloadFileAsync(link, location);
|
||||
}
|
||||
await ReplyAsync($"Delet added");
|
||||
}
|
||||
[RequireRolePrecondition(AccessLevel.ServerAdmin)]
|
||||
[Command("say"), Summary("Sends given message to given channel (admin only)")]
|
||||
public async Task Say(ITextChannel channel, [Remainder]string message)
|
||||
{
|
||||
await channel.SendMessageAsync(message);
|
||||
}
|
||||
[RequireRolePrecondition(AccessLevel.BotOwner)]
|
||||
[Command("modifybot"), Summary("name")]
|
||||
public async Task ModifyBot(string _name)
|
||||
{
|
||||
//reference current bot user
|
||||
var BotCurrUser = Bot._bot.CurrentUser;
|
||||
await BotCurrUser.ModifyAsync(x =>
|
||||
{
|
||||
//sets name
|
||||
x.Username = _name;
|
||||
});
|
||||
//reply
|
||||
await ReplyAsync($"Set name to {_name}");
|
||||
}
|
||||
[RequireRolePrecondition(AccessLevel.BotOwner)]
|
||||
[Command("vbi", RunMode = RunMode.Async)]
|
||||
public async Task VerifyBankIntegrity()
|
||||
{
|
||||
using var Database = new ApplicationDbContextFactory().CreateDbContext();
|
||||
public class Admin : InteractiveBase ///////////////////////////////////////////////
|
||||
{
|
||||
[RequireRolePrecondition(AccessLevel.ServerAdmin)]
|
||||
[Command("adddelet"), Summary("Adds a delet this image to the bot from link or image (admin only)")]
|
||||
public async Task AddDelet() //Listens for attachments
|
||||
{
|
||||
var attachments = Context.Message.Attachments;//Gets attachments as var
|
||||
foreach (var item in attachments)
|
||||
{
|
||||
Uri link = new Uri(item.Url);
|
||||
using (WebClient _webclient = new WebClient())
|
||||
{
|
||||
string location = Path.Combine(Environment.CurrentDirectory, "delet");
|
||||
if (!Directory.Exists(location))
|
||||
Directory.CreateDirectory(location);
|
||||
location += "/" + item.Filename;
|
||||
_webclient.DownloadFileAsync(link, location);
|
||||
}
|
||||
await ReplyAsync($"Delet added");
|
||||
break;
|
||||
}
|
||||
}
|
||||
[RequireRolePrecondition(AccessLevel.ServerAdmin)]
|
||||
[Command("adddelet"), Summary("Adds a delet this image to the bot from link or image (admin only)")]
|
||||
public async Task AddDelet(string url) //Listens for urls
|
||||
{
|
||||
Uri link = new Uri(url);
|
||||
using (WebClient _webclient = new WebClient())
|
||||
{
|
||||
string location = Path.Combine(Environment.CurrentDirectory, $"delet");
|
||||
if (!Directory.Exists(location))
|
||||
Directory.CreateDirectory(location);
|
||||
location += "/" + Guid.NewGuid() + ".jpg";
|
||||
_webclient.DownloadFileAsync(link, location);
|
||||
}
|
||||
await ReplyAsync($"Delet added");
|
||||
}
|
||||
[RequireRolePrecondition(AccessLevel.ServerAdmin)]
|
||||
[Command("say"), Summary("Sends given message to given channel (admin only)")]
|
||||
public async Task Say(ITextChannel channel, [Remainder] string message)
|
||||
{
|
||||
await channel.SendMessageAsync(message);
|
||||
}
|
||||
[RequireRolePrecondition(AccessLevel.BotOwner)]
|
||||
[Command("modifybot"), Summary("name")]
|
||||
public async Task ModifyBot(string _name)
|
||||
{
|
||||
//reference current bot user
|
||||
var BotCurrUser = Bot._bot.CurrentUser;
|
||||
await BotCurrUser.ModifyAsync(x =>
|
||||
{
|
||||
//sets name
|
||||
x.Username = _name;
|
||||
});
|
||||
//reply
|
||||
await ReplyAsync($"Set name to {_name}");
|
||||
}
|
||||
[RequireRolePrecondition(AccessLevel.BotOwner)]
|
||||
[Command("vbi", RunMode = RunMode.Async)]
|
||||
public async Task VerifyBankIntegrity()
|
||||
{
|
||||
using var Database = new ApplicationDbContextFactory().CreateDbContext();
|
||||
|
||||
List<User> users = Database.Users.OrderByDescending(user => user.Money).ToList();
|
||||
User bank = Database.Users.FirstOrDefault(x => x.Id == 0);
|
||||
List<User> users = Database.Users.AsQueryable().OrderByDescending(user => user.Money).ToList();
|
||||
User bank = Database.Users.FirstOrDefault(x => x.Id == 0);
|
||||
|
||||
int existing = 0;
|
||||
users.ForEach(x => existing += Convert.ToInt32(x.Money));
|
||||
int difference = 1000000 - existing;
|
||||
string content = "";
|
||||
if (difference >= 0)
|
||||
int existing = 0;
|
||||
users.ForEach(x => existing += Convert.ToInt32(x.Money));
|
||||
int difference = 1000000 - existing;
|
||||
string content = "";
|
||||
if (difference >= 0)
|
||||
{
|
||||
content += $"Current stability is: {existing / 10000d}%\n";
|
||||
}
|
||||
else
|
||||
{
|
||||
content += $"Current stability is: {(1000000d / existing) * 100}%\n";
|
||||
}
|
||||
if (difference != 0)
|
||||
{
|
||||
content += "Do you want to stabilize existing economy?";
|
||||
await Context.Channel.SendMessageAsync($"{content}");
|
||||
var message = await NextMessageAsync();
|
||||
if (message != null && message.Content.ToLowerInvariant() == "yes")
|
||||
{
|
||||
bank.Money += difference;
|
||||
await Database.SaveChangesAsync();
|
||||
if (difference > 0)
|
||||
{
|
||||
await Context.Channel.SendMessageAsync($"Economy has been stabilized by adding {difference / 10000d}% to bank");
|
||||
}
|
||||
else
|
||||
{
|
||||
await Context.Channel.SendMessageAsync($"Economy has been stabilized by removing {0 - difference / 10000d}% from bank");
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
await Context.Channel.SendMessageAsync($"{content}");
|
||||
}
|
||||
}
|
||||
[RequireRolePrecondition(AccessLevel.BotOwner)]
|
||||
[Command("modifymoney"), Alias("mm"), Summary("add / set")]
|
||||
public async Task ModMoney(string type, int amount, IUser target = null)
|
||||
{
|
||||
User user;
|
||||
if (type.ToLowerInvariant() == "add" || type.ToLowerInvariant() == "set")
|
||||
{
|
||||
using var Database = new ApplicationDbContextFactory().CreateDbContext();
|
||||
string yuser = "";
|
||||
if (target == null)
|
||||
{
|
||||
user = Database.Users.FirstOrDefault(x => x.Id == Context.User.Id);
|
||||
yuser = $"{Context.User.Username}";
|
||||
}
|
||||
else
|
||||
{
|
||||
user = Database.Users.FirstOrDefault(x => x.Id == target.Id);
|
||||
yuser = $"{target.Username}";
|
||||
}
|
||||
if (type == "add")
|
||||
{
|
||||
if (!user.GrantMoney(Database.Users.FirstOrDefault(x => x.Id == 0), amount))
|
||||
{
|
||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nBank has no money, convince someone to gamble");
|
||||
return;
|
||||
}
|
||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nSet **{yuser}**'s money to **{user.Money.ToYeedraDisplay()}%**.");
|
||||
await Database.SaveChangesAsync();
|
||||
return;
|
||||
}
|
||||
else if (type == "set")
|
||||
{
|
||||
if (amount < 0)
|
||||
{
|
||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nCan't set to a negative.");
|
||||
return;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (!user.GrantMoney(Database.Users.FirstOrDefault(x => x.Id == 0), amount - user.Money))
|
||||
{
|
||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nBank has no money, convince someone to gamble.");
|
||||
return;
|
||||
}
|
||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nSet **{yuser}**'s money to **{((long)amount).ToYeedraDisplay()}%**.");
|
||||
await Database.SaveChangesAsync();
|
||||
return;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nInvalid type.");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// test commands
|
||||
//[Command("cbt", RunMode = RunMode.Async)]
|
||||
//public async Task CombatTest()
|
||||
//{
|
||||
// string[] attackse = new string[]
|
||||
// {
|
||||
// "a bite",
|
||||
// "a crowbar",
|
||||
// "invasive odor",
|
||||
// "an intense slap"
|
||||
// };
|
||||
|
||||
// int hp = 100;
|
||||
// int atk = 100;
|
||||
// int bhp = 1000;
|
||||
// int dmg = 0;
|
||||
// int edg = 0;
|
||||
// string cbta = "";
|
||||
// int numatt = SRandom.Next(attackse.Length);
|
||||
// string at1;
|
||||
// string at2;
|
||||
// string eattack;
|
||||
// int cb;
|
||||
// await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nBattle against **Fishthot**\nChoose your battle fish:\n**Pistol Shrimp | Coomfish**");
|
||||
// var message = await NextMessageAsync();
|
||||
// if (message.Content.ToLowerInvariant() == "pistol shrimp")
|
||||
// {
|
||||
// cbta = "Pistol Shrimp";
|
||||
// at1 = "Gun";
|
||||
// at2 = "Crowbar";
|
||||
// cb = 1;
|
||||
// hp = 80;
|
||||
// atk = 20;
|
||||
// }
|
||||
// else if (message.Content.ToLowerInvariant() == "coomfish")
|
||||
// {
|
||||
// cbta = "Coomfish";
|
||||
// at1 = "Eruption";
|
||||
// at2 = "Smack";
|
||||
// cb = 2;
|
||||
// hp = 160;
|
||||
// atk = 10;
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nInvalid battle fish??? are you RETARDeDED??");
|
||||
// return;
|
||||
// }
|
||||
// await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nYou have chosen: **{cbta}**, your stats are HP: **{hp}** ATK: **{atk}**\n\nBegin battle?");
|
||||
// message = await NextMessageAsync();
|
||||
// if (message.Content.ToLowerInvariant() == "yes")
|
||||
// {
|
||||
// string ment = $"{Context.User.Mention}\n";
|
||||
// while (bhp > 0 && hp > 0)
|
||||
// {
|
||||
// if (bhp > 0 && hp > 0)
|
||||
// {
|
||||
// edg = SRandom.Next(3, 16);
|
||||
// dmg = SRandom.Next(atk, atk * 20);
|
||||
// eattack = attackse[numatt];
|
||||
// hp -= edg;
|
||||
// await Context.Channel.SendMessageAsync($"{ment}**Fishthot** attacks with {eattack}, dealing **{edg}** damage.\n**{cbta}**'s **HP** drops to {hp}.");
|
||||
// ment = "";
|
||||
// if (hp <= 0)
|
||||
// {
|
||||
// await Context.Channel.SendMessageAsync($"Oh dear! **{cbta}** has fallen in battle.\nChoose your last ditch effort.\n**Belt** | **Punch**");
|
||||
// message = await NextMessageAsync();
|
||||
// if (message.Content.ToLowerInvariant() == "belt")
|
||||
// {
|
||||
// dmg = SRandom.Next(20, 100);
|
||||
// bhp -= dmg;
|
||||
// }
|
||||
// else if (message.Content.ToLowerInvariant() == "punch")
|
||||
// {
|
||||
// dmg = SRandom.Next(40, 80);
|
||||
// bhp -= dmg;
|
||||
// }
|
||||
// await Context.Channel.SendMessageAsync($"Your last ditch effort dealt **{dmg}** damage, reducing **Fishthot**'s health to {bhp}.");
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// bhp -= dmg;
|
||||
// await Context.Channel.SendMessageAsync($"What will you attack with?\n**{at1}** | **{at2}**");
|
||||
// message = await NextMessageAsync();
|
||||
// if (cb == 1 && message.Content.ToLowerInvariant() == "gun")
|
||||
// {
|
||||
// await Context.Channel.SendMessageAsync($"{Context.User.Mention}\n**{cbta}** pulls out his trusty glock and shoots at **Fishthot**, dealing **{dmg}** damage.\n**Fishthot**'s HP has been reduced to **{bhp}**.");
|
||||
// }
|
||||
// else if (cb == 1 && message.Content.ToLowerInvariant() == "crowbar")
|
||||
// {
|
||||
// await Context.Channel.SendMessageAsync($"{Context.User.Mention}\n**{cbta}** unsheathes a menacing looking crowbar and lands a nice smack on **Fishthot**, dealing **{dmg}** damage.\n**Fishthot**'s HP has been reduced to **{bhp}**.");
|
||||
// }
|
||||
// else if (cb == 2 && message.Content.ToLowerInvariant() == "eruption")
|
||||
// {
|
||||
// await Context.Channel.SendMessageAsync($"{Context.User.Mention}\n**{cbta}** releases a massive ***CUM ERUPTION*** on **Fishthot**, dealing **{dmg}** damage.\n**Fishthot**'s HP has been reduced to **{bhp}**.");
|
||||
// }
|
||||
// else if (cb == 2 && message.Content.ToLowerInvariant() == "smack")
|
||||
// {
|
||||
// await Context.Channel.SendMessageAsync($"{Context.User.Mention}\n**{cbta}** feeds **Fishthot** a nice knuckle sandwich with his **Power Arm**, dealing **{dmg}** damage.\n**Fishthot**'s HP has been reduced to **{bhp}**.");
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// await Context.Channel.SendMessageAsync($"{Context.User.Mention}\n**{cbta}** did not understand your command.\n**{cbta}** is looking at you with disappointed eyes.\nYour turn is skipped, good job retard.");
|
||||
// }
|
||||
// }
|
||||
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// if (bhp <= 0 && hp > 0)
|
||||
// {
|
||||
// await Context.Channel.SendMessageAsync($"{Context.User.Mention}\n**You win!** Go buy **{cbta}** a beer or something for his great accomplishments.");
|
||||
// break;
|
||||
// }
|
||||
// else if (bhp <= 0 && hp < 0)
|
||||
// {
|
||||
// await Context.Channel.SendMessageAsync($"{Context.User.Mention}\n**{cbta}** is gone. But so is **Fishthot**. Make sure to boil him in a good broth, he would have deserved it.");
|
||||
// break;
|
||||
// }
|
||||
// else if (hp <= 0)
|
||||
// {
|
||||
// await Context.Channel.SendMessageAsync($"{Context.User.Mention}\n**{cbta}** is gone. Now nothing stands between **Fishthot** and your frail frame.");
|
||||
// break;
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nSomething went ***REALLY*** wrong");
|
||||
// break;
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nyou afraid or something? loser lmao");
|
||||
// return;
|
||||
// }
|
||||
//}
|
||||
[RequireRolePrecondition(AccessLevel.BotOwner)]
|
||||
[Command("getimag")]
|
||||
public async Task TestCommand(string name)
|
||||
{
|
||||
name += ".png";
|
||||
string path = Path.Combine(Environment.CurrentDirectory, "btextures");
|
||||
DirectoryInfo idir = new DirectoryInfo(path);
|
||||
var file = idir.GetFiles().FirstOrDefault(i => i.Name == name);
|
||||
if (file != null)
|
||||
{
|
||||
await Context.Channel.SendFileAsync(file.FullName);
|
||||
}
|
||||
else
|
||||
{
|
||||
Console.WriteLine("File does not exist, check brain for damaged goods?");
|
||||
}
|
||||
|
||||
}
|
||||
[RequireRolePrecondition(AccessLevel.ServerAdmin)]
|
||||
[Command("makeimag")]
|
||||
public async Task MakeImage()
|
||||
{
|
||||
string path = Path.Combine(Environment.CurrentDirectory, "btextures");
|
||||
|
||||
using (MagickImage layer1 = new MagickImage(Path.Combine(path, "tbackground.png"), new MagickReadSettings
|
||||
{
|
||||
BackgroundColor = MagickColors.Transparent,
|
||||
FillColor = MagickColors.White
|
||||
}))
|
||||
{
|
||||
layer1.Compose = CompositeOperator.Over;
|
||||
|
||||
using (MagickImage layer2 = new MagickImage(Path.Combine(path, "tforeground.png"), new MagickReadSettings
|
||||
{
|
||||
BackgroundColor = MagickColors.Transparent,
|
||||
FillColor = MagickColors.Black
|
||||
}))
|
||||
{
|
||||
layer1.Composite(layer2, 245, 158, CompositeOperator.Over); //x, y
|
||||
}
|
||||
|
||||
using (MagickImage layer3 = new MagickImage($"label:Haha The Machine Go BRrrrrr", new MagickReadSettings //text
|
||||
{
|
||||
Width = 250,
|
||||
Height = 25,
|
||||
TextGravity = Gravity.Center,
|
||||
FillColor = MagickColors.Black,
|
||||
BackgroundColor = MagickColors.None
|
||||
}))
|
||||
{
|
||||
layer1.Composite(layer3, 245, 449, CompositeOperator.Over);
|
||||
}
|
||||
|
||||
MemoryStream outputStream = new MemoryStream();
|
||||
|
||||
layer1.Write(outputStream);
|
||||
|
||||
outputStream.Position = 0;
|
||||
|
||||
await Context.Channel.SendFileAsync(outputStream, "imaeg.png");
|
||||
}
|
||||
}
|
||||
[RequireRolePrecondition(AccessLevel.ServerAdmin)]
|
||||
[Command("lc")]
|
||||
public async Task MakeLevelCard()
|
||||
{
|
||||
string path = Path.Combine(Environment.CurrentDirectory, "btextures");
|
||||
string avatar = "";
|
||||
string rod = "";
|
||||
string tier = "";
|
||||
ulong lvl = 0;
|
||||
ulong xp = 0;
|
||||
int total = 0;
|
||||
int minc = 0;
|
||||
int maxc = 0;
|
||||
Fishing fuser;
|
||||
User user;
|
||||
Dictionary<FishSpecies, int[]> inv = new Dictionary<FishSpecies, int[]>();
|
||||
|
||||
using (var Database = new ApplicationDbContextFactory().CreateDbContext())
|
||||
{
|
||||
content += $"Current stability is: {existing / 10000d}%\n";
|
||||
user = Database.Users.FirstOrDefault(i => i.Id == Context.User.Id);
|
||||
fuser = Database.Fishing.FirstOrDefault(i => i.Id == Context.User.Id);
|
||||
}
|
||||
if (fuser == null || user == null)
|
||||
{
|
||||
rod = "rod1.png";
|
||||
tier = "tier1.png";
|
||||
}
|
||||
else
|
||||
{
|
||||
content += $"Current stability is: {(1000000d / existing) * 100}%\n";
|
||||
}
|
||||
if (difference != 0)
|
||||
lvl = fuser.Lvl;
|
||||
xp = fuser.TXp;
|
||||
var finv = fuser.GetInventory();
|
||||
switch (fuser.RodUsed)
|
||||
{
|
||||
case 0:
|
||||
{
|
||||
rod = "rod1.png";
|
||||
tier = "tier1.png";
|
||||
}
|
||||
break;
|
||||
case 1:
|
||||
{
|
||||
rod = "rod2.png";
|
||||
tier = "tier2.png";
|
||||
}
|
||||
break;
|
||||
case 2:
|
||||
{
|
||||
rod = "rod3.png";
|
||||
tier = "tier3.png";
|
||||
}
|
||||
break;
|
||||
case 3:
|
||||
{
|
||||
rod = "rod4.png";
|
||||
tier = "tier4.png";
|
||||
}
|
||||
break;
|
||||
}
|
||||
foreach (var fish in finv)
|
||||
{
|
||||
total += (fish.Value[0] + fish.Value[1] + fish.Value[2]);
|
||||
}
|
||||
}
|
||||
|
||||
avatar = user.Avatar;
|
||||
|
||||
if (avatar == "https://cdn.discordapp.com/embed/avatars/0.png")
|
||||
{
|
||||
content += "Do you want to stabilize existing economy?";
|
||||
await Context.Channel.SendMessageAsync($"{content}");
|
||||
var message = await NextMessageAsync();
|
||||
if (message != null && message.Content.ToLowerInvariant() == "yes")
|
||||
{
|
||||
bank.Money += difference;
|
||||
await Database.SaveChangesAsync();
|
||||
if (difference > 0)
|
||||
{
|
||||
await Context.Channel.SendMessageAsync($"Economy has been stabilized by adding {difference / 10000d}% to bank");
|
||||
}
|
||||
else
|
||||
{
|
||||
await Context.Channel.SendMessageAsync($"Economy has been stabilized by removing {0-difference / 10000d}% from bank");
|
||||
}
|
||||
}
|
||||
avatar = Path.Combine(path, "noavatar.png");
|
||||
}
|
||||
else
|
||||
|
||||
|
||||
using (MagickImage card = new MagickImage(Path.Combine(path, "background.png"), new MagickReadSettings //background
|
||||
{
|
||||
BackgroundColor = MagickColors.Transparent,
|
||||
FillColor = MagickColors.Black,
|
||||
}))
|
||||
{
|
||||
await Context.Channel.SendMessageAsync($"{content}");
|
||||
}
|
||||
}
|
||||
[RequireRolePrecondition(AccessLevel.BotOwner)]
|
||||
[Command("modifymoney"), Alias("mm"),Summary("add / set")]
|
||||
public async Task ModMoney(string type, int amount, IUser target = null)
|
||||
{
|
||||
User user;
|
||||
if (type.ToLowerInvariant() == "add" || type.ToLowerInvariant() == "set")
|
||||
{
|
||||
using var Database = new ApplicationDbContextFactory().CreateDbContext();
|
||||
string yuser = "";
|
||||
if (target == null)
|
||||
{
|
||||
user = Database.Users.FirstOrDefault(x => x.Id == Context.User.Id);
|
||||
yuser = $"{Context.User.Username}";
|
||||
}
|
||||
else
|
||||
{
|
||||
user = Database.Users.FirstOrDefault(x => x.Id == target.Id);
|
||||
yuser = $"{target.Username}";
|
||||
}
|
||||
if (type == "add")
|
||||
{
|
||||
if (!user.GrantMoney(Database.Users.FirstOrDefault(x => x.Id == 0), amount))
|
||||
{
|
||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nBank has no money, convince someone to gamble");
|
||||
return;
|
||||
}
|
||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nSet **{yuser}**'s money to **{user.Money.ToYeedraDisplay()}%**.");
|
||||
await Database.SaveChangesAsync();
|
||||
return;
|
||||
}
|
||||
else if (type == "set")
|
||||
{
|
||||
if (amount < 0)
|
||||
{
|
||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nCan't set to a negative.");
|
||||
return;
|
||||
}
|
||||
else
|
||||
{
|
||||
if (!user.GrantMoney(Database.Users.FirstOrDefault(x => x.Id == 0), amount - user.Money))
|
||||
{
|
||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nBank has no money, convince someone to gamble.");
|
||||
return;
|
||||
}
|
||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nSet **{yuser}**'s money to **{((long)amount).ToYeedraDisplay()}%**.");
|
||||
await Database.SaveChangesAsync();
|
||||
return;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nInvalid type.");
|
||||
}
|
||||
}
|
||||
card.Compose = CompositeOperator.Over;
|
||||
|
||||
using (MagickImage iavatar = new MagickImage(Path.Combine(avatar), new MagickReadSettings //avatar
|
||||
{
|
||||
BackgroundColor = MagickColors.None
|
||||
}))
|
||||
{
|
||||
card.Composite(iavatar, 5, 5, CompositeOperator.Over);
|
||||
}
|
||||
|
||||
// test commands
|
||||
//[Command("cbt", RunMode = RunMode.Async)]
|
||||
//public async Task CombatTest()
|
||||
//{
|
||||
// string[] attackse = new string[]
|
||||
// {
|
||||
// "a bite",
|
||||
// "a crowbar",
|
||||
// "invasive odor",
|
||||
// "an intense slap"
|
||||
// };
|
||||
using (MagickImage frame = new MagickImage(Path.Combine(path, "cover.png"), new MagickReadSettings //cover
|
||||
{
|
||||
BackgroundColor = MagickColors.None
|
||||
}))
|
||||
{
|
||||
card.Composite(frame, CompositeOperator.Over);
|
||||
}
|
||||
|
||||
// int hp = 100;
|
||||
// int atk = 100;
|
||||
// int bhp = 1000;
|
||||
// int dmg = 0;
|
||||
// int edg = 0;
|
||||
// string cbta = "";
|
||||
// int numatt = SRandom.Next(attackse.Length);
|
||||
// string at1;
|
||||
// string at2;
|
||||
// string eattack;
|
||||
// int cb;
|
||||
// await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nBattle against **Fishthot**\nChoose your battle fish:\n**Pistol Shrimp | Coomfish**");
|
||||
// var message = await NextMessageAsync();
|
||||
// if (message.Content.ToLowerInvariant() == "pistol shrimp")
|
||||
// {
|
||||
// cbta = "Pistol Shrimp";
|
||||
// at1 = "Gun";
|
||||
// at2 = "Crowbar";
|
||||
// cb = 1;
|
||||
// hp = 80;
|
||||
// atk = 20;
|
||||
// }
|
||||
// else if (message.Content.ToLowerInvariant() == "coomfish")
|
||||
// {
|
||||
// cbta = "Coomfish";
|
||||
// at1 = "Eruption";
|
||||
// at2 = "Smack";
|
||||
// cb = 2;
|
||||
// hp = 160;
|
||||
// atk = 10;
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nInvalid battle fish??? are you RETARDeDED??");
|
||||
// return;
|
||||
// }
|
||||
// await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nYou have chosen: **{cbta}**, your stats are HP: **{hp}** ATK: **{atk}**\n\nBegin battle?");
|
||||
// message = await NextMessageAsync();
|
||||
// if (message.Content.ToLowerInvariant() == "yes")
|
||||
// {
|
||||
// string ment = $"{Context.User.Mention}\n";
|
||||
// while (bhp > 0 && hp > 0)
|
||||
// {
|
||||
// if (bhp > 0 && hp > 0)
|
||||
// {
|
||||
// edg = SRandom.Next(3, 16);
|
||||
// dmg = SRandom.Next(atk, atk * 20);
|
||||
// eattack = attackse[numatt];
|
||||
// hp -= edg;
|
||||
// await Context.Channel.SendMessageAsync($"{ment}**Fishthot** attacks with {eattack}, dealing **{edg}** damage.\n**{cbta}**'s **HP** drops to {hp}.");
|
||||
// ment = "";
|
||||
// if (hp <= 0)
|
||||
// {
|
||||
// await Context.Channel.SendMessageAsync($"Oh dear! **{cbta}** has fallen in battle.\nChoose your last ditch effort.\n**Belt** | **Punch**");
|
||||
// message = await NextMessageAsync();
|
||||
// if (message.Content.ToLowerInvariant() == "belt")
|
||||
// {
|
||||
// dmg = SRandom.Next(20, 100);
|
||||
// bhp -= dmg;
|
||||
// }
|
||||
// else if (message.Content.ToLowerInvariant() == "punch")
|
||||
// {
|
||||
// dmg = SRandom.Next(40, 80);
|
||||
// bhp -= dmg;
|
||||
// }
|
||||
// await Context.Channel.SendMessageAsync($"Your last ditch effort dealt **{dmg}** damage, reducing **Fishthot**'s health to {bhp}.");
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// bhp -= dmg;
|
||||
// await Context.Channel.SendMessageAsync($"What will you attack with?\n**{at1}** | **{at2}**");
|
||||
// message = await NextMessageAsync();
|
||||
// if (cb == 1 && message.Content.ToLowerInvariant() == "gun")
|
||||
// {
|
||||
// await Context.Channel.SendMessageAsync($"{Context.User.Mention}\n**{cbta}** pulls out his trusty glock and shoots at **Fishthot**, dealing **{dmg}** damage.\n**Fishthot**'s HP has been reduced to **{bhp}**.");
|
||||
// }
|
||||
// else if (cb == 1 && message.Content.ToLowerInvariant() == "crowbar")
|
||||
// {
|
||||
// await Context.Channel.SendMessageAsync($"{Context.User.Mention}\n**{cbta}** unsheathes a menacing looking crowbar and lands a nice smack on **Fishthot**, dealing **{dmg}** damage.\n**Fishthot**'s HP has been reduced to **{bhp}**.");
|
||||
// }
|
||||
// else if (cb == 2 && message.Content.ToLowerInvariant() == "eruption")
|
||||
// {
|
||||
// await Context.Channel.SendMessageAsync($"{Context.User.Mention}\n**{cbta}** releases a massive ***CUM ERUPTION*** on **Fishthot**, dealing **{dmg}** damage.\n**Fishthot**'s HP has been reduced to **{bhp}**.");
|
||||
// }
|
||||
// else if (cb == 2 && message.Content.ToLowerInvariant() == "smack")
|
||||
// {
|
||||
// await Context.Channel.SendMessageAsync($"{Context.User.Mention}\n**{cbta}** feeds **Fishthot** a nice knuckle sandwich with his **Power Arm**, dealing **{dmg}** damage.\n**Fishthot**'s HP has been reduced to **{bhp}**.");
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// await Context.Channel.SendMessageAsync($"{Context.User.Mention}\n**{cbta}** did not understand your command.\n**{cbta}** is looking at you with disappointed eyes.\nYour turn is skipped, good job retard.");
|
||||
// }
|
||||
// }
|
||||
using (MagickImage frame = new MagickImage(Path.Combine(path, tier), new MagickReadSettings //tier glow
|
||||
{
|
||||
BackgroundColor = MagickColors.None
|
||||
}))
|
||||
{
|
||||
card.Composite(frame, 5, 5, CompositeOperator.Over);
|
||||
}
|
||||
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// if (bhp <= 0 && hp > 0)
|
||||
// {
|
||||
// await Context.Channel.SendMessageAsync($"{Context.User.Mention}\n**You win!** Go buy **{cbta}** a beer or something for his great accomplishments.");
|
||||
// break;
|
||||
// }
|
||||
// else if (bhp <= 0 && hp < 0)
|
||||
// {
|
||||
// await Context.Channel.SendMessageAsync($"{Context.User.Mention}\n**{cbta}** is gone. But so is **Fishthot**. Make sure to boil him in a good broth, he would have deserved it.");
|
||||
// break;
|
||||
// }
|
||||
// else if (hp <= 0)
|
||||
// {
|
||||
// await Context.Channel.SendMessageAsync($"{Context.User.Mention}\n**{cbta}** is gone. Now nothing stands between **Fishthot** and your frail frame.");
|
||||
// break;
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nSomething went ***REALLY*** wrong");
|
||||
// break;
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nyou afraid or something? loser lmao");
|
||||
// return;
|
||||
// }
|
||||
//}
|
||||
//using (MagickImage frame = new MagickImage(Path.Combine(path, rod), new MagickReadSettings //rod
|
||||
//{
|
||||
// BackgroundColor = MagickColors.None
|
||||
//}))
|
||||
//{
|
||||
// card.Composite(frame, 79, 79, CompositeOperator.Over);
|
||||
//}
|
||||
|
||||
}
|
||||
using (MagickImage frame = new MagickImage(Path.Combine(path, "frame.png"), new MagickReadSettings //frame
|
||||
{
|
||||
BackgroundColor = MagickColors.None
|
||||
}))
|
||||
{
|
||||
card.Composite(frame, CompositeOperator.Over);
|
||||
}
|
||||
|
||||
using (MagickImage xpbar = new MagickImage(Path.Combine(path, "xpbar.png"), new MagickReadSettings //xp bar
|
||||
{
|
||||
BackgroundColor = MagickColors.None
|
||||
}))
|
||||
{
|
||||
card.Composite(xpbar, 405, 5, CompositeOperator.Over);
|
||||
}
|
||||
|
||||
//using (MagickImage name = new MagickImage($"label:\n{Context.User.Username}", new MagickReadSettings
|
||||
//{BackgroundColor = MagickColors.None, FillColor = MagickColors.White, FontPointsize = 20 }))
|
||||
// {
|
||||
// card.Composite(name, 6, 6, CompositeOperator.Over);
|
||||
// }
|
||||
|
||||
|
||||
using (MagickImage stats = new MagickImage($"label:" +
|
||||
$"\nFishing Lv : {lvl}" +
|
||||
$"\nXP : {xp}" +
|
||||
$"\nMax catch : {maxc}" +
|
||||
$"\nMin catch : {minc}" +
|
||||
$"\nTotal Fish : {total}", new MagickReadSettings
|
||||
{
|
||||
BackgroundColor = MagickColors.None,
|
||||
FillColor = MagickColors.White,
|
||||
FontPointsize = 12
|
||||
}))
|
||||
{
|
||||
card.Composite(stats,146,5, CompositeOperator.Over);
|
||||
}
|
||||
MemoryStream outputStream = new MemoryStream();
|
||||
card.Write(outputStream);
|
||||
outputStream.Position = 0;
|
||||
await Context.Channel.SendFileAsync(outputStream, "profile.png");
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -131,5 +131,16 @@ namespace Kehyeedra3.Commands
|
||||
}
|
||||
}
|
||||
}
|
||||
[Command("serverinv"), Summary("Invite to bot server (mainly used for assets)")]
|
||||
public async Task BotServerInvite()
|
||||
{
|
||||
await Context.Channel.SendMessageAsync("discord.gg/DAW53N9");
|
||||
}
|
||||
[Command("botinv"), Summary("Post the bot invite link")]
|
||||
public async Task BotInvite()
|
||||
{
|
||||
await Context.Channel.SendMessageAsync("Main bot: https://discordapp.com/api/oauth2/authorize?client_id=303457448168128519&scope=bot&permissions=0 \n" +
|
||||
"Test bot: https://discordapp.com/api/oauth2/authorize?client_id=319942676319436810&scope=bot&permissions=0");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -11,10 +11,13 @@ using System.Collections.ObjectModel;
|
||||
using System.IO.Enumeration;
|
||||
using System.IO.IsolatedStorage;
|
||||
using System.Linq;
|
||||
using System.Reflection.Metadata;
|
||||
using System.Security.Cryptography;
|
||||
using System.Security.Cryptography.X509Certificates;
|
||||
using System.Text;
|
||||
using System.Threading.Channels;
|
||||
using System.Threading.Tasks;
|
||||
using ImageMagick;
|
||||
|
||||
namespace Kehyeedra3.Commands
|
||||
{
|
||||
@@ -32,7 +35,7 @@ namespace Kehyeedra3.Commands
|
||||
using (var Database = new ApplicationDbContextFactory().CreateDbContext())
|
||||
{
|
||||
var user = Database.Users.FirstOrDefault(x => x.Id == Context.User.Id);
|
||||
var userfish = Database.Battlefish.Where(x => x.UserId == Context.User.Id);
|
||||
var userfish = Database.Battlefish.AsQueryable().Where(x => x.UserId == Context.User.Id);
|
||||
|
||||
int attb = 0;
|
||||
int defb = 0;
|
||||
@@ -47,12 +50,12 @@ namespace Kehyeedra3.Commands
|
||||
}
|
||||
else
|
||||
{
|
||||
var fish = userfish.FirstOrDefault(x => x.FishType == user.CurrentBattlefish);
|
||||
if (fish == null)
|
||||
var ufish = userfish.FirstOrDefault(x => x.FishType == user.CurrentBattlefish);
|
||||
if (ufish == null)
|
||||
{
|
||||
fish = userfish.FirstOrDefault();
|
||||
ufish = userfish.FirstOrDefault();
|
||||
}
|
||||
switch (fish.FishType)
|
||||
switch (ufish.FishType)
|
||||
{
|
||||
case Services.Models.BattleFish.Herring:
|
||||
{
|
||||
@@ -104,12 +107,188 @@ namespace Kehyeedra3.Commands
|
||||
|
||||
string bfishlist = "";
|
||||
|
||||
var fish = userfish.FirstOrDefault(x => x.FishType == user.CurrentBattlefish);
|
||||
if (fish == null)
|
||||
{
|
||||
fish = userfish.FirstOrDefault();
|
||||
}
|
||||
|
||||
StringBuilder message = new StringBuilder($"{Context.User.Mention}\n");
|
||||
|
||||
string species = $"";
|
||||
string attacks = $"";
|
||||
|
||||
double lvm = 20;
|
||||
double lvmhp = 100;
|
||||
|
||||
for (int i = 0; i < fish.Lvl; i++)
|
||||
{
|
||||
lvm += Math.Round((Convert.ToDouble(lvm) * 0.01d), 0, MidpointRounding.ToEven) + 5;
|
||||
lvmhp += Math.Round((Convert.ToDouble(lvmhp) * 0.01d), 0, MidpointRounding.ToEven) + 10;
|
||||
}
|
||||
int lvlm = Convert.ToInt32(lvm) / 10;
|
||||
int lvlmhp = Convert.ToInt32(lvmhp) / 10;
|
||||
|
||||
int att = lvlm * attb;
|
||||
int def = 5 * defb;
|
||||
int hp = lvlmhp * hpb;
|
||||
int ap = lvlmhp * apb;
|
||||
int dg = dgb;
|
||||
|
||||
string prefix = "Hatchling";
|
||||
string stats = "";
|
||||
|
||||
if (fish.Lvl >= 15)
|
||||
{
|
||||
prefix = "Young";
|
||||
}
|
||||
if (fish.Lvl >= 30)
|
||||
{
|
||||
prefix = "Adolescent";
|
||||
}
|
||||
if (fish.Lvl >= 50)
|
||||
{
|
||||
prefix = "Adult";
|
||||
}
|
||||
switch ((int)fish.FishType)
|
||||
{
|
||||
case 0:
|
||||
{
|
||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nYou don't have a battlefish.");
|
||||
}
|
||||
return;
|
||||
case 1:
|
||||
{
|
||||
species = "Herring";
|
||||
if (fish.Lvl >= 100)
|
||||
{
|
||||
species += $"ton";
|
||||
prefix = $"Authentic Masculine";
|
||||
}
|
||||
|
||||
attacks += $"1 : **Slap** - {species} slaps the opponent.";
|
||||
if (fish.Lvl >= 5)
|
||||
{
|
||||
attacks += $"\n2 : **Kick** - {species} kicks the opponent with his muscular fin.";
|
||||
}
|
||||
if (fish.Lvl >= 15)
|
||||
{
|
||||
attacks += $"\n3 : **Flex** - {species} flexes his fin muscles, stunning the opponent.";
|
||||
}
|
||||
if (fish.Lvl >= 30)
|
||||
{
|
||||
attacks += $"\n4 : **Restoration Wand** - {species} spins his wand to recover some health.";
|
||||
}
|
||||
if (fish.Lvl >= 50)
|
||||
{
|
||||
attacks += $"\n5 : **Fairy Nightmare** - {species} executes a devastating ultimate attack.";
|
||||
}
|
||||
|
||||
}
|
||||
break;
|
||||
case 2:
|
||||
{
|
||||
species = "Birgus";
|
||||
if (fish.Lvl >= 100)
|
||||
{
|
||||
species += $"";
|
||||
prefix = $"Great Sage";
|
||||
}
|
||||
|
||||
attacks += $"1 : **Staff Slam** - {species} hits the enemy with its staff.";
|
||||
if (fish.Lvl >= 5)
|
||||
{
|
||||
attacks += $"\n2 : **Chitin Shards** - {species} summons a blast of magical shards at your opponent.";
|
||||
}
|
||||
if (fish.Lvl >= 15)
|
||||
{
|
||||
attacks += $"\n3 : **Iron Shell** - {species} materializes a hard shell, increasing defense.";
|
||||
}
|
||||
if (fish.Lvl >= 30)
|
||||
{
|
||||
attacks += $"\n4 : **Siphon Gaze** - {species} absorbs the enemy's life force with an enigmatic gaze.";
|
||||
}
|
||||
if (fish.Lvl >= 50)
|
||||
{
|
||||
attacks += $"\n5 : **Ecletic Rift** - {species} summons portals to alternate dimensions to call forth an army of raving crabs.";
|
||||
}
|
||||
|
||||
}
|
||||
break;
|
||||
case 3:
|
||||
{
|
||||
species = "Abama";
|
||||
if (fish.Lvl >= 100)
|
||||
{
|
||||
species += $"";
|
||||
prefix = $"President";
|
||||
}
|
||||
|
||||
attacks += $"1 : **Tentacle Slap** - {species} slaps the opponent with its tentacle.";
|
||||
if (fish.Lvl >= 5)
|
||||
{
|
||||
attacks += $"\n2 : **Squirt Ink** - {species} shoots ink at the opponent, blinding them temporarily.";
|
||||
}
|
||||
if (fish.Lvl >= 15)
|
||||
{
|
||||
attacks += $"\n3 : **Bind** - {species} holds down the opponent with its tentacles.";
|
||||
}
|
||||
if (fish.Lvl >= 30)
|
||||
{
|
||||
attacks += $"\n4 : **Metabolism** - {species} increases metabolism to instantly remove all ailments.";
|
||||
}
|
||||
if (fish.Lvl >= 50)
|
||||
{
|
||||
attacks += $"\n5 : **Ancestral Wrath** - {species} calls into the depths to unleash its true potential.";
|
||||
}
|
||||
|
||||
}
|
||||
break;
|
||||
case 4:
|
||||
{
|
||||
species = "Pistashrimp";
|
||||
if (fish.Lvl >= 100)
|
||||
{
|
||||
species += $" XTREME";
|
||||
prefix = $"Hardboiled";
|
||||
}
|
||||
|
||||
attacks += $"1 : **Pistolwhip** - {species} swings at the enemy with the back of its pistol.";
|
||||
if (fish.Lvl >= 5)
|
||||
{
|
||||
attacks += $"\n2 : **Fire** - {species} shoots a round from its pistol.";
|
||||
}
|
||||
if (fish.Lvl >= 15)
|
||||
{
|
||||
attacks += $"\n3 : **Fedora Tip** - {species} tips its charming headwear, seducing the enemy.";
|
||||
}
|
||||
if (fish.Lvl >= 30)
|
||||
{
|
||||
attacks += $"\n4 : **Water Jet** - {species} tosses aside its silly weapon and snaps with its real claw.";
|
||||
}
|
||||
if (fish.Lvl >= 50)
|
||||
{
|
||||
attacks += $"\n5 : **Dual Jet** - {species} vaporizes the surrounding with its machine gun claws.";
|
||||
}
|
||||
|
||||
}
|
||||
break;
|
||||
}
|
||||
stats = $"LVL {fish.Lvl} **{prefix} {species}**\nName: **{fish.Name}**\nStats: **ATK : {att} DEF : {def}% HP : {hp} AP : {ap}**\nActions:\n{attacks}\n\n";
|
||||
|
||||
if (opt == "")
|
||||
{
|
||||
message.AppendLine(stats);
|
||||
await Context.Channel.SendMessageAsync(message.ToString());
|
||||
return;
|
||||
}
|
||||
|
||||
if (opt == "change" || opt == "c")
|
||||
{
|
||||
string bfishlistname = "";
|
||||
foreach (var fesh in userfish)
|
||||
{
|
||||
string prefix = "Hatchling";
|
||||
prefix = "Hatchling";
|
||||
string suffix = "";
|
||||
|
||||
if (fesh.Lvl >= 15)
|
||||
@@ -170,184 +349,11 @@ namespace Kehyeedra3.Commands
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
if (option == null)
|
||||
}
|
||||
|
||||
if (option == "name" && sec != null || option == "n" && sec != null)
|
||||
{
|
||||
var fish = userfish.FirstOrDefault(x => x.FishType == user.CurrentBattlefish);
|
||||
if (fish == null)
|
||||
{
|
||||
fish = userfish.FirstOrDefault();
|
||||
}
|
||||
|
||||
StringBuilder message = new StringBuilder($"{Context.User.Mention}\n");
|
||||
|
||||
string species = $"";
|
||||
string attacks = $"";
|
||||
|
||||
double lvm = 20;
|
||||
double lvmhp = 100;
|
||||
int lvdf = 5;
|
||||
|
||||
for (int i = 0; i < fish.Lvl; i++)
|
||||
{
|
||||
lvm += Math.Round((Convert.ToDouble(lvm) * 0.01d), 0, MidpointRounding.ToEven) + 5;
|
||||
lvmhp += Math.Round((Convert.ToDouble(lvmhp) * 0.01d), 0, MidpointRounding.ToEven) + 10;
|
||||
}
|
||||
int lvlm = Convert.ToInt32(lvm) / 10;
|
||||
int lvlmhp = Convert.ToInt32(lvmhp) / 10;
|
||||
|
||||
int att = lvlm * attb;
|
||||
int def = lvdf * defb;
|
||||
int hp = lvlmhp * hpb;
|
||||
int ap = lvlmhp * apb;
|
||||
int dg = lvlm * dgb;
|
||||
|
||||
string prefix = "Hatchling";
|
||||
|
||||
if (fish.Lvl >= 15)
|
||||
{
|
||||
prefix = "Young";
|
||||
}
|
||||
if (fish.Lvl >= 30)
|
||||
{
|
||||
prefix = "Adolescent";
|
||||
}
|
||||
if (fish.Lvl >= 50)
|
||||
{
|
||||
prefix = "Adult";
|
||||
}
|
||||
switch ((int)fish.FishType)
|
||||
{
|
||||
case 0:
|
||||
{
|
||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nYou don't have a battlefish.");
|
||||
}
|
||||
return;
|
||||
case 1:
|
||||
{
|
||||
species = "Herring";
|
||||
if (fish.Lvl >= 100)
|
||||
{
|
||||
species += $"ton";
|
||||
prefix = $"Authentic Masculine";
|
||||
}
|
||||
|
||||
attacks += $"1 : **Slap** - {species} slaps the opponent.";
|
||||
if (fish.Lvl >= 5)
|
||||
{
|
||||
attacks += $"\n2 : **Kick** - {species} kicks the opponent with his muscular fin.";
|
||||
}
|
||||
if (fish.Lvl >= 15)
|
||||
{
|
||||
attacks += $"\n3 : **Flex** - {species} flexes his fin muscles, stunning the opponent.";
|
||||
}
|
||||
if (fish.Lvl >= 30)
|
||||
{
|
||||
attacks += $"\n4 : **Restoration Wand** - {species} spins his wand to recover some health.";
|
||||
}
|
||||
if (fish.Lvl >= 50)
|
||||
{
|
||||
attacks += $"\n5 : **Fairy Nightmare** - {species} executes a devastating ultimate attack.";
|
||||
}
|
||||
|
||||
}
|
||||
break;
|
||||
case 2:
|
||||
{
|
||||
species = "Birgus";
|
||||
if (fish.Lvl >= 100)
|
||||
{
|
||||
species += $"";
|
||||
prefix = $"Great Sage";
|
||||
}
|
||||
|
||||
attacks += $"1 : **Staff Slam** - {species} hits the enemy with its staff.";
|
||||
if (fish.Lvl >= 5)
|
||||
{
|
||||
attacks += $"\n2 : **Chitin Shards** - {species} summons a blast of magical shards at your opponent.";
|
||||
}
|
||||
if (fish.Lvl >= 15)
|
||||
{
|
||||
attacks += $"\n3 : **Iron Shell** - {species} materializes a hard shell, increasing defense.";
|
||||
}
|
||||
if (fish.Lvl >= 30)
|
||||
{
|
||||
attacks += $"\n4 : **Siphon Gaze** - {species} absorbs the enemy's life force with an enigmatic gaze.";
|
||||
}
|
||||
if (fish.Lvl >= 50)
|
||||
{
|
||||
attacks += $"\n5 : **Ecletic Rift** - {species} summons portals to alternate dimensions to call forth an army of raving crabs.";
|
||||
}
|
||||
|
||||
}
|
||||
break;
|
||||
case 3:
|
||||
{
|
||||
species = "Abama";
|
||||
if (fish.Lvl >= 100)
|
||||
{
|
||||
species += $"";
|
||||
prefix = $"President";
|
||||
}
|
||||
|
||||
attacks += $"1 : **Tentacle Slap** - {species} slaps the opponent with its tentacle.";
|
||||
if (fish.Lvl >= 5)
|
||||
{
|
||||
attacks += $"\n2 : **Squirt Ink** - {species} shoots ink at the opponent, blinding them temporarily.";
|
||||
}
|
||||
if (fish.Lvl >= 15)
|
||||
{
|
||||
attacks += $"\n3 : **Bind** - {species} holds down the opponent with its tentacles.";
|
||||
}
|
||||
if (fish.Lvl >= 30)
|
||||
{
|
||||
attacks += $"\n4 : **Metabolism** - {species} increases metabolism to instantly remove all ailments.";
|
||||
}
|
||||
if (fish.Lvl >= 50)
|
||||
{
|
||||
attacks += $"\n5 : **Ancestral Wrath** - {species} calls into the depths to unleash its true potential.";
|
||||
}
|
||||
|
||||
}
|
||||
break;
|
||||
case 4:
|
||||
{
|
||||
species = "Pistashrimp";
|
||||
if (fish.Lvl >= 100)
|
||||
{
|
||||
species += $" XTREME";
|
||||
prefix = $"Hardboiled";
|
||||
}
|
||||
|
||||
attacks += $"1 : **Pistolwhip** - {species} swings at the enemy with the back of its pistol.";
|
||||
if (fish.Lvl >= 5)
|
||||
{
|
||||
attacks += $"\n2 : **Fire** - {species} shoots a round from its pistol.";
|
||||
}
|
||||
if (fish.Lvl >= 15)
|
||||
{
|
||||
attacks += $"\n3 : **Fedora Tip** - {species} tips its charming headwear, seducing the enemy.";
|
||||
}
|
||||
if (fish.Lvl >= 30)
|
||||
{
|
||||
attacks += $"\n4 : **Water Jet** - {species} tosses aside its silly weapon and snaps with its real claw.";
|
||||
}
|
||||
if (fish.Lvl >= 50)
|
||||
{
|
||||
attacks += $"\n5 : **Dual Jet** - {species} vaporizes the surrounding with its machine gun claws.";
|
||||
}
|
||||
|
||||
}
|
||||
break;
|
||||
}
|
||||
message.AppendLine($"LVL {fish.Lvl} **{prefix} {species}**\nName: **{fish.Name}**\nStats: **ATK : {att} DEF : {def}% HP : {hp} AP : {ap}**\nActions:\n{attacks}\n\n");
|
||||
|
||||
await Context.Channel.SendMessageAsync(message.ToString());
|
||||
}
|
||||
else if (option == "name" && sec != null || option == "n" && sec != null)
|
||||
{
|
||||
var fish = userfish.FirstOrDefault(x => x.FishType == user.CurrentBattlefish);
|
||||
if (fish == null)
|
||||
{
|
||||
fish = userfish.FirstOrDefault();
|
||||
@@ -400,7 +406,7 @@ namespace Kehyeedra3.Commands
|
||||
await Context.Channel.SendMessageAsync($"Sorry **{Context.User.Mention}**, I can't give credit.\nCome back when you're a little, ***mmmmm***, richer.\n*You're missing {(500 - user.Money)/10000d}%.*");
|
||||
return;
|
||||
}
|
||||
string species = "";
|
||||
|
||||
switch ((int)rep)
|
||||
{
|
||||
case 1:
|
||||
@@ -502,6 +508,36 @@ namespace Kehyeedra3.Commands
|
||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nYou don't own that.");
|
||||
}
|
||||
}
|
||||
else if (option == "combat" || option == "cb")
|
||||
{
|
||||
int eatt = 10;
|
||||
int edf = 0;
|
||||
int edg = 5;
|
||||
int a1 = 0;
|
||||
int d1 = 0;
|
||||
int d2 = 0;
|
||||
bool eturn = false;
|
||||
if (sec == "enemy")
|
||||
{
|
||||
eturn = true;
|
||||
}
|
||||
if (eturn)
|
||||
{
|
||||
a1 = eatt;
|
||||
d1 = def;
|
||||
d2 = dg;
|
||||
}
|
||||
else
|
||||
{
|
||||
a1 = att;
|
||||
d1 = edf;
|
||||
d2 = edg;
|
||||
}
|
||||
|
||||
int dmg = CalculateDamage(a1, d1, d2);
|
||||
await Context.Channel.SendMessageAsync($"Damage is **{dmg}**");
|
||||
//await Context.Channel.SendMessageAsync($"*Combat test yeah baby*\nYour stats:\n**ATK : {att} DEF : {def}% HP : {hp} AP : {ap}**\nActions:\n{attacks}\n");
|
||||
}
|
||||
else
|
||||
{
|
||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nAre you confused? Try **bf help** if you are having trouble with your bf.");
|
||||
@@ -510,6 +546,26 @@ namespace Kehyeedra3.Commands
|
||||
}
|
||||
}
|
||||
|
||||
public static int CalculateDamage(int a1, int d1, int d2)
|
||||
{
|
||||
|
||||
int roll = SRandom.Next(5, 11);
|
||||
int rolldg = SRandom.Next(0, 11);
|
||||
if (roll == 10)
|
||||
{
|
||||
a1 *= 2;
|
||||
}
|
||||
if (rolldg * d2 >= 50)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
return ((a1 * roll) / 10 - (a1 * d1 / 100));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
[Command("gstore", RunMode = RunMode.Async),Alias("gs")]
|
||||
public async Task GeneralStore(string input = null)
|
||||
{
|
||||
@@ -551,7 +607,10 @@ namespace Kehyeedra3.Commands
|
||||
|
||||
foreach (User.Item i in itemlist)
|
||||
{
|
||||
itemtxt += $"{(int)i.Id} : {i.Name} for {((long)i.Price).ToYeedraDisplay()}%\n";
|
||||
if ((int)i.Id < 200)
|
||||
{
|
||||
itemtxt += $"{(int)i.Id} : {i.Name} for {((long)i.Price).ToYeedraDisplay()}%\n";
|
||||
}
|
||||
}
|
||||
|
||||
if (input != null)
|
||||
@@ -565,11 +624,11 @@ namespace Kehyeedra3.Commands
|
||||
}
|
||||
else if (input == "b" || input == "buy")
|
||||
{
|
||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nSpecify the item.\n{itemtxt}");
|
||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nWhich item?\n{itemtxt}");
|
||||
var inp = await NextMessageAsync();
|
||||
|
||||
item = itemlist.FirstOrDefault(i => (int)i.Id == int.Parse(inp.Content));
|
||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nSpecify the amount.");
|
||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nHow many?");
|
||||
inp = await NextMessageAsync();
|
||||
|
||||
items = user.GetGenInve();
|
||||
@@ -585,19 +644,22 @@ namespace Kehyeedra3.Commands
|
||||
if (int.Parse(inp.Content) * item.Price <= user.Money)
|
||||
{
|
||||
amount[0] += int.Parse(inp.Content);
|
||||
int count = int.Parse(inp.Content);
|
||||
|
||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nThis will cost you {count * item.Price}.\nType 'ok' to confirm.");
|
||||
|
||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nThis will cost you {ulong.Parse(inp.Content) * (ulong)item.Price}.\nType 'ok' to confirm.");
|
||||
inp = await NextMessageAsync();
|
||||
if (inp.Content.ToLowerInvariant() == "ok")
|
||||
{
|
||||
if (!user.GrantMoney(Database.Users.FirstOrDefault(x => x.Id == 0), -(amount[0] * item.Price)))
|
||||
if (!user.GrantMoney(Database.Users.FirstOrDefault(x => x.Id == 0), -(count * item.Price)))
|
||||
{
|
||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nBank has no money, convince someone to gamble.");
|
||||
return;
|
||||
}
|
||||
user.SetGenInve(items);
|
||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nBought {count} of {item.Name}.");
|
||||
await Database.SaveChangesAsync();
|
||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nBought {int.Parse(inp.Content)} of {item.Name}.");
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -724,15 +786,34 @@ namespace Kehyeedra3.Commands
|
||||
return;
|
||||
}
|
||||
|
||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nSpecify the item.\n\n{locker}");
|
||||
inp = await NextMessageAsync();
|
||||
fish = fishes.FirstOrDefault(i => (int)i.Id == int.Parse(inp.Content));
|
||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nSpecify the size. 0 = small, 1 = medium, 2 = large\n");
|
||||
inp = await NextMessageAsync();
|
||||
size = (FishSize)int.Parse(inp.Content);
|
||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nSpecify the amount.\n");
|
||||
inp = await NextMessageAsync();
|
||||
int amount = int.Parse(inp.Content);
|
||||
await Context.Channel.SendMessageAsync($"{Context.User.Mention}\nSpecify the item, size, and amount. (ID size amount)\n\n{locker}");
|
||||
inp = await NextMessageAsync(timeout: TimeSpan.FromMinutes(2));
|
||||
|
||||
var inpsep = inp.Content.Split(" ");
|
||||
int siz = 0;
|
||||
switch (inpsep[1].ToString().ToLowerInvariant())
|
||||
{
|
||||
case "s":
|
||||
{
|
||||
siz = 0;
|
||||
}
|
||||
break;
|
||||
case "m":
|
||||
{
|
||||
siz = 1;
|
||||
}
|
||||
break;
|
||||
case "l":
|
||||
{
|
||||
siz = 2;
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
fish = fishes.FirstOrDefault(i => (int)i.Id == int.Parse(inpsep[0]));
|
||||
size = (FishSize)siz;
|
||||
int amount = int.Parse(inpsep[2]);
|
||||
|
||||
int amountcheck = fishinv.FirstOrDefault(f => f.Key == fish.Id).Value[(int)size];
|
||||
if (amountcheck < amount)
|
||||
{
|
||||
|
||||
@@ -11,6 +11,7 @@ using System.IO;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
using ImageMagick;
|
||||
|
||||
namespace Kehyeedra3.Commands
|
||||
{
|
||||
@@ -322,5 +323,6 @@ namespace Kehyeedra3.Commands
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user