Early Access, v1.0.1

This commit is contained in:
Nicola Sovic
2022-02-24 10:45:40 +01:00
parent 9610402e53
commit 639b127238
936 changed files with 75851 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Assets.Scripts.Slimes
{
class MiniBossSlime : BasicSlime
{
public MiniBossSlime(Player player) : base(player)
{
intelligence = intelligence + 3;
strength = strength + 3;
maxHealth = maxHealth + 20;
health = maxHealth;
maxSecondary = maxSecondary + 20;
dexterity = dexterity + 3;
secondary = maxSecondary;
experience = (int)(experience + experience * 0.5f);
}
}
}