미션 - 유물

This commit is contained in:
Ino 2025-03-19 07:48:03 +09:00
parent 57871bb8e0
commit ad9446a8b7
6 changed files with 12 additions and 3 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -103,6 +103,9 @@ public class CollectionRelicUI : PCUIMenu
sdata.Add_RelicStar(m_SelectRelicData.n_RelicID);
Set();
MyValue.Get_ActorStatInfoorNull(eRole.PC);
sdata.Add_MissionCount(ePurpose.RELIC_TAKE, m_SelectRelicData.n_RelicID);
sdata.Add_MissionCount(ePurpose.RELIC_TAKE_ALL);
}
}
@ -127,6 +130,10 @@ public class CollectionRelicUI : PCUIMenu
sdata.Add_RelicLv(m_SelectRelicData.n_RelicID);
Set();
MyValue.Get_ActorStatInfoorNull(eRole.PC);
sdata.Add_MissionCount(ePurpose.RELIC_UPGRADE, m_SelectRelicData.n_RelicID);
sdata.Add_MissionCount(ePurpose.RELIC_UPGRADE_ALL);
sdata.Add_MissionCount(ePurpose.RELIC_UPGRADE_LIMIT_ALL);
}
}
}

View File

@ -26,6 +26,8 @@ public class MissionCard : CardBase
case ePurpose.TAKE_GOODS:
case ePurpose.CONSUME_GOODS:
case ePurpose.GET_EQUIPEMENT:
case ePurpose.RELIC_TAKE:
case ePurpose.RELIC_UPGRADE:
var item = table_itemlist.Ins.Get_Data(m_Data.n_MissionConditionValue);
texts[0].text = DSUtil.Format(m_Data.n_MissionDesc, item.Get_Name());
break;

View File

@ -50,7 +50,7 @@ public partial class SROptions
public double Amount { get { return _amount; } set { _amount = value; } }
public void Add_Item()
{
ServerInfo.Ins.m_ServerData.Add_Item(new ItemData(Item, ID, Amount));
ServerInfo.Ins.m_ServerData.Add_Item(ID, Amount);
}
public void Init_Daily()
{