PLANTING_CROPS_GRADE_ALL

PLANTING_CROPS_GRADE_ACC
HARVESTING CROPS_ALL
HARVESTING CROPS_ACC
SHORTENING CROP HARVEST
This commit is contained in:
Ino 2025-03-21 06:45:21 +09:00
parent 4864e62a74
commit 7436633630
9 changed files with 16 additions and 2 deletions

View File

@ -73,6 +73,7 @@ messageinfo 엄청 느린 버그
- 업적
-- 컨텐츠가 없어서 적용안된 미션 있음
일일, 주간 초기화 확인
인게임 힘민지 레벨업과 저장 안됨
수상한 미궁 몹 수 이상하고, 안 움직임

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

@ -39,6 +39,10 @@ public class FarmSelectEnchantCard : CardBase
sdata.Set_FarmSlot(slotdata.Slot, Tdata.n_Grade, harvestTime, m_Data.n_EnchantID);
var itemData = table_itemlist.Ins.Get_Data(seedid);
sdata.Add_MissionCount(ePurpose.PLANTING_CROPS_GRADE_ALL);
sdata.Add_MissionCount(ePurpose.PLANTING_CROPS_GRADE_ACC, itemData.n_ItemGrade);
FarmSlotUI.Ins.Set();
FarmSelectEnchantUI.Ins.OnClick_Back();

View File

@ -85,6 +85,7 @@ public class FarmSlotCard : CardBase
if (sdata.Check_ItemAmount(table_GlobalValue.Ins.Get_Int("n_CashItemID"), price))
{
sdata.Use_Item(table_GlobalValue.Ins.Get_Int("n_CashItemID"), price);
sdata.Add_MissionCount(ePurpose.SHORTENING_CROP_HARVEST);
OnClick_Get();
}
}
@ -144,6 +145,9 @@ public class FarmSlotCard : CardBase
for (int i = 0; i < items.Count; i++)
sdata.Add_Item(items[i].itemid, items[i].amount);
sdata.Add_MissionCount(ePurpose.HARVESTING_CROPS_ACC);
sdata.Add_MissionCount(ePurpose.HARVESTING_CROPS_ALL);
ObtainItemUI.Ins.Set(items);
sdata.Set_FarmSlot(m_Data.Slot, 0, 0, 0);
FarmSlotUI.Ins.Set();

View File

@ -71,6 +71,7 @@ public class MissionCard : CardBase
(eMainStatType)(m_Data.n_MissionConditionValue - 1));
break;
case ePurpose.GET_EQUIP_ITEM_GRADE_ACC:
case ePurpose.PLANTING_CROPS_GRADE_ACC:
texts[0].text = DSUtil.Format(m_Data.n_MissionDesc, m_Data.l_MissionConditionCount,
MyText.Get_GradeName(m_Data.n_MissionConditionValue));
break;

View File

@ -59,6 +59,8 @@ public static class MyText
case 5: return DSUtil.Format("{0}등급5", color);
case 6: return DSUtil.Format("{0}등급6", color);
case 7: return DSUtil.Format("{0}등급7", color);
case 8: return DSUtil.Format("{0}등급8", color);
case 9: return DSUtil.Format("{0}등급9", color);
}
}
public static string Get_eAwakenUpgradeOptionTypeName(string type)

View File

@ -147,6 +147,8 @@ public static class MyValue
case 5: return "<color=#fd4348>";
case 6: return "<color=#ffe613>";
case 7: return "<color=#dd61ef>";
case 8: return "<color=#FF9413>";
case 9: return "<color=#FF12A8>";
}
}
public static Color Get_SliderGradeColor(eItemGrade _grade)