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