minor edits
2 new fish emotes, combined ratetrap into a single command, renamed fishprofile to statprofile
This commit is contained in:
@@ -1074,7 +1074,7 @@ namespace Kehyeedra3.Commands
|
|||||||
|
|
||||||
}
|
}
|
||||||
[Command("stats"),Summary("View a user's stats")]
|
[Command("stats"),Summary("View a user's stats")]
|
||||||
public async Task FishProfile(IUser otherUser = null)
|
public async Task StatProfile(IUser otherUser = null)
|
||||||
{
|
{
|
||||||
using (var database = new ApplicationDbContextFactory().CreateDbContext())
|
using (var database = new ApplicationDbContextFactory().CreateDbContext())
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -37,37 +37,41 @@ namespace Kehyeedra3.Commands
|
|||||||
}
|
}
|
||||||
|
|
||||||
[Command("ratetrap"), Summary("Rates your or another person's trap potential as a percentage")]
|
[Command("ratetrap"), Summary("Rates your or another person's trap potential as a percentage")]
|
||||||
public async Task RateTrap()
|
public async Task RateTrap( string name = null)
|
||||||
{
|
{
|
||||||
Random rando = new Random();
|
if (name == null)
|
||||||
Random rando1 = new Random();
|
|
||||||
int trapRating0 = rando.Next(0, 101);
|
|
||||||
if (trapRating0 == 100)
|
|
||||||
{
|
{
|
||||||
int trapRating1 = rando1.Next(0, 1001);
|
Random rando = new Random();
|
||||||
await Context.Channel.SendMessageAsync($"I'd say right now you're {trapRating1}% passable");
|
Random rando1 = new Random();
|
||||||
|
int trapRating0 = rando.Next(0, 101);
|
||||||
|
if (trapRating0 == 100)
|
||||||
|
{
|
||||||
|
int trapRating1 = rando1.Next(0, 1001);
|
||||||
|
await Context.Channel.SendMessageAsync($"I'd say right now you're {trapRating1}% passable");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
await Context.Channel.SendMessageAsync($"I'd say right now you're {trapRating0}% passable");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
await Context.Channel.SendMessageAsync($"I'd say right now you're {trapRating0}% passable");
|
Random rando = new Random();
|
||||||
}
|
Random rando1 = new Random();
|
||||||
}
|
int trapRating0 = rando.Next(0, 101);
|
||||||
[Command("ratetrap"), Summary("Rates your or another person's trap potential as a percentage")]
|
if (trapRating0 == 100)
|
||||||
public async Task RateOtherTrap([Remainder] string name)
|
{
|
||||||
{
|
int trapRating1 = rando1.Next(0, 1001);
|
||||||
Random rando = new Random();
|
await Context.Channel.SendMessageAsync($"I'd say right now {name} is {trapRating1}% passable");
|
||||||
Random rando1 = new Random();
|
}
|
||||||
int trapRating0 = rando.Next(0, 101);
|
else
|
||||||
if (trapRating0 == 100)
|
{
|
||||||
{
|
await Context.Channel.SendMessageAsync($"I'd say right now {name} is {trapRating0}% passable");
|
||||||
int trapRating1 = rando1.Next(0, 1001);
|
}
|
||||||
await Context.Channel.SendMessageAsync($"I'd say right now {name} is {trapRating1}% passable");
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
await Context.Channel.SendMessageAsync($"I'd say right now {name} is {trapRating0}% passable");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
[Command("ratertrap"), Summary("ratertrap")]
|
[Command("ratertrap"), Summary("ratertrap")]
|
||||||
public async Task RaterTrap()
|
public async Task RaterTrap()
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -117,14 +117,14 @@ namespace Kehyeedra3.Services.Models
|
|||||||
{
|
{
|
||||||
Id = FishSpecies.Stargazer,
|
Id = FishSpecies.Stargazer,
|
||||||
Name = "Stargazer",
|
Name = "Stargazer",
|
||||||
Emote = "<:missingUnc:682586846857003064>[Stargazer]",
|
Emote = "<:stargazerleft:700414644774240286><:stargazerright:700413063442202684>",
|
||||||
Rarity = FishRarity.Uncommon
|
Rarity = FishRarity.Uncommon
|
||||||
},
|
},
|
||||||
new Fish()
|
new Fish()
|
||||||
{
|
{
|
||||||
Id = FishSpecies.Isopod,
|
Id = FishSpecies.Isopod,
|
||||||
Name = "Isopod",
|
Name = "Isopod",
|
||||||
Emote = "<:missingUnc:682586846857003064>[Isopod]",
|
Emote = "<:isopodleft:700397032271249428><:isopodright:700397031922991206>",
|
||||||
Rarity = FishRarity.Uncommon
|
Rarity = FishRarity.Uncommon
|
||||||
},
|
},
|
||||||
new Fish()
|
new Fish()
|
||||||
|
|||||||
Reference in New Issue
Block a user