small edits

also minor improvements to fish stuff and commented bulksell because I accidentally pushed it as an incomplete thing
This commit is contained in:
Lan
2021-04-03 21:34:38 +03:00
parent 519caa9430
commit 8b41386d07
4 changed files with 194 additions and 185 deletions

View File

@@ -230,7 +230,7 @@ namespace Kehyeedra3.Services.Models
new Fish() //// Tier 2
{
Id = FishSpecies.T2Leg,
Id = FishSpecies.Hypnofish,
Name = "Hypnofish",
Emote = "<:paska:786244602440450109><:hypnoosi:786244623478947841>",
Rarity = FishRarity.Legendary,
@@ -238,7 +238,7 @@ namespace Kehyeedra3.Services.Models
},
new Fish()
{
Id = FishSpecies.T2Swolefish,
Id = FishSpecies.Swolefish,
Name = "Pumped Up Swolefish",
Emote = "<:missingLeg:682586847830081551>",
Rarity = FishRarity.Rare,
@@ -246,7 +246,7 @@ namespace Kehyeedra3.Services.Models
},
new Fish()
{
Id = FishSpecies.T2Gunfish,
Id = FishSpecies.Gunfish,
Name = "Gunfish",
Emote = "<:gunfishleft:793492588799590460><:gunfishright:793492625277714442>",
Rarity = FishRarity.Uncommon,
@@ -254,16 +254,24 @@ namespace Kehyeedra3.Services.Models
},
new Fish()
{
Id = FishSpecies.T2Com,
Id = FishSpecies.Rockfish,
Name = "Rockfish",
Emote = "<:missingLeg:682586847830081551>",
Rarity = FishRarity.Common,
Tier = FishTier.T2
},
new Fish()
{
Id = FishSpecies.Fishlet,
Name = "Fishlet",
Emote = "<:missingLeg:682586847830081551>",
Rarity = FishRarity.Common,
Tier = FishTier.T2
},
new Fish() //// Tier 3
{
Id = FishSpecies.T3Doomfish,
Id = FishSpecies.SpecDoomfish,
Name = "Spectral Doomfish",
Emote = "<:missingLeg:682586847830081551>",
Rarity = FishRarity.Legendary,
@@ -271,7 +279,7 @@ namespace Kehyeedra3.Services.Models
},
new Fish()
{
Id = FishSpecies.T3Crab,
Id = FishSpecies.RevCrab,
Name = "Revenant Crab",
Emote = "<:missingLeg:682586847830081551>",
Rarity = FishRarity.Rare,
@@ -279,7 +287,7 @@ namespace Kehyeedra3.Services.Models
},
new Fish()
{
Id = FishSpecies.T3Flameworm,
Id = FishSpecies.SpecFlameworm,
Name = "Spectral Flameworm",
Emote = "<:missingLeg:682586847830081551>",
Rarity = FishRarity.Uncommon,
@@ -287,45 +295,46 @@ namespace Kehyeedra3.Services.Models
},
new Fish()
{
Id = FishSpecies.T3Com,
Id = FishSpecies.SpecShrimp,
Name = "Spectral Shrimp",
Emote = "<:missingLeg:682586847830081551>",
Rarity = FishRarity.Common,
Tier = FishTier.T3
},
new Fish() //// Tier 4
new Fish()
{
Id = FishSpecies.T4Leg,
Name = "Missing T4 Legendary Fish",
Id = FishSpecies.T4PH1,
Name = "Placeholder",
Emote = "<:missingLeg:682586847830081551>",
Rarity = FishRarity.Legendary,
Tier = FishTier.T4
},
new Fish()
{
Id = FishSpecies.T4Rar,
Name = "Missing T4 Rare Fish",
Id = FishSpecies.T4PH2,
Name = "Placeholder",
Emote = "<:missingLeg:682586847830081551>",
Rarity = FishRarity.Rare,
Tier = FishTier.T4
},
new Fish()
{
Id = FishSpecies.T4Unc,
Name = "Missing T4 Uncommon Fish",
Id = FishSpecies.T4PH3,
Name = "Placeholder",
Emote = "<:missingLeg:682586847830081551>",
Rarity = FishRarity.Uncommon,
Tier = FishTier.T4
},
new Fish()
{
Id = FishSpecies.T4Com,
Name = "Missing T4 Common Fish",
Id = FishSpecies.T4PH4,
Name = "Placeholder",
Emote = "<:missingLeg:682586847830081551>",
Rarity = FishRarity.Common,
Tier = FishTier.T4
}
},
};
}
@@ -359,29 +368,28 @@ namespace Kehyeedra3.Services.Models
Carp = 18,
Megacrab = 19,
//T2 Legendary
T2Leg = 20,
Hypnofish = 20,
//T2 Rare
T2Swolefish = 21,
Swolefish = 21,
//T2 Uncommon
T2Gunfish = 22,
Gunfish = 22,
//T2 Common
T2Com = 23,
Rockfish = 23,
Fishlet = 24,
//T3 Legendary
T3Doomfish = 24,
SpecDoomfish = 25,
//T3 Rare
T3Crab = 25,
RevCrab = 26,
//T3 Uncommon
T3Flameworm = 26,
SpecFlameworm = 27,
//T3 Common
T3Com = 27,
//T4 Legendary
T4Leg = 28,
//T4 Rare
T4Rar = 29,
//T4 Uncommon
T4Unc = 30,
//T4 Common
T4Com = 31
SpecShrimp = 28,
//T4
T4PH1 = 29,
T4PH2 = 30,
T4PH3 = 31,
T4PH4 = 32,
}
public class FishingInventorySlot
{