mirror of
https://gitee.com/cssfw/EasyTools.git
synced 2026-03-28 12:01:36 +08:00
feat: 914和电梯使用提示
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
using EasyTools.Utils;
|
||||
using PlayerRoles;
|
||||
using Scp914;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
|
||||
@@ -73,5 +74,21 @@ namespace EasyTools.Configs
|
||||
{Team.ChaosInsurgency , "混沌阵营" },
|
||||
{Team.FoundationForces , "九尾狐阵营" },
|
||||
};
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
[Description("电梯显示模板(HEX color写死, {p_operator}表示操作人, 没有的话自动为未知):")]
|
||||
public string elev_template { get; set; } = "[Elevator] 电梯使用者: <color=#B952FA>{p_operator}</color>";
|
||||
[Description("SCP914显示模板(HEX color写死, {mode}表示操作模式, {p_operator}表示操作人, 没有的话自动为未知):")]
|
||||
public string scp914_template { get; set; } = "[Scp914] 已启动! 模式: <color=#F7C73E>{mode}</color>, 操作人: <color=#0080FF>{p_operator}</color>";
|
||||
[Description("SCP914, Rough模式翻译:")]
|
||||
public Dictionary<Scp914KnobSetting, string> scp914_trans { get; set; } = new Dictionary<Scp914KnobSetting, string>()
|
||||
{
|
||||
{ Scp914KnobSetting.Rough, "粗加" },
|
||||
{ Scp914KnobSetting.Coarse, "半粗" },
|
||||
{ Scp914KnobSetting.OneToOne, "1:1" },
|
||||
{ Scp914KnobSetting.Fine, "精加" },
|
||||
{ Scp914KnobSetting.VeryFine, "超精加工" }
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user