405 lines
		
	
	
		
			17 KiB
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			405 lines
		
	
	
		
			17 KiB
		
	
	
	
		
			Plaintext
		
	
	
		
			Executable File
		
	
	
	
	
--装备部位强化
 | 
						||
--https://192.168.0.50/svn/LongChen/trunk/Res/Xgame/X-系统设计文档/Z-装备系统/B-部位强化.doc
 | 
						||
 | 
						||
	--[[
 | 
						||
装备的存储位置pos,非物品类型
 | 
						||
itWeaponPos = 0,		//武器位置
 | 
						||
itDressPos=1,			//衣服
 | 
						||
itHelmetPos=2,			//头盔
 | 
						||
 | 
						||
itNecklacePos=3,	    //项链
 | 
						||
itDecorationPos=4,		//勋章
 | 
						||
 | 
						||
itLeftBraceletPos=5,	//左边的手镯
 | 
						||
itRightBraceletPos=6,	//右边的手镯
 | 
						||
 | 
						||
itLeftRingPos=7,		//左边的戒指位置
 | 
						||
itRightRingPos=8,		//右边的戒指位置
 | 
						||
 | 
						||
itGirdlePos=9,			//腰带
 | 
						||
itShoesPos=10,			//鞋子
 | 
						||
itEquipDiamondPos=11,	//宝石
 | 
						||
itMeterialPos=12,		//材料
 | 
						||
 | 
						||
]]--
 | 
						||
