From b4713044e29625bda9a3c2c58d7e579a00f4baa7 Mon Sep 17 00:00:00 2001 From: Alifia Rahmah <13520122@std.stei.itb.ac.id> Date: Sat, 15 Apr 2023 12:56:10 +0700 Subject: [PATCH] fix(pet): change pet type --- Assets/Scripts/Shop/ShopManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Assets/Scripts/Shop/ShopManager.cs b/Assets/Scripts/Shop/ShopManager.cs index 2a21b4ad..ac61e5cc 100644 --- a/Assets/Scripts/Shop/ShopManager.cs +++ b/Assets/Scripts/Shop/ShopManager.cs @@ -27,8 +27,8 @@ public class ShopManager : MonoBehaviour private void Awake() { petData.Add(new PetData("rabbit", "heal", 3, 50, "rabbit", 1)); - petData.Add(new PetData("sparrow", "defense", 3, 40, "sparrow", 2)); - petData.Add(new PetData("cultist", "attack", 3, 40, "cultist", 3)); + petData.Add(new PetData("sparrow", "attack", 3, 40, "sparrow", 2)); + petData.Add(new PetData("cultist", "buff", 3, 40, "cultist", 3)); weaponData.Add(new WeaponData("shotgun", 50, "shotgun",2)); weaponData.Add(new WeaponData("sword", 80, "sword",3)); -- GitLab