提交配置表

This commit is contained in:
PC-20230316NUNE\Administrator
2023-11-21 18:52:01 +08:00
parent 074cfbd5bd
commit 5ab90ea221
525 changed files with 164826 additions and 12 deletions

View File

@@ -0,0 +1,49 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
package cfg.TB;
import luban.*;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
public final class TbGRoleCStar extends AbstractBean {
public TbGRoleCStar(JsonObject _buf) {
grade = _buf.get("grade").getAsInt();
merge = _buf.get("merge").getAsInt();
}
public static TbGRoleCStar deserialize(JsonObject _buf) {
return new cfg.TB.TbGRoleCStar(_buf);
}
/**
* 宠物星级
*/
public final int grade;
/**
* 合成数量
*/
public final int merge;
public static final int __ID__ = 1657613958;
@Override
public int getTypeId() { return __ID__; }
@Override
public String toString() {
return "{ "
+ "(format_field_name __code_style field.name):" + grade + ","
+ "(format_field_name __code_style field.name):" + merge + ","
+ "}";
}
}

View File

@@ -0,0 +1,49 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
package cfg.TB;
import luban.*;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
public final class TbGRoleCUp extends AbstractBean {
public TbGRoleCUp(JsonObject _buf) {
grade = _buf.get("grade").getAsInt();
{ com.google.gson.JsonArray _json0_ = _buf.get("materials").getAsJsonArray(); int __n0 = _json0_.size(); materials = new cfg.TbGEntity.Resource[__n0]; int __index0=0; for(JsonElement __e0 : _json0_) { cfg.TbGEntity.Resource __v0; __v0 = cfg.TbGEntity.Resource.deserialize(__e0.getAsJsonObject()); materials[__index0++] = __v0; } }
}
public static TbGRoleCUp deserialize(JsonObject _buf) {
return new cfg.TB.TbGRoleCUp(_buf);
}
/**
* 宠物等级
*/
public final int grade;
/**
* 消耗的材料
*/
public final cfg.TbGEntity.Resource[] materials;
public static final int __ID__ = 1860940751;
@Override
public int getTypeId() { return __ID__; }
@Override
public String toString() {
return "{ "
+ "(format_field_name __code_style field.name):" + grade + ","
+ "(format_field_name __code_style field.name):" + materials + ","
+ "}";
}
}

View File

@@ -35,6 +35,10 @@ public final class Tables
public cfg.TbGOnHookGlobal getTbGOnHookGlobal() { return _tbgonhookglobal; }
private final cfg.TbGResource _tbgresource;
public cfg.TbGResource getTbGResource() { return _tbgresource; }
private final cfg.TbGRoleCUp _tbgrolecup;
public cfg.TbGRoleCUp getTbGRoleCUp() { return _tbgrolecup; }
private final cfg.TbGRoleCStar _tbgrolecstar;
public cfg.TbGRoleCStar getTbGRoleCStar() { return _tbgrolecstar; }
public Tables(IJsonLoader loader) throws java.io.IOException {
_tbgglobal = new cfg.TbGGlobal(loader.load("tbgglobal"));
@@ -45,6 +49,8 @@ public final class Tables
_tbgmap = new cfg.TbGMap(loader.load("tbgmap"));
_tbgonhookglobal = new cfg.TbGOnHookGlobal(loader.load("tbgonhookglobal"));
_tbgresource = new cfg.TbGResource(loader.load("tbgresource"));
_tbgrolecup = new cfg.TbGRoleCUp(loader.load("tbgrolecup"));
_tbgrolecstar = new cfg.TbGRoleCStar(loader.load("tbgrolecstar"));
}
}

View File

@@ -0,0 +1,52 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
package cfg.TbGEntity;
import luban.*;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
/**
* 资源信息
*/
public final class Resource extends AbstractBean {
public Resource(JsonObject _buf) {
id = _buf.get("id").getAsInt();
value = _buf.get("value").getAsInt();
}
public static Resource deserialize(JsonObject _buf) {
return new cfg.TbGEntity.Resource(_buf);
}
/**
* 资源Id
*/
public final int id;
/**
* 资源数量
*/
public final int value;
public static final int __ID__ = -215001824;
@Override
public int getTypeId() { return __ID__; }
@Override
public String toString() {
return "{ "
+ "(format_field_name __code_style field.name):" + id + ","
+ "(format_field_name __code_style field.name):" + value + ","
+ "}";
}
}

View File

