英雄忠诚度有什么玩法
🤖 回答引擎: 功能策划 |
🕒 时间: 2026-03-01 19:05:57 |
👁️ 阅读: 14
**第一部分:按钮功能说明**
1. **忠诚度信息查看按钮**
* **功能**:点击后,在界面中显示英雄的当前忠诚度数值、忠诚度等级(如:普通、忠诚、信赖、死忠等)以及对应的属性加成效果。
2. **提升忠诚度按钮**
* **功能**:点击后,打开一个子界面或弹出确认框,允许玩家使用特定道具(如“英雄美酒”、“英雄锦囊”等)来增加英雄的忠诚度数值。
3. **忠诚度任务/日常按钮**
* **功能**:点击后,显示当前可完成的、用于提升英雄忠诚度的任务列表(例如:与英雄组队击杀100只怪物、赠送英雄特定物品等)。完成任务可获得忠诚度奖励。
4. **忠诚度属性加成详情按钮**
* **功能**:点击后,展开一个详细面板,列出不同忠诚度等级下,英雄对主人(玩家角色)提供的具体属性加成,例如:攻击力+%、防御力+%、生命值+%等。
5. **忠诚度恢复/防止下降按钮**
* **功能**:当英雄死亡或长时间未登录时,忠诚度可能会下降。此按钮允许玩家通过消耗金币或道具,立即恢复一定数值的忠诚度,或开启一个防止忠诚度下降的临时状态(如“悉心照料”状态,持续24小时)。
6. **忠诚度等级奖励领取按钮**
* **功能**:当英雄忠诚度达到新的等级(如从“忠诚”提升到“信赖”)时,此按钮亮起。点击后可领取该忠诚度等级对应的专属奖励(如特殊称号、外观、一次性道具等)。
7. **英雄互动/培养按钮**
* **功能**:点击后,可能触发一个小游戏或播放一段互动动画(例如:与英雄切磋、请英雄饮酒、赠送礼物等),完成互动后小幅提升忠诚度,增加沉浸感。
8. **关闭/返回按钮**
* **功能**:关闭当前英雄忠诚度界面,返回游戏主界面或上一级菜单。
**第二部分:UI配置(英雄忠诚度系统界面)**
```json
[
{
"type": "rect",
"name": "main_bg",
"x": 140,
"y": 110,
"w": 920,
"h": 580,
"text": "",
"fontSize": 14,
"color": "#ffffff",
"bg": "rgba(20, 10, 5, 0.9)",
"border": "2px solid #8B4513"
},
{
"type": "text",
"name": "title_text",
"x": 500,
"y": 130,
"w": 200,
"h": 40,
"text": "英雄忠诚系统",
"fontSize": 28,
"color": "#FFD700",
"bg": "transparent",
"border": "none"
},
{
"type": "button",
"name": "close_btn",
"x": 1020,
"y": 110,
"w": 40,
"h": 30,
"text": "✕",
"fontSize": 20,
"color": "#ffffff",
"bg": "#8B0000",
"border": "1px solid #FF0000"
},
{
"type": "rect",
"name": "hero_info_bg",
"x": 180,
"y": 180,
"w": 280,
"h": 200,
"text": "",
"fontSize": 14,
"color": "#ffffff",
"bg": "rgba(60, 30, 15, 0.8)",
"border": "1px solid #A0522D"
},
{
"type": "text",
"name": "hero_name_title",
"x": 200,
"y": 200,
"w": 100,
"h": 30,
"text": "英雄名称:",
"fontSize": 18,
"color": "#FFA500",
"bg": "transparent",
"border": "none"
},
{
"type": "text",
"name": "hero_name_value",
"x": 320,
"y": 200,
"w": 120,
"h": 30,
"text": "战天",
"fontSize": 18,
"color": "#87CEEB",
"bg": "transparent",
"border": "none"
},
{
"type": "text",
"name": "loyalty_title",
"x": 200,
"y": 240,
"w": 100,
"h": 30,
"text": "当前忠诚度:",
"fontSize": 18,
"color": "#FFA500",
"bg": "transparent",
"border": "none"
},
{
"type": "text",
"name": "loyalty_value",
"x": 320,
"y": 240,
"w": 120,
"h": 30,
"text": "850 / 1000",
"fontSize": 18,
"color": "#FF6347",
"bg": "transparent",
"border": "none"
},
{
"type": "text",
"name": "loyalty_level_title",
"x": 200,
"y": 280,
"w": 100,
"h": 30,
"text": "忠诚等级:",
"fontSize": 18,
"color": "#FFA500",
"bg": "transparent",
"border": "none"
},
{
"type": "text",
"name": "loyalty_level_value",
"x": 320,
"y": 280,
"w": 120,
"h": 30,
"text": "【信赖】",
"fontSize": 18,
"color": "#32CD32",
"bg": "transparent",
"border": "none"
},
{
"type": "text",
"name": "loyalty_progress_title",
"x": 200,
"y": 320,
"w": 100,
"h": 30,
"text": "等级进度:",
"fontSize": 18,
"color": "#FFA500",
"bg": "transparent",
"border": "none"
},
{
"type": "progress",
"name": "loyalty_progress_bar",
"x": 320,
"y": 325,
"w": 120,
"h": 20,
"text": "",
"fontSize": 14,
"color": "#ffffff",
"bg": "#444444",
"border": "1px solid #666666",
"percent": 85
},
{
"type": "rect",
"name": "action_bg",
"x": 180,
"y": 400,
"w": 280,
"h": 150,
"text": "",
"fontSize": 14,
"color": "#ffffff",
"bg": "rgba(60, 30, 15, 0.8)",
"border": "1px solid #A0522D"
},
{
"type": "button",
"name": "raise_loyalty_btn",
"x": 200,
"y": 420,
"w": 240,
"h": 40,
"text": "提升忠诚度",
"fontSize": 20,
"color": "#ffffff",
"bg": "#4CAF50",
"border": "1px solid #388E3C"
},
{
"type": "button",
"name": "daily_task_btn",
"x": 200,
"y": 470,
"w": 240,
"h": 40,
"text": "忠诚度任务",
"fontSize": 20,
"color": "#ffffff",
"bg": "#2196F3",
"border": "1px solid #0D47A1"
},
{
"type": "button",
"name": "interact_btn",
"x": 200,
"y": 520,
"w": 240,
"h": 40,
"text": "与英雄互动",
"fontSize": 20,
"color": "#ffffff",
"bg": "#9C27B0",
"border": "1px solid #6A1B9A"
},
{
"type": "rect",
"name": "bonus_bg",
"x": 480,
"y": 180,
"w": 400,
"h": 200,
"text": "",
"fontSize": 14,
"color": "#ffffff",
"bg": "rgba(60, 30, 15, 0.8)",
"border": "1px solid #A0522D"
},
{
"type": "text",
"name": "bonus_title",
"x": 500,
"y": 200,
"w": 200,
"h": 30,
"text": "当前忠诚度加成:",
"fontSize": 22,
"color": "#FFD700",
"bg": "transparent",
"border": "none"
},
{
"type": "text",
"name": "bonus_attack",
"x": 520,
"y": 240,
"w": 360,
"h": 25,
"text": "• 英雄对主人攻击力加成:+5%",
"fontSize": 18,
"color": "#FF6347",
"bg": "transparent",
"border": "none"
},
{
"type": "text",
"name": "bonus_defense",
"x": 520,
"y": 270,
"w": 360,
"h": 25,
"text": "• 英雄对主人物理防御加成:+3%",
"fontSize": 18,
"color": "#87CEEB",
"bg": "transparent",
"border": "none"
},
{
"type": "text",
"name": "bonus_hp",
"x": 520,
"y": 300,
"w": 360,
"h": 25,
"text": "• 英雄对主人生命值加成:+8%",
"fontSize": 18,
"color": "#32CD32",
"bg": "transparent",
"border": "none"
},
{
"type": "button",
"name": "detail_bonus_btn",
"x": 520,
"y": 340,
"w": 360,
"h": 30,
"text": "点击查看更高级别加成详情 >>",
"fontSize": 16,
"color": "#FFA500",
"bg": "transparent",
"border": "none"
},
{
"type": "rect",
"name": "level_reward_bg",
"x": 480,
"y": 400,
"w": 400,
"h": 150,
"text": "",
"fontSize": 14,
"color": "#ffffff",
"bg": "rgba(60, 30, 15, 0.8)",
"border": "1px solid #A0522D"
},
{
"type": "text",
"name": "reward_title",
"x": 500,
"y": 420,
"w": 200,
"h": 30,
"text": "忠诚等级奖励",
"fontSize": 22,
"color": "#FFD700",
"bg": "transparent",
"border": "none"
},
{
"type": "text",
"name": "next_reward_desc",
"x": 520,
"y": 460,
"w": 360,
"h": 25,
"text": "下一等级【死忠】奖励:专属称号【生死与共】",
"fontSize": 18,
"color": "#FFA500",
"bg": "transparent",
"border": "none"
},
{
"type": "button",
"name": "claim_reward_btn",
"x": 520,
"y": 500,
"w": 360,
"h": 40,
"text": "领取当前等级奖励",
"fontSize": 20,
"color": "#ffffff",
"bg": "#FF9800",
"border": "1px solid #EF6C00"
},
{
"type": "rect",
"name": "recovery_bg",
"x": 900,
"y": 180,
"w": 140,
"h": 100,
"text": "",
"fontSize": 14,
"color": "#ffffff",
"bg": "rgba(80, 40, 20, 0.9)",
"border": "1px solid #A0522D"
},
{
"type": "button",
"name": "recovery_btn",
"x": 910,
"y": 200,
"w": 120,
"h": 60,
"text": "恢复忠诚度",
"fontSize": 18,
"color": "#ffffff",
"bg": "#8B4513",
"border": "1px solid #D2691E"
},
{
"type": "text",
"name": "hint_text",
"x": 180,
"y": 560,
"w": 700,
"h": 30,
"text": "提示:英雄死亡或长时间未上线会导致忠诚度下降,请及时互动或使用道具恢复。",
"fontSize": 16,
"color": "#FF8C00",
"bg": "transparent",
"border": "none"
}
]
```
← 返回问答库