Early Access, v1.0.1
This commit is contained in:
22
Assets/Scripts/Slimes/WarriorSlime.cs
Normal file
22
Assets/Scripts/Slimes/WarriorSlime.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Assets.Scripts.Slimes
|
||||
{
|
||||
class WarriorSlime : BasicSlime
|
||||
{
|
||||
public WarriorSlime(Player player) : base(player)
|
||||
{
|
||||
intelligence = intelligence - 2;
|
||||
strength = strength + 2;
|
||||
maxHealth = maxHealth + 10;
|
||||
health = maxHealth;
|
||||
//maxSecondary = maxSecondary;
|
||||
//dexterity = dexterity;
|
||||
//secondary = maxSecondary;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user