@@ -0,0 +1,37 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
package cfg;
import luban.*;
import com.google.gson.JsonElement;
public final class TbGRoleCStar {
private final java.util.HashMap<Integer, cfg.TB.TbGRoleCStar> _dataMap;
private final java.util.ArrayList<cfg.TB.TbGRoleCStar> _dataList;
public TbGRoleCStar(JsonElement _buf) {
_dataMap = new java.util.HashMap<Integer, cfg.TB.TbGRoleCStar>();
_dataList = new java.util.ArrayList<cfg.TB.TbGRoleCStar>();
for (com.google.gson.JsonElement _e_ : _buf.getAsJsonArray()) {
cfg.TB.TbGRoleCStar _v;
_v = cfg.TB.TbGRoleCStar.deserialize(_e_.getAsJsonObject());
_dataList.add(_v);
_dataMap.put(_v.grade, _v);
}
}
public java.util.HashMap<Integer, cfg.TB.TbGRoleCStar> getDataMap() { return _dataMap; }
public java.util.ArrayList<cfg.TB.TbGRoleCStar> getDataList() { return _dataList; }
public cfg.TB.TbGRoleCStar get(int key) { return _dataMap.get(key); }
}

View File

@@ -0,0 +1,37 @@
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
package cfg;
import luban.*;
import com.google.gson.JsonElement;
public final class TbGRoleCUp {
private final java.util.HashMap<Integer, cfg.TB.TbGRoleCUp> _dataMap;
private final java.util.ArrayList<cfg.TB.TbGRoleCUp> _dataList;
public TbGRoleCUp(JsonElement _buf) {
_dataMap = new java.util.HashMap<Integer, cfg.TB.TbGRoleCUp>();
_dataList = new java.util.ArrayList<cfg.TB.TbGRoleCUp>();
for (com.google.gson.JsonElement _e_ : _buf.getAsJsonArray()) {
cfg.TB.TbGRoleCUp _v;
_v = cfg.TB.TbGRoleCUp.deserialize(_e_.getAsJsonObject());
_dataList.add(_v);
_dataMap.put(_v.grade, _v);
}
}
public java.util.HashMap<Integer, cfg.TB.TbGRoleCUp> getDataMap() { return _dataMap; }
public java.util.ArrayList<cfg.TB.TbGRoleCUp> getDataList() { return _dataList; }
public cfg.TB.TbGRoleCUp get(int key) { return _dataMap.get(key); }
}

View File

