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