From 023b3592de2a058ec32521444845bfab5b921bb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BA=91=E6=B4=9B=E8=AF=AD=E7=A7=8B?= Date: Thu, 29 May 2025 16:19:18 +0000 Subject: [PATCH] =?UTF-8?q?docs:=20create=20=E6=8F=90=E6=A1=88/=E5=AD=97?= =?UTF-8?q?=E4=BD=93=E8=AE=BE=E8=AE=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- 提案/字体设计.md | 97 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 97 insertions(+) create mode 100644 提案/字体设计.md diff --git a/提案/字体设计.md b/提案/字体设计.md new file mode 100644 index 0000000..e520983 --- /dev/null +++ b/提案/字体设计.md @@ -0,0 +1,97 @@ +--- +title: 字体设计 +description: +published: true +date: 2025-05-29T16:19:08.676Z +tags: +editor: markdown +dateCreated: 2025-05-29T16:19:08.676Z +--- + +# MCUNC 策划案-游戏内消息设计方案 + +> By 云洛语秋 +> +> Version: 1.0.0 +> +> 2025-05-30 +{.is-info} + +## 文档所使用的变量 + +变量格式:`%变量名%` + +`player_name`(`pn`):消息发送者游戏名 + +`player_prefix`(`pp`):消息发送者前缀 + +`plugin_name`:消息发送插件“模块名” + +`reciever_name`:消息接收者游戏名 + +`message_range`(`mr`):消息范围 + +`content`(`c`):消息内容 + +## 消息发送者前缀(`player_prefix`) + +|称号名称|颜色值| +|:--:|:--:| +|`腐竹`|#e056fd| +|`副腐竹`|#e056fd| +|`常驻管理`|#ffeaa7| +|`顶级赞助商`|#ffeaa7| +|`普通管理`|#fab1a0| +|`普通赞助商`|#fab1a0| +|`玩家`|#a4b0be| + +## 消息范围(`message_range`) + +|范围名称|颜色值| +|:--:|:--:| +|`全服`|#7d5284| +|`本服`|#108b96| +|`房间`|#9ebc19| +|`私聊`|#c67915| +|`系统`|#c12c1f| + +## 消息格式 + +### 1. 全服消息 + +``` +┌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┐ + | %mr% | [%pp%] 「%pn%」 >>> + %c% +└╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌╌┘ +``` + +### 2. 当前服务器消息 + +``` +| %mr% | [%pp%] 「%pn%」 >> %c% +``` + +### 3. 当前房间消息 + +``` +| %mr% | 「%pn%」 > %c% +``` + +### 4. 私聊消息 + +``` +| %mr% | 「%pn%」>「%reciever_name%」 >>> %c% +``` + +### 5. 系统消息 + +``` +| %mr% | [%plugin_name%] %c% +``` + +### 6. Raw + +``` +%c% +``` \ No newline at end of file