@@ -137,6 +137,7 @@ public class GPVPAction {
client2.invoke(GActionEnum.C_MODE_PVP_END_WAIT);
GPVPMessage.GPVPStart info = builder.build();
//PVP 开始
client1.invoke(GActionEnum.C_MODE_PVP_START, info);
client2.invoke(GActionEnum.C_MODE_PVP_START, info);

View File

@@ -0,0 +1,42 @@
[
{
"grade": 1,
"merge": 1
},
{
"grade": 2,
"merge": 2
},
{
"grade": 3,
"merge": 4
},
{
"grade": 4,
"merge": 8
},
{
"grade": 5,
"merge": 16
},
{
"grade": 6,
"merge": 32
},
{
"grade": 7,
"merge": 64
},
{
"grade": 8,
"merge": 128
},
{
"grade": 9,
"merge": 256
},
{
"grade": 10,
"merge": 512
}
]

View File

@@ -0,0 +1,902 @@
[
{
"grade": 1,
"materials": [
{
"id": 90001,
"value": 100
}
]
},
{
"grade": 2,
"materials": [
{
"id": 90001,
"value": 400
}
]
},
{
"grade": 3,
"materials": [
{
"id": 90001,
"value": 900
}
]
},
{
"grade": 4,
"materials": [
{
"id": 90001,
"value": 1600
}
]
},
{
"grade": 5,
"materials": [
{
"id": 90001,
"value": 2500
}
]
},
{
"grade": 6,
"materials": [
{
"id": 90001,
"value": 3600
}
]
},
{
"grade": 7,
"materials": [
{
"id": 90001,
"value": 4900
}
]
},
{
"grade": 8,
"materials": [
{
"id": 90001,
"value": 6400
}
]
},
{
"grade": 9,
"materials": [
{
"id": 90001,
"value": 8100
}
]
},
{
"grade": 10,
"materials": [
{
"id": 90001,
"value": 10000
}
]
},
{
"grade": 11,
"materials": [
{
"id": 90001,
"value": 12100
}
]
},
{
"grade": 12,
"materials": [
{
"id": 90001,
"value": 14400
}
]
},
{
"grade": 13,
"materials": [
{
"id": 90001,
"value": 16900
}
]
},
{
"grade": 14,
"materials": [
{
"id": 90001,
"value": 19600
}
]
},
{
"grade": 15,
"materials": [
{
"id": 90001,
"value": 22500
}
]
},
{
"grade": 16,
"materials": [
{
"id": 90001,
"value": 25600
}
]
},
{
"grade": 17,
"materials": [
{
"id": 90001,
"value": 28900
}
]
},
{
"grade": 18,
"materials": [
{
"id": 90001,
"value": 32400
}
]
},
{
"grade": 19,
"materials": [
{
"id": 90001,
"value": 36100
}
]
},
{
"grade": 20,
"materials": [
{
"id": 90001,
"value": 40000
}
]
},
{
"grade": 21,
"materials": [
{
"id": 90001,
"value": 44100
}
]
},
{
"grade": 22,
"materials": [
{
"id": 90001,
"value": 48400
}
]
},
{
"grade": 23,
"materials": [
{
"id": 90001,
"value": 52900
}
]
},
{
"grade": 24,
"materials": [
{
"id": 90001,
"value": 57600
}
]
},
{
"grade": 25,
"materials": [
{
"id": 90001,
"value": 62500
}
]
},
{
"grade": 26,
"materials": [
{
"id": 90001,
"value": 67600
}
]
},
{
"grade": 27,
"materials": [
{
"id": 90001,
"value": 72900
}
]
},
{
"grade": 28,
"materials": [
{
"id": 90001,
"value": 78400
}
]
},
{
"grade": 29,
"materials": [
{
"id": 90001,
"value": 84100
}
]
},
{
"grade": 30,
"materials": [
{
"id": 90001,
"value": 90000
}
]
},
{
"grade": 31,
"materials": [
{
"id": 90001,
"value": 96100
}
]
},
{
"grade": 32,
"materials": [
{
"id": 90001,
"value": 102400
}
]
},
{
"grade": 33,
"materials": [
{
"id": 90001,
"value": 108900
}
]
},
{
"grade": 34,
"materials": [
{
"id": 90001,
"value": 115600
}
]
},
{
"grade": 35,
"materials": [
{
"id": 90001,
"value": 122500
}
]
},
{
"grade": 36,
"materials": [
{
"id": 90001,
"value": 129600
}
]
},
{
"grade": 37,
"materials": [
{
"id": 90001,
"value": 136900
}
]
},
{
"grade": 38,
"materials": [
{
"id": 90001,
"value": 144400
}
]
},
{
"grade": 39,
"materials": [
{
"id": 90001,
"value": 152100
}
]
},
{
"grade": 40,
"materials": [
{
"id": 90001,
"value": 160000
}
]
},
{
"grade": 41,
"materials": [
{
"id": 90001,
"value": 168100
}
]
},
{
"grade": 42,
"materials": [
{
"id": 90001,
"value": 176400
}
]
},
{
"grade": 43,
"materials": [
{
"id": 90001,
"value": 184900
}
]
},
{
"grade": 44,
"materials": [
{
"id": 90001,
"value": 193600
}
]
},
{
"grade": 45,
"materials": [
{
"id": 90001,
"value": 202500
}
]
},
{
"grade": 46,
"materials": [
{
"id": 90001,
"value": 211600
}
]
},
{
"grade": 47,
"materials": [
{
"id": 90001,
"value": 220900
}
]
},
{
"grade": 48,
"materials": [
{
"id": 90001,
"value": 230400
}
]
},
{
"grade": 49,
"materials": [
{
"id": 90001,
"value": 240100
}
]
},
{
"grade": 50,
"materials": [
{
"id": 90001,
"value": 250000
}
]
},
{
"grade": 51,
"materials": [
{
"id": 90001,
"value": 260100
}
]
},
{
"grade": 52,
"materials": [
{
"id": 90001,
"value": 270400
}
]
},
{
"grade": 53,
"materials": [
{
"id": 90001,
"value": 280900
}
]
},
{
"grade": 54,
"materials": [
{
"id": 90001,
"value": 291600
}
]
},
{
"grade": 55,
"materials": [
{
"id": 90001,
"value": 302500
}
]
},
{
"grade": 56,
"materials": [
{
"id": 90001,
"value": 313600
}
]
},
{
"grade": 57,
"materials": [
{
"id": 90001,
"value": 324900
}
]
},
{
"grade": 58,
"materials": [
{
"id": 90001,
"value": 336400
}
]
},
{
"grade": 59,
"materials": [
{
"id": 90001,
"value": 348100
}
]
},
{
"grade": 60,
"materials": [
{
"id": 90001,
"value": 360000
}
]
},
{
"grade": 61,
"materials": [
{
"id": 90001,
"value": 372100
}
]
},
{
"grade": 62,
"materials": [
{
"id": 90001,
"value": 384400
}
]
},
{
"grade": 63,
"materials": [
{
"id": 90001,
"value": 396900
}
]
},
{
"grade": 64,
"materials": [
{
"id": 90001,
"value": 409600
}
]
},
{
"grade": 65,
"materials": [
{
"id": 90001,
"value": 422500
}
]
},
{
"grade": 66,
"materials": [
{
"id": 90001,
"value": 435600
}
]
},
{
"grade": 67,
"materials": [
{
"id": 90001,
"value": 448900
}
]
},
{
"grade": 68,
"materials": [
{
"id": 90001,
"value": 462400
}
]
},
{
"grade": 69,
"materials": [
{
"id": 90001,
"value": 476100
}
]
},
{
"grade": 70,
"materials": [
{
"id": 90001,
"value": 490000
}
]
},
{
"grade": 71,
"materials": [
{
"id": 90001,
"value": 504100
}
]
},
{
"grade": 72,
"materials": [
{
"id": 90001,
"value": 518400
}
]
},
{
"grade": 73,
"materials": [
{
"id": 90001,
"value": 532900
}
]
},
{
"grade": 74,
"materials": [
{
"id": 90001,
"value": 547600
}
]
},
{
"grade": 75,
"materials": [
{
"id": 90001,
"value": 562500
}
]
},
{
"grade": 76,
"materials": [
{
"id": 90001,
"value": 577600
}
]
},
{
"grade": 77,
"materials": [
{
"id": 90001,
"value": 592900
}
]
},
{
"grade": 78,
"materials": [
{
"id": 90001,
"value": 608400
}
]
},
{
"grade": 79,
"materials": [
{
"id": 90001,
"value": 624100
}
]
},
{
"grade": 80,
"materials": [
{
"id": 90001,
"value": 640000
}
]
},
{
"grade": 81,
"materials": [
{
"id": 90001,
"value": 656100
}
]
},
{
"grade": 82,
"materials": [
{
"id": 90001,
"value": 672400
}
]
},
{
"grade": 83,
"materials": [
{
"id": 90001,
"value": 688900
}
]
},
{
"grade": 84,
"materials": [
{
"id": 90001,
"value": 705600
}
]
},
{
"grade": 85,
"materials": [
{
"id": 90001,
"value": 722500
}
]
},
{
"grade": 86,
"materials": [
{
"id": 90001,
"value": 739600
}
]
},
{
"grade": 87,
"materials": [
{
"id": 90001,
"value": 756900
}
]
},
{
"grade": 88,
"materials": [
{
"id": 90001,
"value": 774400
}
]
},
{
"grade": 89,
"materials": [
{
"id": 90001,
"value": 792100
}
]
},
{
"grade": 90,
"materials": [
{
"id": 90001,
"value": 810000
}
]
},
{
"grade": 91,
"materials": [
{
"id": 90001,
"value": 828100
}
]
},
{
"grade": 92,
"materials": [
{
"id": 90001,
"value": 846400
}
]
},
{
"grade": 93,
"materials": [
{
"id": 90001,
"value": 864900
}
]
},
{
"grade": 94,
"materials": [
{
"id": 90001,
"value": 883600
}
]
},
{
"grade": 95,
"materials": [
{
"id": 90001,
"value": 902500
}
]
},
{
"grade": 96,
"materials": [
{
"id": 90001,
"value": 921600
}
]
},
{
"grade": 97,
"materials": [
{
"id": 90001,
"value": 940900
}
]
},
{
"grade": 98,
"materials": [
{
"id": 90001,
"value": 960400
}
]
},
{
"grade": 99,
"materials": [
{
"id": 90001,
"value": 980100
}
]
},
{
"grade": 100,
"materials": [
{
"id": 90001,
"value": 1000000
}
]
}
]

View File

@@ -5,8 +5,8 @@
"skillController": "GSkillCrazySquirrel",
"skillArgs": [
"5",
"250",
"250"
"300",
"300"
],
"skillText": "疯狂松鼠的技能 丢出巨大炸弹 轰炸全部玩家"
},