24 lines
592 B
C#
24 lines
592 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 ForestSlime : BasicSlime
|
|
{
|
|
public ForestSlime(PlayerGameObject player) : base(player)
|
|
{
|
|
//intelligence = intelligence;
|
|
//strength = strength;
|
|
maxHealth = maxHealth + 10;
|
|
health = maxHealth;
|
|
maxSecondary = maxSecondary + 10;
|
|
dexterity = dexterity + 2;
|
|
secondary = maxSecondary;
|
|
}
|
|
}
|
|
}
|