2023-12-13 12:49:38 +01:00

24 lines
589 B
C#

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