Files
Max-Cocos-Demo/assets/resources/task-configs.json
2025-10-28 21:55:41 +08:00

157 lines
4.5 KiB
JSON

{
"dailyTasks": [
{
"id": "daily_login",
"name": "每日登录",
"description": "每天登录游戏获得奖励",
"type": "daily",
"priority": 1,
"icon": "icon_daily_login",
"targets": [
{
"id": "login_count",
"type": "count",
"description": "登录游戏",
"targetCount": 1,
"currentCount": 0
}
],
"rewards": [
{
"type": "gold",
"id": "gold",
"amount": 100,
"name": "金币",
"description": "游戏货币"
},
{
"type": "exp",
"id": "exp",
"amount": 50,
"name": "经验值",
"description": "角色经验"
}
],
"resetCycle": "daily",
"enabled": true,
"repeatable": true
},
{
"id": "daily_battle",
"name": "每日战斗",
"description": "完成3场战斗",
"type": "daily",
"priority": 2,
"targets": [
{
"id": "battle_count",
"type": "count",
"description": "完成战斗",
"targetCount": 3,
"currentCount": 0
}
],
"rewards": [
{
"type": "gold",
"id": "gold",
"amount": 200,
"name": "金币"
}
],
"resetCycle": "daily",
"enabled": true,
"repeatable": true
}
],
"weeklyTasks": [
{
"id": "weekly_dungeon",
"name": "每周副本",
"description": "完成5次副本挑战",
"type": "weekly",
"priority": 1,
"targets": [
{
"id": "dungeon_count",
"type": "count",
"description": "完成副本",
"targetCount": 5,
"currentCount": 0
}
],
"rewards": [
{
"type": "item",
"id": "rare_equipment_box",
"amount": 1,
"name": "稀有装备箱"
}
],
"resetCycle": "weekly",
"enabled": true,
"repeatable": true
}
],
"monthlyTasks": [
{
"id": "monthly_achievement",
"name": "月度成就",
"description": "本月累计获得10000经验",
"type": "monthly",
"priority": 1,
"targets": [
{
"id": "exp_gain",
"type": "gain",
"description": "获得经验",
"targetCount": 10000,
"currentCount": 0
}
],
"rewards": [
{
"type": "title",
"id": "monthly_hero",
"amount": 1,
"name": "月度英雄"
}
],
"resetCycle": "monthly",
"enabled": true,
"repeatable": true
}
],
"seasonalTasks": [
{
"id": "season_1_master",
"name": "赛季大师",
"description": "在第一赛季达到大师段位",
"type": "seasonal",
"priority": 1,
"targets": [
{
"id": "rank_master",
"type": "reach_level",
"description": "达到大师段位",
"targetCount": 1,
"currentCount": 0
}
],
"rewards": [
{
"type": "item",
"id": "legendary_skin",
"amount": 1,
"name": "传说皮肤"
}
],
"resetCycle": "seasonal",
"startTime": 1640995200000,
"endTime": 1648771200000,
"enabled": true,
"repeatable": false
}
]
}