EquipPosStrongConfig =
 | 
						||
{
 | 
						||
	levelConfigIndex = 4,--LevelConfig对应的索引
 | 
						||
	itemId = 508,--图标还需在inlinepack中更改打包
 | 
						||
 | 
						||
	--每个部位消耗 = 消耗比例 * 基础消耗 (向上取整)
 | 
						||
	EquipPosStrongConsumesRate = --消耗比例
 | 
						||
	{
 | 
						||
		{pos = 0, rate = 0.24},		--武器
 | 
						||
		{pos = 1, rate = 0.19},		--衣服
 | 
						||
		{pos = 2, rate = 0.13},		--头盔
 | 
						||
		{pos = 3, rate = 0.07},		--项链
 | 
						||
		{pos = 4, rate = 0.01},		--勋章
 | 
						||
		{pos = 5, rate = 0.02},		--左手镯
 | 
						||
		{pos = 6, rate = 0.02},		--右手镯
 | 
						||
		{pos = 7, rate = 0.02},		--左戒指
 | 
						||
		{pos = 8, rate = 0.02},		--右戒指
 | 
						||
		{pos = 9, rate = 0.09},		--腰带
 | 
						||
		{pos = 10, rate = 0.08},	--鞋子
 | 
						||
		{pos = 11, rate = 0.12},		--宝石
 | 
						||
		{pos = 12, rate = 0.01},		--材料
 | 
						||
	},
 | 
						||
	--升级的基础消耗
 | 
						||
	EquipPosStrongConsumes = 
 | 
						||
	{
 | 
						||
        --0-1级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=2200000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=341,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --1-2级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=3300000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=693,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --2-3级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=4400000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=1056,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --3-4级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=8800000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=1430,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --4-5级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=9900000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=1815,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --5-6级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=11000000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=2211,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --6-7级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=14300000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=2618,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --7-8级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=15400000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=3047,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --8-9级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=16500000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=3487,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --9-10级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=17600000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=3938,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --10-11级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=19800000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=4411,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --11-12级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=20900000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=4895,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --12-13级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=22000000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=5390,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --13-14级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=23100000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=5907,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --14-15级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=25300000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=6435,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --15-16级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=26400000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=6985,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --16-17级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=27500000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=7557,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --17-18级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=28600000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=8140,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --18-19级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=30800000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=8745,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --19-20级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=31900000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=9372,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --20-21级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=33000000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=10021,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --21-22级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=34100000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=10681,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --22-23级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=36300000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=11330,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --23-24级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=37400000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=12100,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --24-25级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=38500000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=12760,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --25-26级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=39600000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=13530,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --26-27级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=40700000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=14300,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --27-28级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=42900000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=15180,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --28-29级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=44000000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=15950,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --29-30级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=45100000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=16830,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --30-31级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=47300000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=17710,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --31-32级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=48400000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=18700,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --32-33级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=49500000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=19580,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --33-34级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=50600000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=20570,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --34-35级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=52800000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=21560,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --35-36级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=53900000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=22660,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --36-37级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=55000000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=23650,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --37-38级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=55000000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=24750,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --38-39级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=55000000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=25960,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
        --39-40级消耗
 | 
						||
        {
 | 
						||
            {type = 3,id=0,count=55000000,quality=0,strong=0,bind=-1},
 | 
						||
            {type = 26,id=0,count=27170,quality=0,strong=0,bind=-1},
 | 
						||
        },
 | 
						||
 | 
						||
 | 
						||
 | 
						||
},
 | 
						||
    --启兵属性衍生
 | 
						||
    EquipPosStrongDeriveConfig =
 | 
						||
    {
 | 
						||
        
 | 
						||
        {
 | 
						||
            level = 4,          --全部部位等级
 | 
						||
            prop=               --衍生属性
 | 
						||
            {
 | 
						||
                {type = 109, value = 0.01},
 | 
						||
                {type = 133, value = 5000},
 | 
						||
            }
 | 
						||
        },
 | 
						||
        {
 | 
						||
            level = 8,          --全部部位等级
 | 
						||
            prop=               --衍生属性
 | 
						||
            {
 | 
						||
                {type = 109, value = 0.02},
 | 
						||
                {type = 133, value = 10000},
 | 
						||
            }
 | 
						||
        },
 | 
						||
	{
 | 
						||
            level = 12,          --全部部位等级
 | 
						||
            prop=               --衍生属性
 | 
						||
            {
 | 
						||
                {type = 109, value = 0.03},
 | 
						||
                {type = 133, value = 15000},
 | 
						||
            }
 | 
						||
        },
 | 
						||
	{
 | 
						||
            level = 16,          --全部部位等级
 | 
						||
            prop=               --衍生属性
 | 
						||
            {
 | 
						||
                {type = 109, value = 0.04},
 | 
						||
                {type = 133, value = 20000},
 | 
						||
            }
 | 
						||
        },
 | 
						||
	{
 | 
						||
            level = 20,          --全部部位等级
 | 
						||
            prop=               --衍生属性
 | 
						||
            {
 | 
						||
		{type = 109, value = 0.05},
 | 
						||
		{type = 133, value = 25000},
 | 
						||
            }
 | 
						||
        },
 | 
						||
	{
 | 
						||
            level = 24,          --全部部位等级
 | 
						||
            prop=               --衍生属性
 | 
						||
            {
 | 
						||
		{type = 109, value = 0.06},
 | 
						||
		{type = 133, value = 30000},
 | 
						||
            }
 | 
						||
        },
 | 
						||
	{
 | 
						||
            level = 28,          --全部部位等级
 | 
						||
            prop=               --衍生属性
 | 
						||
            {
 | 
						||
		{type = 109, value = 0.07},
 | 
						||
		{type = 133, value = 35000},
 | 
						||
            }
 | 
						||
        },
 | 
						||
	{
 | 
						||
            level = 32,          --全部部位等级
 | 
						||
            prop=               --衍生属性
 | 
						||
            {
 | 
						||
		{type = 109, value = 0.08},
 | 
						||
		{type = 133, value = 40000},
 | 
						||
            }
 | 
						||
        },
 | 
						||
	{
 | 
						||
            level = 36,          --全部部位等级
 | 
						||
            prop=               --衍生属性
 | 
						||
            {
 | 
						||
		{type = 109, value = 0.09},
 | 
						||
		{type = 133, value = 45000},
 | 
						||
            }
 | 
						||
        },
 | 
						||
	{
 | 
						||
            level = 40,          --全部部位等级
 | 
						||
            prop=               --衍生属性
 | 
						||
            {
 | 
						||
		{type = 109, value = 0.1},
 | 
						||
		{type = 133, value = 50000},	
 | 
						||
            }
 | 
						||
        },        
 | 
						||
    },
 | 
						||
    --启兵等级和转数对应
 | 
						||
    EquipPosStrongOpenLevel =
 | 
						||
    {
 | 
						||
        {circle = 2, maxlevel = 3},
 | 
						||
        {circle = 3, maxlevel = 7},
 | 
						||
        {circle = 4, maxlevel = 11},
 | 
						||
        {circle = 5, maxlevel = 15},
 | 
						||
        {circle = 6, maxlevel = 20},
 | 
						||
	{circle = 7, maxlevel = 25},
 | 
						||
	{circle = 8, maxlevel = 30},
 | 
						||
	{circle = 9, maxlevel = 35},
 | 
						||
	{circle = 10, maxlevel = 40},
 | 
						||
 | 
						||
    },
 | 
						||
	EquipPosStrongAttrs = 
 | 
						||
	{
 | 
						||
		{
 | 
						||
			pos = 0, --有效的装备位置,没效的不要配
 | 
						||
			EquipPosStrongAttrsLvAttr = {0.01,0.02,0.03,0.04,0.05,0.06,0.07,0.08,0.09,0.10,0.11,0.12,0.13,0.14,0.15,0.16,0.17,0.18,0.19,0.20,0.21,0.22,0.23,0.24,0.25,0.26,0.27,0.28,0.29,0.30,0.31,0.32,0.33,0.34,0.35,0.36,0.37,0.38,0.39,0.40,0.41,0.42,0.43,0.44,0.45,0.46,0.47,0.48,0.49,0.50,0.51,0.52,0.53,0.54,0.55,0.56,0.57,0.58,0.59,0.60,0.61,0.62,0.63,0.64,0.65,0.66,0.67,0.68,0.69,0.70,0.71,0.72,0.73,0.74,0.75,0.76,0.77,0.78,0.79,0.80,0.81,0.82,0.83,0.84,0.85,0.86,0.87,0.88,0.89,0.90,0.91,0.92,0.93,0.94,0.95,0.96,0.97,0.98,0.99,1.00},--每一级提升的基础属性百分比
 | 
						||
		},
 | 
						||
		{
 | 
						||
			pos = 1,
 | 
						||
			EquipPosStrongAttrsLvAttr = {0.01,0.02,0.03,0.04,0.05,0.06,0.07,0.08,0.09,0.10,0.11,0.12,0.13,0.14,0.15,0.16,0.17,0.18,0.19,0.20,0.21,0.22,0.23,0.24,0.25,0.26,0.27,0.28,0.29,0.30,0.31,0.32,0.33,0.34,0.35,0.36,0.37,0.38,0.39,0.40,0.41,0.42,0.43,0.44,0.45,0.46,0.47,0.48,0.49,0.50,0.51,0.52,0.53,0.54,0.55,0.56,0.57,0.58,0.59,0.60,0.61,0.62,0.63,0.64,0.65,0.66,0.67,0.68,0.69,0.70,0.71,0.72,0.73,0.74,0.75,0.76,0.77,0.78,0.79,0.80,0.81,0.82,0.83,0.84,0.85,0.86,0.87,0.88,0.89,0.90,0.91,0.92,0.93,0.94,0.95,0.96,0.97,0.98,0.99,1.00},
 | 
						||
		},
 | 
						||
		{
 | 
						||
			pos = 2,
 | 
						||
			EquipPosStrongAttrsLvAttr = {0.01,0.02,0.03,0.04,0.05,0.06,0.07,0.08,0.09,0.10,0.11,0.12,0.13,0.14,0.15,0.16,0.17,0.18,0.19,0.20,0.21,0.22,0.23,0.24,0.25,0.26,0.27,0.28,0.29,0.30,0.31,0.32,0.33,0.34,0.35,0.36,0.37,0.38,0.39,0.40,0.41,0.42,0.43,0.44,0.45,0.46,0.47,0.48,0.49,0.50,0.51,0.52,0.53,0.54,0.55,0.56,0.57,0.58,0.59,0.60,0.61,0.62,0.63,0.64,0.65,0.66,0.67,0.68,0.69,0.70,0.71,0.72,0.73,0.74,0.75,0.76,0.77,0.78,0.79,0.80,0.81,0.82,0.83,0.84,0.85,0.86,0.87,0.88,0.89,0.90,0.91,0.92,0.93,0.94,0.95,0.96,0.97,0.98,0.99,1.00},
 | 
						||
		},
 | 
						||
		{
 | 
						||
			pos = 3,
 | 
						||
			EquipPosStrongAttrsLvAttr = {0.01,0.02,0.03,0.04,0.05,0.06,0.07,0.08,0.09,0.10,0.11,0.12,0.13,0.14,0.15,0.16,0.17,0.18,0.19,0.20,0.21,0.22,0.23,0.24,0.25,0.26,0.27,0.28,0.29,0.30,0.31,0.32,0.33,0.34,0.35,0.36,0.37,0.38,0.39,0.40,0.41,0.42,0.43,0.44,0.45,0.46,0.47,0.48,0.49,0.50,0.51,0.52,0.53,0.54,0.55,0.56,0.57,0.58,0.59,0.60,0.61,0.62,0.63,0.64,0.65,0.66,0.67,0.68,0.69,0.70,0.71,0.72,0.73,0.74,0.75,0.76,0.77,0.78,0.79,0.80,0.81,0.82,0.83,0.84,0.85,0.86,0.87,0.88,0.89,0.90,0.91,0.92,0.93,0.94,0.95,0.96,0.97,0.98,0.99,1.00},
 | 
						||
		},
 | 
						||
		{
 | 
						||
			pos = 5,
 | 
						||
			EquipPosStrongAttrsLvAttr = {0.01,0.02,0.03,0.04,0.05,0.06,0.07,0.08,0.09,0.10,0.11,0.12,0.13,0.14,0.15,0.16,0.17,0.18,0.19,0.20,0.21,0.22,0.23,0.24,0.25,0.26,0.27,0.28,0.29,0.30,0.31,0.32,0.33,0.34,0.35,0.36,0.37,0.38,0.39,0.40,0.41,0.42,0.43,0.44,0.45,0.46,0.47,0.48,0.49,0.50,0.51,0.52,0.53,0.54,0.55,0.56,0.57,0.58,0.59,0.60,0.61,0.62,0.63,0.64,0.65,0.66,0.67,0.68,0.69,0.70,0.71,0.72,0.73,0.74,0.75,0.76,0.77,0.78,0.79,0.80,0.81,0.82,0.83,0.84,0.85,0.86,0.87,0.88,0.89,0.90,0.91,0.92,0.93,0.94,0.95,0.96,0.97,0.98,0.99,1.00},
 | 
						||
		},
 | 
						||
		{
 | 
						||
			pos = 6,
 | 
						||
			EquipPosStrongAttrsLvAttr = {0.01,0.02,0.03,0.04,0.05,0.06,0.07,0.08,0.09,0.10,0.11,0.12,0.13,0.14,0.15,0.16,0.17,0.18,0.19,0.20,0.21,0.22,0.23,0.24,0.25,0.26,0.27,0.28,0.29,0.30,0.31,0.32,0.33,0.34,0.35,0.36,0.37,0.38,0.39,0.40,0.41,0.42,0.43,0.44,0.45,0.46,0.47,0.48,0.49,0.50,0.51,0.52,0.53,0.54,0.55,0.56,0.57,0.58,0.59,0.60,0.61,0.62,0.63,0.64,0.65,0.66,0.67,0.68,0.69,0.70,0.71,0.72,0.73,0.74,0.75,0.76,0.77,0.78,0.79,0.80,0.81,0.82,0.83,0.84,0.85,0.86,0.87,0.88,0.89,0.90,0.91,0.92,0.93,0.94,0.95,0.96,0.97,0.98,0.99,1.00},
 | 
						||
		},
 | 
						||
		{
 | 
						||
			pos = 7,
 | 
						||
			EquipPosStrongAttrsLvAttr = {0.01,0.02,0.03,0.04,0.05,0.06,0.07,0.08,0.09,0.10,0.11,0.12,0.13,0.14,0.15,0.16,0.17,0.18,0.19,0.20,0.21,0.22,0.23,0.24,0.25,0.26,0.27,0.28,0.29,0.30,0.31,0.32,0.33,0.34,0.35,0.36,0.37,0.38,0.39,0.40,0.41,0.42,0.43,0.44,0.45,0.46,0.47,0.48,0.49,0.50,0.51,0.52,0.53,0.54,0.55,0.56,0.57,0.58,0.59,0.60,0.61,0.62,0.63,0.64,0.65,0.66,0.67,0.68,0.69,0.70,0.71,0.72,0.73,0.74,0.75,0.76,0.77,0.78,0.79,0.80,0.81,0.82,0.83,0.84,0.85,0.86,0.87,0.88,0.89,0.90,0.91,0.92,0.93,0.94,0.95,0.96,0.97,0.98,0.99,1.00},
 | 
						||
		},
 | 
						||
		{
 | 
						||
			pos = 8,
 | 
						||
			EquipPosStrongAttrsLvAttr = {0.01,0.02,0.03,0.04,0.05,0.06,0.07,0.08,0.09,0.10,0.11,0.12,0.13,0.14,0.15,0.16,0.17,0.18,0.19,0.20,0.21,0.22,0.23,0.24,0.25,0.26,0.27,0.28,0.29,0.30,0.31,0.32,0.33,0.34,0.35,0.36,0.37,0.38,0.39,0.40,0.41,0.42,0.43,0.44,0.45,0.46,0.47,0.48,0.49,0.50,0.51,0.52,0.53,0.54,0.55,0.56,0.57,0.58,0.59,0.60,0.61,0.62,0.63,0.64,0.65,0.66,0.67,0.68,0.69,0.70,0.71,0.72,0.73,0.74,0.75,0.76,0.77,0.78,0.79,0.80,0.81,0.82,0.83,0.84,0.85,0.86,0.87,0.88,0.89,0.90,0.91,0.92,0.93,0.94,0.95,0.96,0.97,0.98,0.99,1.00},
 | 
						||
		},
 | 
						||
		{
 | 
						||
			pos = 9,
 | 
						||
			EquipPosStrongAttrsLvAttr = {0.01,0.02,0.03,0.04,0.05,0.06,0.07,0.08,0.09,0.10,0.11,0.12,0.13,0.14,0.15,0.16,0.17,0.18,0.19,0.20,0.21,0.22,0.23,0.24,0.25,0.26,0.27,0.28,0.29,0.30,0.31,0.32,0.33,0.34,0.35,0.36,0.37,0.38,0.39,0.40,0.41,0.42,0.43,0.44,0.45,0.46,0.47,0.48,0.49,0.50,0.51,0.52,0.53,0.54,0.55,0.56,0.57,0.58,0.59,0.60,0.61,0.62,0.63,0.64,0.65,0.66,0.67,0.68,0.69,0.70,0.71,0.72,0.73,0.74,0.75,0.76,0.77,0.78,0.79,0.80,0.81,0.82,0.83,0.84,0.85,0.86,0.87,0.88,0.89,0.90,0.91,0.92,0.93,0.94,0.95,0.96,0.97,0.98,0.99,1.00},
 | 
						||
		},
 | 
						||
		{
 | 
						||
			pos = 10,
 | 
						||
			EquipPosStrongAttrsLvAttr = {0.01,0.02,0.03,0.04,0.05,0.06,0.07,0.08,0.09,0.10,0.11,0.12,0.13,0.14,0.15,0.16,0.17,0.18,0.19,0.20,0.21,0.22,0.23,0.24,0.25,0.26,0.27,0.28,0.29,0.30,0.31,0.32,0.33,0.34,0.35,0.36,0.37,0.38,0.39,0.40,0.41,0.42,0.43,0.44,0.45,0.46,0.47,0.48,0.49,0.50,0.51,0.52,0.53,0.54,0.55,0.56,0.57,0.58,0.59,0.60,0.61,0.62,0.63,0.64,0.65,0.66,0.67,0.68,0.69,0.70,0.71,0.72,0.73,0.74,0.75,0.76,0.77,0.78,0.79,0.80,0.81,0.82,0.83,0.84,0.85,0.86,0.87,0.88,0.89,0.90,0.91,0.92,0.93,0.94,0.95,0.96,0.97,0.98,0.99,1.00},
 | 
						||
		},
 | 
						||
		{
 | 
						||
			pos = 11,
 | 
						||
			EquipPosStrongAttrsLvAttr = {0.01,0.02,0.03,0.04,0.05,0.06,0.07,0.08,0.09,0.10,0.11,0.12,0.13,0.14,0.15,0.16,0.17,0.18,0.19,0.20,0.21,0.22,0.23,0.24,0.25,0.26,0.27,0.28,0.29,0.30,0.31,0.32,0.33,0.34,0.35,0.36,0.37,0.38,0.39,0.40,0.41,0.42,0.43,0.44,0.45,0.46,0.47,0.48,0.49,0.50,0.51,0.52,0.53,0.54,0.55,0.56,0.57,0.58,0.59,0.60,0.61,0.62,0.63,0.64,0.65,0.66,0.67,0.68,0.69,0.70,0.71,0.72,0.73,0.74,0.75,0.76,0.77,0.78,0.79,0.80,0.81,0.82,0.83,0.84,0.85,0.86,0.87,0.88,0.89,0.90,0.91,0.92,0.93,0.94,0.95,0.96,0.97,0.98,0.99,1.00},
 | 
						||
		},
 | 
						||
	}
 | 
						||
 | 
						||
 | 
						||
}
 | 
						||
 | 
						||
 |