上传代码和配置

This commit is contained in:
liwei 2023-07-18 10:30:56 +08:00
parent 0263d89adc
commit 28c7975613
5 changed files with 146 additions and 0 deletions

View File

@ -630,5 +630,24 @@
"text": "0", "text": "0",
"show": "98元", "show": "98元",
"image": "" "image": ""
},
{
"id": "drawcard pack1",
"editionid": "debug",
"recharge_type": 5,
"monetaryunit": "¥",
"amount": 3000,
"vipexp": [
{
"a": "attr",
"t": "vipexp",
"n": 300
}
],
"diamond_num_double": [],
"channel": "0",
"text": "0",
"show": "30元",
"image": ""
} }
] ]

View File

@ -42051,5 +42051,52 @@
"DpsCondition": "", "DpsCondition": "",
"RevisiCondition": "", "RevisiCondition": "",
"RevisiParams": [] "RevisiParams": []
},
{
"Id": 254014111,
"EmitPR": 1000,
"From": 4,
"Where": [],
"Order": "",
"Limit": 1,
"ExecuteCnt": 1,
"Type": 1,
"Argu": [
1,
4,
2000
],
"FollowSK": [],
"SucFollowSK": [],
"FailFollowSK": [],
"MustHit": false,
"DpsRevisiType": 0,
"DpsCondition": "",
"RevisiCondition": "",
"RevisiParams": []
},
{
"Id": 254014211,
"EmitPR": 1000,
"From": 1,
"Where": [],
"Order": "",
"Limit": 10,
"ExecuteCnt": 1,
"Type": 3,
"Argu": [
390001008,
1000,
1,
2
],
"FollowSK": [],
"SucFollowSK": [],
"FailFollowSK": [],
"MustHit": false,
"DpsRevisiType": 0,
"DpsCondition": "",
"RevisiCondition": "",
"RevisiParams": []
} }
] ]

View File

@ -29914,5 +29914,63 @@
}, },
"buffid": [], "buffid": [],
"map": "" "map": ""
},
{
"id": 154014111,
"level": 1,
"MaxLV": 1,
"UnavailablePlayTypes": [],
"Name": {
"key": "skill_skill_atk_Name_154014111",
"text": "挚爱甜心"
},
"ico": "jn_54014_1",
"CorrectPos": 0,
"IsMelee": 0,
"act": "Skill_1",
"Type": 1,
"CD": 0,
"Where": [],
"Target": 2,
"ChildSkill": {
"Id": [
254014111
]
},
"Desc": {
"key": "skill_skill_atk_Desc_154014111_1",
"text": "对敌方1个目标发起攻击造成攻击力 200%的伤害。"
},
"buffid": [],
"map": ""
},
{
"id": 154014211,
"level": 1,
"MaxLV": 1,
"UnavailablePlayTypes": [],
"Name": {
"key": "skill_skill_atk_Name_154014211",
"text": "恋如糖雨"
},
"ico": "jn_54014_2",
"CorrectPos": 0,
"IsMelee": 0,
"act": "Skill_2",
"Type": 1,
"CD": 3,
"Where": [],
"Target": 2,
"ChildSkill": {
"Id": [
254014211
]
},
"Desc": {
"key": "skill_skill_atk_Desc_154014211_1",
"text": "对全体己方队友附加2回合[color=#37d8a9]攻击提升[/color]状态。"
},
"buffid": [],
"map": ""
} }
] ]

View File

@ -293,6 +293,9 @@ const (
///工会战 ///工会战
TableUniongve = "uniongve" TableUniongve = "uniongve"
//全局表
TableGlobal = "global"
) )
// RPC服务接口定义处 // RPC服务接口定义处

View File

@ -0,0 +1,19 @@
package tools
import (
"go_dreamfactory/comm"
"go_dreamfactory/lego/core"
"go_dreamfactory/modules"
)
type modelGlobal struct {
modules.MCompModel
module *Tools
}
func (this *modelGlobal) Init(service core.IService, module core.IModule, comp core.IModuleComp, options core.IModuleOptions) (err error) {
err = this.MCompModel.Init(service, module, comp, options)
this.TableName = comm.TableGlobal
this.module = module.(*Tools)
return
}