24 lines
625 B
C#
24 lines
625 B
C#
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);
|
|
}
|
|
}
|
|
}
|