2022-02-24 10:45:40 +01:00

23 lines
560 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Assets.Scripts.Slimes
{
public class MageSlime : BasicSlime
{
public MageSlime(Player player) : base(player)
{
intelligence = intelligence + 2;
strength = strength - 2;
maxHealth = maxHealth - 10;
health = maxHealth;
maxSecondary = maxSecondary + 10;
dexterity = dexterity - 2;
secondary = maxSecondary;
}
}
}