Changed to 3D graphics, Adapted House and Chest

This commit is contained in:
TAASONI3
2023-04-27 23:12:11 +02:00
parent c32e634c02
commit 6dc7063cec
124 changed files with 8553 additions and 5097 deletions

View 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 ForestSlime : BasicSlime
{
public ForestSlime(Player player) : base(player)
{
//intelligence = intelligence;
//strength = strength;
maxHealth = maxHealth + 10;
health = maxHealth;
maxSecondary = maxSecondary + 10;
dexterity = dexterity + 2;
secondary = maxSecondary;
}
}
}