This commit is contained in:
aozhiwei 2021-04-02 15:02:46 +08:00
parent b5f72b9c29
commit cf21189e97

View File

@ -751,23 +751,29 @@ message MFSkill
optional int32 cd_time = 3; //cd时间()
}
message TextElement
message MFPlaySkill
{
optional int32 obj_uniid = 1; //id
optional int32 skill_id = 2; //id
}
message MFTextElement
{
optional string text = 1; //
optional int32 color = 2; //rgb
}
message ImageElement
message MFImageElement
{
optional int32 id = 1; //id
}
message RichTextElement
message MFRichTextElement
{
//1:TextElement 2:ImageElement
optional int32 element_type = 1; //
optional TextElement union_obj_1 = 2; //
optional ImageElement union_obj_2 = 3; //
optional MFTextElement union_obj_1 = 2; //
optional MFImageElement union_obj_2 = 3; //
}
//end mfmsg
@ -1022,6 +1028,7 @@ message SMUpdate
optional MFPlane plane = 27; //
repeated MFBuffChg chged_buff_list = 28; //buff变更列表
repeated MFPropertyChg chged_property_list = 31; //property变更列表
repeated MFPlaySkill play_skill_list = 32; //
//
repeated MFTuple dead_alive_objs = 42; //values[0]:objid values[1]: values[2]: 0: 1:
@ -1032,7 +1039,7 @@ message SMUpdate
//
message SMRollMsg
{
repeated RichTextElement elements = 1; //
repeated MFRichTextElement elements = 1; //
}
//