1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- local root = {
- {
- gConfigId = 1,
- id = 1,
- item = {type=2,id=1,count=10},
- price = {id=104,count=350},
- weight = 3000,
- level = 1
- },
- {
- gConfigId = 1,
- id = 2,
- item = {type=2,id=1,count=30},
- price = {id=104,count=950},
- weight = 2000,
- level = 1
- },
- {
- gConfigId = 1,
- id = 3,
- item = {type=2,id=1,count=70},
- price = {id=104,count=2100},
- weight = 500,
- level = 1
- },
- {
- gConfigId = 1,
- id = 4,
- item = {type=2,id=2,count=4},
- price = {id=104,count=500},
- weight = 2500,
- level = 3
- },
- {
- gConfigId = 1,
- id = 5,
- item = {type=2,id=2,count=12},
- price = {id=104,count=1440},
- weight = 1500,
- level = 3
- },
- {
- gConfigId = 1,
- id = 6,
- item = {type=2,id=2,count=28},
- price = {id=104,count=3080},
- weight = 300,
- level = 3
- },
- {
- gConfigId = 1,
- id = 7,
- item = {type=2,id=3,count=1},
- price = {id=104,count=1500},
- weight = 50,
- level = 5
- },
- {
- gConfigId = 1,
- id = 8,
- item = {type=1,id=101,count=1000},
- price = {id=104,count=800},
- weight = 2500,
- level = 1
- },
- {
- gConfigId = 1,
- id = 9,
- item = {type=1,id=101,count=2000},
- price = {id=104,count=1600},
- weight = 1500,
- level = 1
- },
- {
- gConfigId = 1,
- id = 10,
- item = {type=1,id=101,count=5000},
- price = {id=104,count=4000},
- weight = 400,
- level = 1
- }
- }
- return root
|