미션 - 유물
This commit is contained in:
parent
57871bb8e0
commit
ad9446a8b7
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.
|
|
@ -103,6 +103,9 @@ public class CollectionRelicUI : PCUIMenu
|
||||||
sdata.Add_RelicStar(m_SelectRelicData.n_RelicID);
|
sdata.Add_RelicStar(m_SelectRelicData.n_RelicID);
|
||||||
Set();
|
Set();
|
||||||
MyValue.Get_ActorStatInfoorNull(eRole.PC);
|
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);
|
sdata.Add_RelicLv(m_SelectRelicData.n_RelicID);
|
||||||
Set();
|
Set();
|
||||||
MyValue.Get_ActorStatInfoorNull(eRole.PC);
|
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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -26,6 +26,8 @@ public class MissionCard : CardBase
|
||||||
case ePurpose.TAKE_GOODS:
|
case ePurpose.TAKE_GOODS:
|
||||||
case ePurpose.CONSUME_GOODS:
|
case ePurpose.CONSUME_GOODS:
|
||||||
case ePurpose.GET_EQUIPEMENT:
|
case ePurpose.GET_EQUIPEMENT:
|
||||||
|
case ePurpose.RELIC_TAKE:
|
||||||
|
case ePurpose.RELIC_UPGRADE:
|
||||||
var item = table_itemlist.Ins.Get_Data(m_Data.n_MissionConditionValue);
|
var item = table_itemlist.Ins.Get_Data(m_Data.n_MissionConditionValue);
|
||||||
texts[0].text = DSUtil.Format(m_Data.n_MissionDesc, item.Get_Name());
|
texts[0].text = DSUtil.Format(m_Data.n_MissionDesc, item.Get_Name());
|
||||||
break;
|
break;
|
||||||
|
|
|
||||||
|
|
@ -50,7 +50,7 @@ public partial class SROptions
|
||||||
public double Amount { get { return _amount; } set { _amount = value; } }
|
public double Amount { get { return _amount; } set { _amount = value; } }
|
||||||
public void Add_Item()
|
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()
|
public void Init_Daily()
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue