Updated rarity, fixed hp/mp display on point usage, fixed item moving issue, v1.3.0

This commit is contained in:
Nicola Sovic
2022-07-04 11:54:31 +02:00
parent 977f9ca5cf
commit dd0251cb3e
5 changed files with 42 additions and 38 deletions

View File

@@ -33,7 +33,7 @@ namespace Assets.Scripts.Slimes
intelligence = playerStats[6];
experience = (int)(10 + playerStats[7] * 2.5f);
level = playerStats[7];
if (new System.Random().Next(100) + 1 < 1000)//5 + playerStats[11])
if (new System.Random().Next(100) + 1 < 1000)//10 + playerStats[11])
{
item = new Item(playerStats[11]);
}