载具配置更新

StableDev-0.2.0-v11
Yuntao Hu 2025-04-22 15:51:56 +08:00
parent 94d277cbda
commit 7a53440901
7 changed files with 734 additions and 102 deletions

View File

@ -124,22 +124,22 @@ public static class VehicleDataHelper
return CommonUtils.GetDefaultVehicleHeadPath((uint)iD);
}
/// <summary>
/// 获取载具高清图片路径
/// </summary>
/// <param name="id"></param>
/// <returns></returns>
public static string GetVehicleIconPath(int id)
{
var vehicleCfg = TableManager.Instance.Tables.VehicleConfig.GetOrDefault(id);
if (vehicleCfg == null)
{
DebugUtil.LogError("载具配置表中没有id为{0}的配置", id);
return null;
}
return vehicleCfg.Icon;
}
///// <summary>
///// 获取载具高清图片路径
///// </summary>
///// <param name="id"></param>
///// <returns></returns>
//public static string GetVehicleIconPath(int id)
//{
// var vehicleCfg = TableManager.Instance.Tables.VehicleConfig.GetOrDefault(id);
// if (vehicleCfg == null)
// {
// DebugUtil.LogError("载具配置表中没有id为{0}的配置", id);
// return null;
// }
//
// return vehicleCfg.Icon;
//}
public static VehicleConfigData CombineConfigData(VehicleCultivateData infoData)
{

View File

@ -242,7 +242,7 @@ namespace Gameplay.Vehicle.Data
debugShowInfo = new DebugShowInfo();
debugShowInfo.configId = "VehicleConfig@" + configId;
debugShowInfo.name = rawConfig.Cfg.Name;
debugShowInfo.iconPath = rawConfig.Cfg.Icon;
//debugShowInfo.iconPath = rawConfig.Cfg.Icon;
level = passInLevel;

View File

@ -20,10 +20,12 @@ public sealed partial class DataVehicle : Luban.BeanBase
{ if(!_buf["ID"].IsNumber) { throw new SerializationException(); } ID = _buf["ID"]; }
{ if(!_buf["VehicleType"].IsNumber) { throw new SerializationException(); } VehicleType = (VihecleCultivateCfg.VehicleType)_buf["VehicleType"].AsInt; }
{ if(!_buf["VehicleLevel"].IsNumber) { throw new SerializationException(); } VehicleLevel = _buf["VehicleLevel"]; }
{ if(!_buf["Category"].IsNumber) { throw new SerializationException(); } Category = (VihecleCultivateCfg.VehicleCategory)_buf["Category"].AsInt; }
{ if(!_buf["Name"].IsString) { throw new SerializationException(); } Name = _buf["Name"]; }
{ if(!_buf["UnlockType"].IsNumber) { throw new SerializationException(); } UnlockType = (VihecleCultivateCfg.UnlockType)_buf["UnlockType"].AsInt; }
{ var __json0 = _buf["UnlockCost"]; if(!__json0.IsArray) { throw new SerializationException(); } UnlockCost = new System.Collections.Generic.List<item.ItemCounts>(__json0.Count); foreach(JSONNode __e0 in __json0.Children) { item.ItemCounts __v0; { if(!__e0.IsObject) { throw new SerializationException(); } __v0 = global::cfg.item.ItemCounts.DeserializeItemCounts(__e0); } UnlockCost.Add(__v0); } }
{ if(!_buf["Unlocks"].IsString) { throw new SerializationException(); } Unlocks = _buf["Unlocks"]; }
{ var __json0 = _buf["UnlockID"]; if(!__json0.IsArray) { throw new SerializationException(); } int _n0 = __json0.Count; UnlockID = new int[_n0]; int __index0=0; foreach(JSONNode __e0 in __json0.Children) { int __v0; { if(!__e0.IsNumber) { throw new SerializationException(); } __v0 = __e0; } UnlockID[__index0++] = __v0; } }
{ var __json0 = _buf["DefaultPaintID"]; if(!__json0.IsArray) { throw new SerializationException(); } int _n0 = __json0.Count; DefaultPaintID = new int[_n0]; int __index0=0; foreach(JSONNode __e0 in __json0.Children) { int __v0; { if(!__e0.IsNumber) { throw new SerializationException(); } __v0 = __e0; } DefaultPaintID[__index0++] = __v0; } }
{ if(!_buf["UIHeadPath"].IsString) { throw new SerializationException(); } UIHeadPath = _buf["UIHeadPath"]; }
{ if(!_buf["PrefabPath"].IsString) { throw new SerializationException(); } PrefabPath = _buf["PrefabPath"]; }
@ -50,15 +52,17 @@ public sealed partial class DataVehicle : Luban.BeanBase
{ if(!_buf["SpendLeadership"].IsNumber) { throw new SerializationException(); } SpendLeadership = _buf["SpendLeadership"]; }
}
public DataVehicle(int ID, VihecleCultivateCfg.VehicleType VehicleType, int VehicleLevel, string Name, VihecleCultivateCfg.UnlockType UnlockType, System.Collections.Generic.List<item.ItemCounts> UnlockCost, string Unlocks, int[] DefaultPaintID, string UIHeadPath, string PrefabPath, string ReadyAudioId, string IdleLoopAudioId, string WalkStopAudioId, string WalkLoopAudioId, string DeadAudioId, int DeadEffectId, int StandCrossLevel, int MoveCrossLevel, int SeatCount, int Defense, int HP, int ShieldCount, long WeaponId, float MoveSpeed, float LowMoveSpeed, float TurnSpeed, float CriticalRate, float CriticalScale, System.Collections.Generic.List<FightCfg.ELevelTerrainType> MalaAdjustTerrain, System.Collections.Generic.List<FightCfg.ELevelTerrainType> SupperAdjustTerrain, int SpendLeadership )
public DataVehicle(int ID, VihecleCultivateCfg.VehicleType VehicleType, int VehicleLevel, VihecleCultivateCfg.VehicleCategory Category, string Name, VihecleCultivateCfg.UnlockType UnlockType, System.Collections.Generic.List<item.ItemCounts> UnlockCost, string Unlocks, int[] UnlockID, int[] DefaultPaintID, string UIHeadPath, string PrefabPath, string ReadyAudioId, string IdleLoopAudioId, string WalkStopAudioId, string WalkLoopAudioId, string DeadAudioId, int DeadEffectId, int StandCrossLevel, int MoveCrossLevel, int SeatCount, int Defense, int HP, int ShieldCount, long WeaponId, float MoveSpeed, float LowMoveSpeed, float TurnSpeed, float CriticalRate, float CriticalScale, System.Collections.Generic.List<FightCfg.ELevelTerrainType> MalaAdjustTerrain, System.Collections.Generic.List<FightCfg.ELevelTerrainType> SupperAdjustTerrain, int SpendLeadership )
{
this.ID = ID;
this.VehicleType = VehicleType;
this.VehicleLevel = VehicleLevel;
this.Category = Category;
this.Name = Name;
this.UnlockType = UnlockType;
this.UnlockCost = UnlockCost;
this.Unlocks = Unlocks;
this.UnlockID = UnlockID;
this.DefaultPaintID = DefaultPaintID;
this.UIHeadPath = UIHeadPath;
this.PrefabPath = PrefabPath;
@ -104,6 +108,10 @@ public sealed partial class DataVehicle : Luban.BeanBase
/// </summary>
public int VehicleLevel { get; private set; }
/// <summary>
/// 载具尺寸类型
/// </summary>
public VihecleCultivateCfg.VehicleCategory Category { get; private set; }
/// <summary>
/// 载具名字(载具名称取ID后两位采用拼接)
/// </summary>
public string Name { get; private set; }
@ -120,6 +128,10 @@ public sealed partial class DataVehicle : Luban.BeanBase
/// </summary>
public string Unlocks { get; private set; }
/// <summary>
/// 解锁条件
/// </summary>
public int[] UnlockID { get; private set; }
/// <summary>
/// 默认皮肤物品ID
/// </summary>
public int[] DefaultPaintID { get; private set; }
@ -230,10 +242,12 @@ public sealed partial class DataVehicle : Luban.BeanBase
+ "ID:" + ID + ","
+ "VehicleType:" + VehicleType + ","
+ "VehicleLevel:" + VehicleLevel + ","
+ "Category:" + Category + ","
+ "Name:" + Name + ","
+ "UnlockType:" + UnlockType + ","
+ "UnlockCost:" + Luban.StringUtil.CollectionToString(UnlockCost) + ","
+ "Unlocks:" + Unlocks + ","
+ "UnlockID:" + Luban.StringUtil.CollectionToString(UnlockID) + ","
+ "DefaultPaintID:" + Luban.StringUtil.CollectionToString(DefaultPaintID) + ","
+ "UIHeadPath:" + UIHeadPath + ","
+ "PrefabPath:" + PrefabPath + ","

View File

@ -11553,8 +11553,8 @@
{
"Key": "ChapterName_202",
"Name": "ChapterName_202",
"value": "渴望变革",
"Desc": "渴望变革",
"value": "别无选择",
"Desc": "别无选择",
"Notes": "",
"Param0": "",
"Param1": "",
@ -11592,8 +11592,8 @@
{
"Key": "ChapterName_203",
"Name": "ChapterName_203",
"value": "一个国家的诞生",
"Desc": "一个国家的诞生",
"value": "当我离开的时候",
"Desc": "当我离开的时候",
"Notes": "",
"Param0": "",
"Param1": "",
@ -25268,7 +25268,7 @@
{
"Key": "shop_GoodsName_93001107",
"Name": "shop_GoodsName_93001107",
"value": "蒂亚娜·罗哈斯的结业证书",
"value": "蒂亚娜的结业证书",
"Desc": "蒂亚娜·罗哈斯的结业证书",
"Notes": "",
"Param0": "",
@ -30000,8 +30000,8 @@
{
"Key": "Gacha_CharacterProbability_320001",
"Name": "Gacha_CharacterProbability_320001",
"value": "该卡池为常驻卡池,战斗员抽取概率如下:\\n5星战斗员获得概率3%(朱利亚斯/艾丽卡/汉娜/西尔维亚/璐比/莫菲/安吉拉/贝尔撒克逊/拉丽妲/尤利娅/贝拉/曼普雷蒂/娜塔莎)\\n4星战斗员获得概率30%(埃琳娜/卡琳/克劳迪娅/莉莎/米娅/卡露拉/桃瑞斯/阿兰西/弦乐/巴里/希尔芙/伊尔米拉/玛尔塔)\\n3星战斗员获得概率66%(梅梅/提可/蜜儿/盖尔菲斯特/尤奈/内莉/露露菲亚/夏希/蒂亚娜·罗哈斯",
"Desc": "该卡池为常驻卡池,战斗员抽取概率如下:\\n5星战斗员获得概率3%(朱利亚斯/艾丽卡/汉娜/西尔维亚/璐比/莫菲/安吉拉/贝尔撒克逊/拉丽妲/尤利娅/贝拉/曼普雷蒂/娜塔莎)\\n4星战斗员获得概率30%(埃琳娜/卡琳/克劳迪娅/莉莎/米娅/卡露拉/桃瑞斯/阿兰西/弦乐/巴里/希尔芙/伊尔米拉/玛尔塔)\\n3星战斗员获得概率66%(梅梅/提可/蜜儿/盖尔菲斯特/尤奈/内莉/露露菲亚/夏希/蒂亚娜·罗哈斯",
"value": "该卡池为常驻卡池,战斗员抽取概率如下:\\n5星战斗员获得概率3%(朱利亚斯/芙利丝/艾丽卡/汉娜/西尔维亚/璐比/莫菲/安吉拉/莱奥妮/克默/贝尔撒克逊/瓦娜莱特/嘉比莉露/曼普雷蒂/娜塔莎)\\n4星战斗员获得概率30%(埃琳娜/卡琳/克劳迪娅/莉莎/米娅/卡露拉/柯贝尔/桃瑞斯/阿兰西/弦乐/巴里)\\n3星战斗员获得概率67%(梅梅/提可/蜜儿/盖尔菲斯特/尤奈/伊丽莎白",
"Desc": "该卡池为常驻卡池,战斗员抽取概率如下:\\n5星战斗员获得概率3%(朱利亚斯|芙利丝|艾丽卡|汉娜|西尔维亚|璐比|莫菲|安吉拉|莱奥妮|克默|贝尔撒克逊|瓦娜莱特|嘉比莉露|曼普雷蒂|娜塔莎)\\n4星战斗员获得概率30%(埃琳娜|卡琳|克劳迪娅|莉莎|米娅|卡露拉|柯贝尔|桃瑞斯|阿兰西|弦乐|巴里)\\n3星战斗员获得概率67%(梅梅|提可|蜜儿|盖尔菲斯特|尤奈|伊丽莎白",
"Notes": "",
"Param0": "",
"Param1": "",
@ -30026,8 +30026,8 @@
{
"Key": "Gacha_CharacterProbability_320002",
"Name": "Gacha_CharacterProbability_320002",
"value": "该卡池为限定卡池,战斗员抽取概率如下:\\n5星战斗员获得概率3%朱利亚斯/艾丽卡/汉娜/西尔维亚/璐比/莫菲/安吉拉/贝尔撒克逊/拉丽妲/尤利娅/贝拉/曼普雷蒂/娜塔莎)\\n4星战斗员获得概率30%(埃琳娜/卡琳/克劳迪娅/莉莎/米娅/卡露拉/桃瑞斯/阿兰西/弦乐/巴里/希尔芙/伊尔米拉/玛尔塔)\\n3星战斗员获得概率66%(梅梅/提可/蜜儿/盖尔菲斯特/尤奈/内莉/露露菲亚/夏希/蒂亚娜·罗哈斯",
"Desc": "该卡池为限定卡池,战斗员抽取概率如下:\\n5星战斗员获得概率3%朱利亚斯/艾丽卡/汉娜/西尔维亚/璐比/莫菲/安吉拉/贝尔撒克逊/拉丽妲/尤利娅/贝拉/曼普雷蒂/娜塔莎)\\n4星战斗员获得概率30%(埃琳娜/卡琳/克劳迪娅/莉莎/米娅/卡露拉/桃瑞斯/阿兰西/弦乐/巴里/希尔芙/伊尔米拉/玛尔塔)\\n3星战斗员获得概率66%(梅梅/提可/蜜儿/盖尔菲斯特/尤奈/内莉/露露菲亚/夏希/蒂亚娜·罗哈斯",
"value": "该卡池为限定卡池,战斗员抽取概率如下:\\n5星战斗员获得概率3%璐比/安吉拉/莱奥妮/瓦娜莱特/伊妮德/波拉/尤利娅/嘉比莉露/菲丽芭/伊斯塔)\\n4星战斗员获得概率30%(埃琳娜/卡琳/克劳迪娅/莉莎/米娅/莫菲/希尔芙/阿巴比尔/茨木姬)\\n3星战斗员获得概率67%(梅梅/提可/尤奈",
"Desc": "该卡池为限定卡池,战斗员抽取概率如下:\\n5星战斗员获得概率3%璐比|安吉拉|莱奥妮|瓦娜莱特|伊妮德|波拉|尤利娅|嘉比莉露|菲丽芭|伊斯塔)\\n4星战斗员获得概率30%(埃琳娜|卡琳|克劳迪娅|莉莎|米娅|莫菲|希尔芙|阿巴比尔|茨木姬)\\n3星战斗员获得概率67%(梅梅|提可|尤奈",
"Notes": "",
"Param0": "",
"Param1": "",
@ -36029,6 +36029,19 @@
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "battlepass_specialItem_level",
"Name": "battlepass_specialItem_level",
"value": "开通<color=#f4ec13>高级账号</color>后于通行证<color=#f4ec13>{0}级</color>获得",
"Desc": "",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "team_commanderskill",
"Name": "team_commanderskill",
@ -132546,7 +132559,7 @@
{
"Key": "Guide_208",
"Name": "Guide_208",
"value": "将米放入备战区",
"value": "将米放入备战区",
"Desc": "",
"Notes": "",
"Param0": "",
@ -132764,6 +132777,279 @@
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_517",
"Name": "Guide_517",
"value": "目前的领导力已经不够领导其他单位了,点击回到备战界面",
"Desc": "目前的领导力已经不够领导其他单位了,点击回到备战界面",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_602",
"Name": "Guide_602",
"value": "点击开始战斗",
"Desc": "点击开始战斗",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_603",
"Name": "Guide_603",
"value": "将蓝鸟放入备战区",
"Desc": "将蓝鸟放入备战区",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_604",
"Name": "Guide_604",
"value": "将埃琳娜放入备战区",
"Desc": "将埃琳娜放入备战区",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_605",
"Name": "Guide_605",
"value": "将莉莎放入备战区",
"Desc": "将莉莎放入备战区",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_606",
"Name": "Guide_606",
"value": "将克劳迪娅放入备战区",
"Desc": "将克劳迪娅放入备战区",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_607",
"Name": "Guide_607",
"value": "点击开始战斗",
"Desc": "点击开始战斗",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_609",
"Name": "Guide_609",
"value": "当角色战斗一段时候时,角色可以使用自己的特殊能力,现在使用克劳迪娅的能力打击一个敌人",
"Desc": "当角色战斗一段时候时,角色可以使用自己的特殊能力,现在使用克劳迪娅的能力打击一个敌人",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_610",
"Name": "Guide_610",
"value": "选中一个敌人",
"Desc": "选中一个敌人",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_611",
"Name": "Guide_611",
"value": "为了简化您的操作,我们提供了小队命令,拖动小队命令到指定位置可以对整个小队下达指令",
"Desc": "为了简化您的操作,我们提供了小队命令,拖动小队命令到指定位置可以对整个小队下达指令",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_612",
"Name": "Guide_612",
"value": "命令整小队向目标位置移动",
"Desc": "命令整小队向目标位置移动",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_703",
"Name": "Guide_703",
"value": "目前的领导力可以再为小队选取一名侦察员",
"Desc": "目前的领导力可以再为小队选取一名侦察员",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_704",
"Name": "Guide_704",
"value": "选中侦察员",
"Desc": "选中侦察员",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_706",
"Name": "Guide_706",
"value": "去尝试一下满编小队的威力吧",
"Desc": "去尝试一下满编小队的威力吧",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_802",
"Name": "Guide_802",
"value": "点击开始战斗",
"Desc": "点击开始战斗",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_803",
"Name": "Guide_803",
"value": "将蓝鸟放入备战区",
"Desc": "将蓝鸟放入备战区",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_804",
"Name": "Guide_804",
"value": "将埃琳娜放入备战区",
"Desc": "将埃琳娜放入备战区",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_805",
"Name": "Guide_805",
"value": "将莉莎放入备战区",
"Desc": "将莉莎放入备战区",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_806",
"Name": "Guide_806",
"value": "将米娅放入备战区",
"Desc": "将米娅放入备战区",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_807",
"Name": "Guide_807",
"value": "将克劳迪娅放入备战区",
"Desc": "将克劳迪娅放入备战区",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_808",
"Name": "Guide_808",
"value": "点击开始战斗",
"Desc": "点击开始战斗",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "errorIdDesc",
"Name": "errorIdDesc",
@ -134586,7 +134872,7 @@
},
{
"Key": "LoginError_10620",
"Name": "LoginError_10621",
"Name": "LoginError_10620",
"value": "输入的短信验证码不正确",
"Desc": "输入的短信验证码不正确",
"Notes": "",
@ -134792,6 +135078,19 @@
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "LoginError_10627",
"Name": "LoginError_10627",
"value": "登录暂未开放!",
"Desc": "登录暂未开放!",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "LoginError_other",
"Name": "LoginError_other",
@ -137785,7 +138084,7 @@
{
"Key": "ItemName_piece_107",
"Name": "ItemName_piece_107",
"value": "蒂亚娜·罗哈斯的结业证书",
"value": "蒂亚娜的结业证书",
"Desc": "蒂亚娜·罗哈斯的结业证书",
"Notes": "",
"Param0": "",
@ -138123,7 +138422,7 @@
{
"Key": "ItemName_skillup_102",
"Name": "ItemName_skillup_102",
"value": "伟大卫国战争后勤经验总结",
"value": "战争后勤经验总结",
"Desc": "伟大卫国战争后勤经验总结",
"Notes": "",
"Param0": "",
@ -138136,7 +138435,7 @@
{
"Key": "ItemName_skillup_103",
"Name": "ItemName_skillup_103",
"value": "第二工作队 狙击战例汇编",
"value": "狙击战例汇编",
"Desc": "第二工作队 狙击战例汇编",
"Notes": "",
"Param0": "",
@ -138149,7 +138448,7 @@
{
"Key": "ItemName_skillup_104",
"Name": "ItemName_skillup_104",
"value": "侦察连军事训练教案",
"value": "军事训练教案",
"Desc": "侦察连军事训练教案",
"Notes": "",
"Param0": "",
@ -138162,7 +138461,7 @@
{
"Key": "ItemName_skillup_105",
"Name": "ItemName_skillup_105",
"value": "班(排)支援火器 兵器与操作教程",
"value": "兵器与操作教程",
"Desc": "班(排)支援火器 兵器与操作教程",
"Notes": "",
"Param0": "",
@ -140021,7 +140320,7 @@
{
"Key": "ItemName_Album_01",
"Name": "ItemName_Album_01",
"value": "音乐专辑01-旅途记忆OST",
"value": "01旅途记忆OST",
"Desc": "音乐专辑01-旅途记忆OST",
"Notes": "",
"Param0": "",
@ -140034,7 +140333,7 @@
{
"Key": "ItemName_Album_02",
"Name": "ItemName_Album_02",
"value": "音乐专辑02-战地回响OST",
"value": "02战地回响OST",
"Desc": "音乐专辑02-战地回响OST",
"Notes": "",
"Param0": "",
@ -140047,7 +140346,7 @@
{
"Key": "ItemName_Album_03",
"Name": "ItemName_Album_03",
"value": "音乐专辑03-诺克斯妙妙屋OST",
"value": "03诺克斯妙妙屋OST",
"Desc": "音乐专辑03-诺克斯妙妙屋OST",
"Notes": "",
"Param0": "",

View File

@ -16280,8 +16280,8 @@
"Rarity": 0,
"BatchUsing": false,
"MaxCount": 0,
"IconPath": "",
"CoinIconPath": "",
"IconPath": "Assets/Art_Out/UI/Texture/Icon/MaterialFragment/Icon_1120001.png",
"CoinIconPath": "Assets/Art_Out/UI/Texture/Icon/MaterialFragment/Icon_1120001.png",
"Selections": [],
"MaxUseCount": 0,
"ExpireTransfor": 0,

View File

@ -11553,8 +11553,8 @@
{
"Key": "ChapterName_202",
"Name": "ChapterName_202",
"value": "渴望变革",
"Desc": "渴望变革",
"value": "别无选择",
"Desc": "别无选择",
"Notes": "",
"Param0": "",
"Param1": "",
@ -11592,8 +11592,8 @@
{
"Key": "ChapterName_203",
"Name": "ChapterName_203",
"value": "一个国家的诞生",
"Desc": "一个国家的诞生",
"value": "当我离开的时候",
"Desc": "当我离开的时候",
"Notes": "",
"Param0": "",
"Param1": "",
@ -25268,7 +25268,7 @@
{
"Key": "shop_GoodsName_93001107",
"Name": "shop_GoodsName_93001107",
"value": "蒂亚娜·罗哈斯的结业证书",
"value": "蒂亚娜的结业证书",
"Desc": "蒂亚娜·罗哈斯的结业证书",
"Notes": "",
"Param0": "",
@ -30000,8 +30000,8 @@
{
"Key": "Gacha_CharacterProbability_320001",
"Name": "Gacha_CharacterProbability_320001",
"value": "该卡池为常驻卡池,战斗员抽取概率如下:\\n5星战斗员获得概率3%(朱利亚斯/艾丽卡/汉娜/西尔维亚/璐比/莫菲/安吉拉/贝尔撒克逊/拉丽妲/尤利娅/贝拉/曼普雷蒂/娜塔莎)\\n4星战斗员获得概率30%(埃琳娜/卡琳/克劳迪娅/莉莎/米娅/卡露拉/桃瑞斯/阿兰西/弦乐/巴里/希尔芙/伊尔米拉/玛尔塔)\\n3星战斗员获得概率66%(梅梅/提可/蜜儿/盖尔菲斯特/尤奈/内莉/露露菲亚/夏希/蒂亚娜·罗哈斯",
"Desc": "该卡池为常驻卡池,战斗员抽取概率如下:\\n5星战斗员获得概率3%(朱利亚斯/艾丽卡/汉娜/西尔维亚/璐比/莫菲/安吉拉/贝尔撒克逊/拉丽妲/尤利娅/贝拉/曼普雷蒂/娜塔莎)\\n4星战斗员获得概率30%(埃琳娜/卡琳/克劳迪娅/莉莎/米娅/卡露拉/桃瑞斯/阿兰西/弦乐/巴里/希尔芙/伊尔米拉/玛尔塔)\\n3星战斗员获得概率66%(梅梅/提可/蜜儿/盖尔菲斯特/尤奈/内莉/露露菲亚/夏希/蒂亚娜·罗哈斯",
"value": "该卡池为常驻卡池,战斗员抽取概率如下:\\n5星战斗员获得概率3%(朱利亚斯/芙利丝/艾丽卡/汉娜/西尔维亚/璐比/莫菲/安吉拉/莱奥妮/克默/贝尔撒克逊/瓦娜莱特/嘉比莉露/曼普雷蒂/娜塔莎)\\n4星战斗员获得概率30%(埃琳娜/卡琳/克劳迪娅/莉莎/米娅/卡露拉/柯贝尔/桃瑞斯/阿兰西/弦乐/巴里)\\n3星战斗员获得概率67%(梅梅/提可/蜜儿/盖尔菲斯特/尤奈/伊丽莎白",
"Desc": "该卡池为常驻卡池,战斗员抽取概率如下:\\n5星战斗员获得概率3%(朱利亚斯|芙利丝|艾丽卡|汉娜|西尔维亚|璐比|莫菲|安吉拉|莱奥妮|克默|贝尔撒克逊|瓦娜莱特|嘉比莉露|曼普雷蒂|娜塔莎)\\n4星战斗员获得概率30%(埃琳娜|卡琳|克劳迪娅|莉莎|米娅|卡露拉|柯贝尔|桃瑞斯|阿兰西|弦乐|巴里)\\n3星战斗员获得概率67%(梅梅|提可|蜜儿|盖尔菲斯特|尤奈|伊丽莎白",
"Notes": "",
"Param0": "",
"Param1": "",
@ -30026,8 +30026,8 @@
{
"Key": "Gacha_CharacterProbability_320002",
"Name": "Gacha_CharacterProbability_320002",
"value": "该卡池为限定卡池,战斗员抽取概率如下:\\n5星战斗员获得概率3%朱利亚斯/艾丽卡/汉娜/西尔维亚/璐比/莫菲/安吉拉/贝尔撒克逊/拉丽妲/尤利娅/贝拉/曼普雷蒂/娜塔莎)\\n4星战斗员获得概率30%(埃琳娜/卡琳/克劳迪娅/莉莎/米娅/卡露拉/桃瑞斯/阿兰西/弦乐/巴里/希尔芙/伊尔米拉/玛尔塔)\\n3星战斗员获得概率66%(梅梅/提可/蜜儿/盖尔菲斯特/尤奈/内莉/露露菲亚/夏希/蒂亚娜·罗哈斯",
"Desc": "该卡池为限定卡池,战斗员抽取概率如下:\\n5星战斗员获得概率3%朱利亚斯/艾丽卡/汉娜/西尔维亚/璐比/莫菲/安吉拉/贝尔撒克逊/拉丽妲/尤利娅/贝拉/曼普雷蒂/娜塔莎)\\n4星战斗员获得概率30%(埃琳娜/卡琳/克劳迪娅/莉莎/米娅/卡露拉/桃瑞斯/阿兰西/弦乐/巴里/希尔芙/伊尔米拉/玛尔塔)\\n3星战斗员获得概率66%(梅梅/提可/蜜儿/盖尔菲斯特/尤奈/内莉/露露菲亚/夏希/蒂亚娜·罗哈斯",
"value": "该卡池为限定卡池,战斗员抽取概率如下:\\n5星战斗员获得概率3%璐比/安吉拉/莱奥妮/瓦娜莱特/伊妮德/波拉/尤利娅/嘉比莉露/菲丽芭/伊斯塔)\\n4星战斗员获得概率30%(埃琳娜/卡琳/克劳迪娅/莉莎/米娅/莫菲/希尔芙/阿巴比尔/茨木姬)\\n3星战斗员获得概率67%(梅梅/提可/尤奈",
"Desc": "该卡池为限定卡池,战斗员抽取概率如下:\\n5星战斗员获得概率3%璐比|安吉拉|莱奥妮|瓦娜莱特|伊妮德|波拉|尤利娅|嘉比莉露|菲丽芭|伊斯塔)\\n4星战斗员获得概率30%(埃琳娜|卡琳|克劳迪娅|莉莎|米娅|莫菲|希尔芙|阿巴比尔|茨木姬)\\n3星战斗员获得概率67%(梅梅|提可|尤奈",
"Notes": "",
"Param0": "",
"Param1": "",
@ -36029,6 +36029,19 @@
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "battlepass_specialItem_level",
"Name": "battlepass_specialItem_level",
"value": "开通<color=#f4ec13>高级账号</color>后于通行证<color=#f4ec13>{0}级</color>获得",
"Desc": "",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "team_commanderskill",
"Name": "team_commanderskill",
@ -132546,7 +132559,7 @@
{
"Key": "Guide_208",
"Name": "Guide_208",
"value": "将米放入备战区",
"value": "将米放入备战区",
"Desc": "",
"Notes": "",
"Param0": "",
@ -132764,6 +132777,279 @@
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_517",
"Name": "Guide_517",
"value": "目前的领导力已经不够领导其他单位了,点击回到备战界面",
"Desc": "目前的领导力已经不够领导其他单位了,点击回到备战界面",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_602",
"Name": "Guide_602",
"value": "点击开始战斗",
"Desc": "点击开始战斗",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_603",
"Name": "Guide_603",
"value": "将蓝鸟放入备战区",
"Desc": "将蓝鸟放入备战区",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_604",
"Name": "Guide_604",
"value": "将埃琳娜放入备战区",
"Desc": "将埃琳娜放入备战区",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_605",
"Name": "Guide_605",
"value": "将莉莎放入备战区",
"Desc": "将莉莎放入备战区",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_606",
"Name": "Guide_606",
"value": "将克劳迪娅放入备战区",
"Desc": "将克劳迪娅放入备战区",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_607",
"Name": "Guide_607",
"value": "点击开始战斗",
"Desc": "点击开始战斗",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_609",
"Name": "Guide_609",
"value": "当角色战斗一段时候时,角色可以使用自己的特殊能力,现在使用克劳迪娅的能力打击一个敌人",
"Desc": "当角色战斗一段时候时,角色可以使用自己的特殊能力,现在使用克劳迪娅的能力打击一个敌人",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_610",
"Name": "Guide_610",
"value": "选中一个敌人",
"Desc": "选中一个敌人",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_611",
"Name": "Guide_611",
"value": "为了简化您的操作,我们提供了小队命令,拖动小队命令到指定位置可以对整个小队下达指令",
"Desc": "为了简化您的操作,我们提供了小队命令,拖动小队命令到指定位置可以对整个小队下达指令",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_612",
"Name": "Guide_612",
"value": "命令整小队向目标位置移动",
"Desc": "命令整小队向目标位置移动",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_703",
"Name": "Guide_703",
"value": "目前的领导力可以再为小队选取一名侦察员",
"Desc": "目前的领导力可以再为小队选取一名侦察员",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_704",
"Name": "Guide_704",
"value": "选中侦察员",
"Desc": "选中侦察员",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_706",
"Name": "Guide_706",
"value": "去尝试一下满编小队的威力吧",
"Desc": "去尝试一下满编小队的威力吧",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_802",
"Name": "Guide_802",
"value": "点击开始战斗",
"Desc": "点击开始战斗",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_803",
"Name": "Guide_803",
"value": "将蓝鸟放入备战区",
"Desc": "将蓝鸟放入备战区",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_804",
"Name": "Guide_804",
"value": "将埃琳娜放入备战区",
"Desc": "将埃琳娜放入备战区",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_805",
"Name": "Guide_805",
"value": "将莉莎放入备战区",
"Desc": "将莉莎放入备战区",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_806",
"Name": "Guide_806",
"value": "将米娅放入备战区",
"Desc": "将米娅放入备战区",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_807",
"Name": "Guide_807",
"value": "将克劳迪娅放入备战区",
"Desc": "将克劳迪娅放入备战区",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "Guide_808",
"Name": "Guide_808",
"value": "点击开始战斗",
"Desc": "点击开始战斗",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "errorIdDesc",
"Name": "errorIdDesc",
@ -134586,7 +134872,7 @@
},
{
"Key": "LoginError_10620",
"Name": "LoginError_10621",
"Name": "LoginError_10620",
"value": "输入的短信验证码不正确",
"Desc": "输入的短信验证码不正确",
"Notes": "",
@ -134792,6 +135078,19 @@
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "LoginError_10627",
"Name": "LoginError_10627",
"value": "登录暂未开放!",
"Desc": "登录暂未开放!",
"Notes": "",
"Param0": "",
"Param1": "",
"Param2": "",
"InnerCalculate": false,
"OutCalculate": [],
"CalculateType": 0
},
{
"Key": "LoginError_other",
"Name": "LoginError_other",
@ -137785,7 +138084,7 @@
{
"Key": "ItemName_piece_107",
"Name": "ItemName_piece_107",
"value": "蒂亚娜·罗哈斯的结业证书",
"value": "蒂亚娜的结业证书",
"Desc": "蒂亚娜·罗哈斯的结业证书",
"Notes": "",
"Param0": "",
@ -138123,7 +138422,7 @@
{
"Key": "ItemName_skillup_102",
"Name": "ItemName_skillup_102",
"value": "伟大卫国战争后勤经验总结",
"value": "战争后勤经验总结",
"Desc": "伟大卫国战争后勤经验总结",
"Notes": "",
"Param0": "",
@ -138136,7 +138435,7 @@
{
"Key": "ItemName_skillup_103",
"Name": "ItemName_skillup_103",
"value": "第二工作队 狙击战例汇编",
"value": "狙击战例汇编",
"Desc": "第二工作队 狙击战例汇编",
"Notes": "",
"Param0": "",
@ -138149,7 +138448,7 @@
{
"Key": "ItemName_skillup_104",
"Name": "ItemName_skillup_104",
"value": "侦察连军事训练教案",
"value": "军事训练教案",
"Desc": "侦察连军事训练教案",
"Notes": "",
"Param0": "",
@ -138162,7 +138461,7 @@
{
"Key": "ItemName_skillup_105",
"Name": "ItemName_skillup_105",
"value": "班(排)支援火器 兵器与操作教程",
"value": "兵器与操作教程",
"Desc": "班(排)支援火器 兵器与操作教程",
"Notes": "",
"Param0": "",
@ -140021,7 +140320,7 @@
{
"Key": "ItemName_Album_01",
"Name": "ItemName_Album_01",
"value": "音乐专辑01-旅途记忆OST",
"value": "01旅途记忆OST",
"Desc": "音乐专辑01-旅途记忆OST",
"Notes": "",
"Param0": "",
@ -140034,7 +140333,7 @@
{
"Key": "ItemName_Album_02",
"Name": "ItemName_Album_02",
"value": "音乐专辑02-战地回响OST",
"value": "02战地回响OST",
"Desc": "音乐专辑02-战地回响OST",
"Notes": "",
"Param0": "",
@ -140047,7 +140346,7 @@
{
"Key": "ItemName_Album_03",
"Name": "ItemName_Album_03",
"value": "音乐专辑03-诺克斯妙妙屋OST",
"value": "03诺克斯妙妙屋OST",
"Desc": "音乐专辑03-诺克斯妙妙屋OST",
"Notes": "",
"Param0": "",

View File

@ -13,6 +13,7 @@
}
],
"Unlocks": "",
"UnlockID": [],
"DefaultPaintID": [],
"UIHeadPath": "UI_C00003.png",
"PrefabPath": "P_C00003_01",
@ -38,8 +39,7 @@
"SupperAdjustTerrain": [
1
],
"SpendLeadership": 20,
"Icon": "Assets/Art_Out/UI/SplitTexture/Poster/Poster_Vehicle/Poster_Vehicle_C00003.png"
"SpendLeadership": 20
},
{
"ID": 300027,
@ -55,6 +55,7 @@
}
],
"Unlocks": "",
"UnlockID": [],
"DefaultPaintID": [],
"UIHeadPath": "UI_C00003.png",
"PrefabPath": "P_C00027_01",
@ -80,8 +81,7 @@
"SupperAdjustTerrain": [
0
],
"SpendLeadership": 20,
"Icon": "Assets/Art_Out/UI/SplitTexture/Poster/Poster_Vehicle/Poster_Vehicle_C00003.png"
"SpendLeadership": 20
},
{
"ID": 300028,
@ -97,6 +97,7 @@
}
],
"Unlocks": "VehicleComponent(3000270102)",
"UnlockID": [],
"DefaultPaintID": [],
"UIHeadPath": "UI_C00003.png",
"PrefabPath": "P_C00028_01",
@ -122,8 +123,7 @@
"SupperAdjustTerrain": [
0
],
"SpendLeadership": 20,
"Icon": "Assets/Art_Out/UI/SplitTexture/Poster/Poster_Vehicle/Poster_Vehicle_C00003.png"
"SpendLeadership": 20
},
{
"ID": 300063,
@ -139,6 +139,9 @@
}
],
"Unlocks": "VehicleComponent(3000030501)",
"UnlockID": [
500031
],
"DefaultPaintID": [
1019,
2019,
@ -168,8 +171,7 @@
"SupperAdjustTerrain": [
3
],
"SpendLeadership": 20,
"Icon": "Assets/Art_Out/UI/SplitTexture/Poster/Poster_Vehicle/Poster_Vehicle_C00010.png"
"SpendLeadership": 20
},
{
"ID": 300008,
@ -185,6 +187,9 @@
}
],
"Unlocks": "",
"UnlockID": [
500029
],
"DefaultPaintID": [],
"UIHeadPath": "UI_C00003.png",
"PrefabPath": "P_C00008_01",
@ -210,8 +215,7 @@
"SupperAdjustTerrain": [
3
],
"SpendLeadership": 20,
"Icon": "Assets/Art_Out/UI/SplitTexture/Poster/Poster_Vehicle/Poster_Vehicle_C00010.png"
"SpendLeadership": 20
},
{
"ID": 300001,
@ -227,6 +231,7 @@
}
],
"Unlocks": "",
"UnlockID": [],
"DefaultPaintID": [],
"UIHeadPath": "UI_C00001.png",
"PrefabPath": "P_C00001_01",
@ -252,8 +257,7 @@
"SupperAdjustTerrain": [
3
],
"SpendLeadership": 20,
"Icon": "Assets/Art_Out/UI/SplitTexture/Poster/Poster_Vehicle/Poster_Vehicle_C00008.png"
"SpendLeadership": 20
},
{
"ID": 300004,
@ -269,6 +273,9 @@
}
],
"Unlocks": "",
"UnlockID": [
500032
],
"DefaultPaintID": [
1001,
2001,
@ -301,8 +308,7 @@
"SupperAdjustTerrain": [
3
],
"SpendLeadership": 20,
"Icon": "Assets/Art_Out/UI/SplitTexture/Poster/Poster_Vehicle/Poster_Vehicle_C00004.png"
"SpendLeadership": 20
},
{
"ID": 300038,
@ -318,6 +324,9 @@
}
],
"Unlocks": "",
"UnlockID": [
500033
],
"DefaultPaintID": [
1008,
2008,
@ -347,8 +356,7 @@
"SupperAdjustTerrain": [
3
],
"SpendLeadership": 20,
"Icon": "Assets/Art_Out/UI/SplitTexture/Poster/Poster_Vehicle/Poster_Vehicle_C00010.png"
"SpendLeadership": 20
},
{
"ID": 300032,
@ -364,6 +372,9 @@
}
],
"Unlocks": "",
"UnlockID": [
500034
],
"DefaultPaintID": [],
"UIHeadPath": "UI_C00003.png",
"PrefabPath": "P_C00032_01",
@ -389,8 +400,7 @@
"SupperAdjustTerrain": [
3
],
"SpendLeadership": 20,
"Icon": "Assets/Art_Out/UI/SplitTexture/Poster/Poster_Vehicle/Poster_Vehicle_C00003.png"
"SpendLeadership": 20
},
{
"ID": 300037,
@ -406,6 +416,7 @@
}
],
"Unlocks": "",
"UnlockID": [],
"DefaultPaintID": [
1007,
2007,
@ -435,8 +446,7 @@
"SupperAdjustTerrain": [
3
],
"SpendLeadership": 20,
"Icon": "Assets/Art_Out/UI/SplitTexture/Poster/Poster_Vehicle/Poster_Vehicle_C00010.png"
"SpendLeadership": 20
},
{
"ID": 300039,
@ -452,6 +462,9 @@
}
],
"Unlocks": "",
"UnlockID": [
500044
],
"DefaultPaintID": [
1029,
2029,
@ -481,8 +494,7 @@
"SupperAdjustTerrain": [
3
],
"SpendLeadership": 20,
"Icon": "Assets/Art_Out/UI/SplitTexture/Poster/Poster_Vehicle/Poster_Vehicle_C00010.png"
"SpendLeadership": 20
},
{
"ID": 300029,
@ -498,6 +510,9 @@
}
],
"Unlocks": "VehicleComponent(3000390402)",
"UnlockID": [
500024
],
"DefaultPaintID": [],
"UIHeadPath": "UI_C00003.png",
"PrefabPath": "P_C00029_01",
@ -523,8 +538,7 @@
"SupperAdjustTerrain": [
0
],
"SpendLeadership": 20,
"Icon": "Assets/Art_Out/UI/SplitTexture/Poster/Poster_Vehicle/Poster_Vehicle_C00003.png"
"SpendLeadership": 20
},
{
"ID": 300036,
@ -540,6 +554,9 @@
}
],
"Unlocks": "",
"UnlockID": [
500026
],
"DefaultPaintID": [],
"UIHeadPath": "UI_C00003.png",
"PrefabPath": "P_C00036_01",
@ -565,8 +582,7 @@
"SupperAdjustTerrain": [
0
],
"SpendLeadership": 20,
"Icon": "Assets/Art_Out/UI/SplitTexture/Poster/Poster_Vehicle/Poster_Vehicle_C00003.png"
"SpendLeadership": 20
},
{
"ID": 300030,
@ -582,6 +598,7 @@
}
],
"Unlocks": "VehicleComponent(3000360103)",
"UnlockID": [],
"DefaultPaintID": [],
"UIHeadPath": "UI_C00003.png",
"PrefabPath": "P_C00030_01",
@ -607,8 +624,7 @@
"SupperAdjustTerrain": [
0
],
"SpendLeadership": 20,
"Icon": "Assets/Art_Out/UI/SplitTexture/Poster/Poster_Vehicle/Poster_Vehicle_C00003.png"
"SpendLeadership": 20
},
{
"ID": 300042,
@ -624,6 +640,7 @@
}
],
"Unlocks": "",
"UnlockID": [],
"DefaultPaintID": [
1016,
2016,
@ -653,8 +670,7 @@
"SupperAdjustTerrain": [
3
],
"SpendLeadership": 20,
"Icon": "Assets/Art_Out/UI/SplitTexture/Poster/Poster_Vehicle/Poster_Vehicle_C00010.png"
"SpendLeadership": 20
},
{
"ID": 300066,
@ -670,6 +686,7 @@
}
],
"Unlocks": "VehicleComponent(3000420103)",
"UnlockID": [],
"DefaultPaintID": [
1017,
2017,
@ -699,8 +716,7 @@
"SupperAdjustTerrain": [
3
],
"SpendLeadership": 20,
"Icon": "Assets/Art_Out/UI/SplitTexture/Poster/Poster_Vehicle/Poster_Vehicle_C00010.png"
"SpendLeadership": 20
},
{
"ID": 300021,
@ -716,6 +732,7 @@
}
],
"Unlocks": "",
"UnlockID": [],
"DefaultPaintID": [],
"UIHeadPath": "UI_C00021.png",
"PrefabPath": "P_C00021_01",
@ -741,8 +758,7 @@
"SupperAdjustTerrain": [
3
],
"SpendLeadership": 20,
"Icon": "Assets/Art_Out/UI/SplitTexture/Poster/Poster_Vehicle/Poster_Vehicle_C00010.png"
"SpendLeadership": 20
},
{
"ID": 300020,
@ -758,6 +774,7 @@
}
],
"Unlocks": "VehicleComponent(3000580501)",
"UnlockID": [],
"DefaultPaintID": [],
"UIHeadPath": "UI_C00020.png",
"PrefabPath": "P_C00020_01",
@ -783,8 +800,7 @@
"SupperAdjustTerrain": [
1
],
"SpendLeadership": 20,
"Icon": "Assets/Art_Out/UI/SplitTexture/Poster/Poster_Vehicle/Poster_Vehicle_C00020.png"
"SpendLeadership": 20
},
{
"ID": 300012,
@ -800,6 +816,9 @@
}
],
"Unlocks": "VehicleComponent(3000200401)",
"UnlockID": [
500050
],
"DefaultPaintID": [],
"UIHeadPath": "UI_C00015.png",
"PrefabPath": "P_C00012_01",
@ -825,8 +844,7 @@
"SupperAdjustTerrain": [
1
],
"SpendLeadership": 20,
"Icon": "Assets/Art_Out/UI/SplitTexture/Poster/Poster_Vehicle/Poster_Vehicle_C00012.png"
"SpendLeadership": 20
},
{
"ID": 300022,
@ -842,6 +860,9 @@
}
],
"Unlocks": "VehicleComponent(3000250303)",
"UnlockID": [
500046
],
"DefaultPaintID": [],
"UIHeadPath": "UI_C00022.png",
"PrefabPath": "P_C00022_01",
@ -867,8 +888,7 @@
"SupperAdjustTerrain": [
0
],
"SpendLeadership": 20,
"Icon": "Assets/Art_Out/UI/SplitTexture/Poster/Poster_Vehicle/Poster_Vehicle_C00003.png"
"SpendLeadership": 20
},
{
"ID": 300023,
@ -884,6 +904,7 @@
}
],
"Unlocks": "VehicleComponent(3000220101)",
"UnlockID": [],
"DefaultPaintID": [],
"UIHeadPath": "UI_C00023.png",
"PrefabPath": "P_C00023_01",
@ -909,8 +930,7 @@
"SupperAdjustTerrain": [
0
],
"SpendLeadership": 20,
"Icon": "Assets/Art_Out/UI/SplitTexture/Poster/Poster_Vehicle/Poster_Vehicle_C00003.png"
"SpendLeadership": 20
},
{
"ID": 300024,
@ -926,6 +946,7 @@
}
],
"Unlocks": "VehicleComponent(3000220401)",
"UnlockID": [],
"DefaultPaintID": [],
"UIHeadPath": "UI_C00023.png",
"PrefabPath": "P_C00024_01",
@ -951,7 +972,6 @@
"SupperAdjustTerrain": [
0
],
"SpendLeadership": 20,
"Icon": "Assets/Art_Out/UI/SplitTexture/Poster/Poster_Vehicle/Poster_Vehicle_C00003.png"
"SpendLeadership": 20
}
]