介绍一下 夫妻传送这个技能
🤖 回答引擎: 功能策划 |
🕒 时间: 2026-04-22 23:40:09 |
👁️ 阅读: 8
## 第一部分:按钮功能说明
### 1. 主界面按钮
- **夫妻传送按钮**:点击后打开夫妻传送功能界面。
- **关闭按钮**:点击后关闭当前界面。
### 2. 传送功能按钮(在功能界面内)
- **传送到配偶身边**:点击后立即传送至配偶当前所在位置。
- **召唤配偶**:点击后尝试将配偶召唤至自己身边。
- **查询配偶位置**:点击后显示配偶当前所在地图名称和坐标。
### 3. 设置与信息按钮
- **解除关系**:点击后弹出确认框,确认后解除夫妻关系。
- **查看配偶信息**:点击后显示配偶的角色名、等级、职业等基本信息。
---
## 第二部分:UI界面配置(LEGEND UI EDITOR 规范)
### UI名称:夫妻传送功能界面
**设计说明**:采用温馨浪漫的粉色与金色主题,布局简洁明了,突出核心传送功能。
**JSON配置数组**:
```json
[
{
"type": "rect",
"name": "main_bg",
"x": 140,
"y": 110,
"w": 920,
"h": 580,
"text": "",
"fontSize": 14,
"color": "#ffffff",
"bg": "rgba(0,0,0,0.85)",
"border": "2px solid #FF69B4"
},
{
"type": "text",
"name": "title_text",
"x": 180,
"y": 130,
"w": 200,
"h": 40,
"text": "夫妻传送",
"fontSize": 28,
"color": "#FFD700",
"bg": "transparent",
"border": ""
},
{
"type": "button",
"name": "close_btn",
"x": 1020,
"y": 110,
"w": 40,
"h": 30,
"text": "✕",
"fontSize": 20,
"color": "#ffffff",
"bg": "#FF6347",
"border": "1px solid #8B0000"
},
{
"type": "button",
"name": "teleport_to_spouse_btn",
"x": 400,
"y": 200,
"w": 300,
"h": 60,
"text": "传送到配偶身边",
"fontSize": 22,
"color": "#FFFFFF",
"bg": "#4CAF50",
"border": "2px solid #388E3C"
},
{
"type": "text",
"name": "teleport_to_spouse_desc",
"x": 400,
"y": 270,
"w": 300,
"h": 30,
"text": "立即飞往你的伴侣所在位置。",
"fontSize": 16,
"color": "#E0E0E0",
"bg": "transparent",
"border": ""
},
{
"type": "button",
"name": "summon_spouse_btn",
"x": 400,
"y": 320,
"w": 300,
"h": 60,
"text": "召唤配偶",
"fontSize": 22,
"color": "#FFFFFF",
"bg": "#2196F3",
"border": "2px solid #0D47A1"
},
{
"type": "text",
"name": "summon_spouse_desc",
"x": 400,
"y": 390,
"w": 300,
"h": 30,
"text": "尝试将你的伴侣召唤到你身边。",
"fontSize": 16,
"color": "#E0E0E0",
"bg": "transparent",
"border": ""
},
{
"type": "button",
"name": "query_location_btn",
"x": 400,
"y": 440,
"w": 300,
"h": 60,
"text": "查询配偶位置",
"fontSize": 22,
"color": "#FFFFFF",
"bg": "#FF9800",
"border": "2px solid #EF6C00"
},
{
"type": "text",
"name": "location_display_text",
"x": 400,
"y": 510,
"w": 300,
"h": 40,
"text": "配偶位置:未查询",
"fontSize": 18,
"color": "#87CEEB",
"bg": "transparent",
"border": ""
},
{
"type": "rect",
"name": "spouse_info_bg",
"x": 740,
"y": 200,
"w": 300,
"h": 150,
"text": "",
"fontSize": 14,
"color": "#ffffff",
"bg": "rgba(255, 182, 193, 0.2)",
"border": "1px solid #FFB6C1"
},
{
"type": "text",
"name": "spouse_info_title",
"x": 750,
"y": 210,
"w": 280,
"h": 30,
"text": "配偶信息",
"fontSize": 20,
"color": "#FFD700",
"bg": "transparent",
"border": ""
},
{
"type": "text",
"name": "spouse_name_text",
"x": 750,
"y": 250,
"w": 280,
"h": 25,
"text": "名称:等待获取...",
"fontSize": 16,
"color": "#FFFFFF",
"bg": "transparent",
"border": ""
},
{
"type": "text",
"name": "spouse_level_text",
"x": 750,
"y": 280,
"w": 280,
"h": 25,
"text": "等级:等待获取...",
"fontSize": 16,
"color": "#FFFFFF",
"bg": "transparent",
"border": ""
},
{
"type": "button",
"name": "view_spouse_info_btn",
"x": 750,
"y": 320,
"w": 280,
"h": 40,
"text": "查看详细信息",
"fontSize": 18,
"color": "#FFFFFF",
"bg": "#9C27B0",
"border": "2px solid #7B1FA2"
},
{
"type": "button",
"name": "divorce_btn",
"x": 740,
"y": 380,
"w": 300,
"h": 50,
"text": "解除夫妻关系",
"fontSize": 20,
"color": "#FFFFFF",
"bg": "#F44336",
"border": "2px solid #D32F2F"
},
{
"type": "text",
"name": "divorce_warning_text",
"x": 740,
"y": 440,
"w": 300,
"h": 40,
"text": "解除关系后,传送功能将永久失效。",
"fontSize": 14,
"color": "#FF6347",
"bg": "transparent",
"border": ""
},
{
"type": "text",
"name": "hint_text",
"x": 180,
"y": 550,
"w": 760,
"h": 30,
"text": "提示:夫妻传送功能需要双方在线且在同一服务器。",
"fontSize": 16,
"color": "#FF8C00",
"bg": "transparent",
"border": ""
}
]
```
← 返回问答库