직업 고유 스킬 지급

This commit is contained in:
Ino 2025-07-06 09:00:32 +09:00
parent 7726fc0338
commit 7bb1a9d3e1
2 changed files with 19778 additions and 55 deletions

File diff suppressed because it is too large Load Diff

View File

@ -128,6 +128,12 @@ public class PCJobUI_OpenCondition : MonoBehaviour
{
sdata.Use_Item(moneyid, m_Data.n_NeedGoodsCount);
sdata.PC.Add_PC(m_ClassId);
// 고유 스킬 지급
var skills = table_skilllist.Ins.Get_DataList(eSkillType.JobPassive, m_Data.n_ClassID);
for (int i = 0; i < skills.Count; i++)
sdata.Add_Skill(skills[i].n_SkillID, 1);
Set_UI();
MyValue.Get_ActorStatInfoorNull(eRole.PC);
});