1
Fork 0
slime-blood-and-pain/Assets/Scripts/EntityItemShopSword.cs

21 lines
No EOL
549 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class EntityItemShopSword : EntityItemShop {
public float damage = 3f;
public override string Name {
get {
return "Sword (" + damage.ToString() + " dmg)";
}
}
protected override void OnPurchase() {
Destroy(player.GetComponent<PlayerAttack>());
player.AddComponent(PlayerAttackMelee);
PlayerAttackMelee pam = player.GetComponent<PlayerAttackMelee>();
pam.damage = this.damage;
}
}