Пример #1
0
 /// <summary>
 /// CSV行データをセットする.
 /// </summary>
 /// <param name="row"></param>
 public override void SetFromCsv(CsvIo.CsvRow row)
 {
     this.Index         = row[0].CsvToIntNotNull();
     this.Name          = row[1];
     this.Kana          = row[2];
     this.Part          = row[3].CsvToEnum <Part>();
     this.Skill1Id      = row[4].CsvToInt();
     this.Skill1Lv      = row[5].CsvToInt();
     this.Skill2Id      = row[6].CsvToInt();
     this.Skill2Lv      = row[7].CsvToInt();
     this.Skill3Id      = row[8].CsvToInt();
     this.Skill3Lv      = row[9].CsvToInt();
     this.Series1Id     = row[10].CsvToInt();
     this.Series2Id     = row[11].CsvToInt();
     this.Series3Id     = row[12].CsvToInt();
     this.Rare          = row[13].CsvToInt();
     this.DefInit       = row[14].CsvToInt();
     this.DefMax        = row[15].CsvToInt();
     this.DefCustom     = row[16].CsvToInt();
     this.Slot1         = row[17].CsvToInt();
     this.Slot2         = row[18].CsvToInt();
     this.Slot3         = row[19].CsvToInt();
     this.Slot4         = row[20].CsvToInt();
     this.AttrFire      = row[21].CsvToInt();
     this.AttrWater     = row[22].CsvToInt();
     this.AttrLightning = row[23].CsvToInt();
     this.AttrIce       = row[24].CsvToInt();
     this.AttrDragon    = row[25].CsvToInt();
 }
 /// <summary>
 /// CSV行データをセットする.
 /// </summary>
 /// <param name="row"></param>
 public override void SetFromCsv(CsvIo.CsvRow row)
 {
     this.Index   = row[0].CsvToIntNotNull();
     this.Name    = row[1];
     this.Kana    = row[2];
     this.Rank    = row[3].CsvToEnum <Rank>();
     this.Remarks = row[4];
 }
Пример #3
0
 /// <summary>
 /// CSV行データをセットする.
 /// </summary>
 /// <param name="row"></param>
 public override void SetFromCsv(CsvIo.CsvRow row)
 {
     this.Index    = row[0].CsvToIntNotNull();
     this.Name     = row[1];
     this.Kana     = row[2];
     this.SeriesId = row[3].CsvToIntNotNull();
     this.Need     = row[4].CsvToIntNotNull();
     this.MaxLv    = row[5].CsvToIntNotNull();
     this.Remarks  = row[6];
 }
Пример #4
0
 /// <summary>
 /// CSV行データをセットする.
 /// </summary>
 /// <param name="row"></param>
 public override void SetFromCsv(CsvIo.CsvRow row)
 {
     this.Index = row[0].CsvToIntNotNull();
     this.Name  = row[1];
     this.Part  = row[2].CsvToEnum <Part>();
     this.Slot1 = row[3].CsvToInt();
     this.Slot2 = row[4].CsvToInt();
     this.Slot3 = row[5].CsvToInt();
     this.Slot4 = row[6].CsvToInt();
 }
 /// <summary>
 /// CSV行データをセットする.
 /// </summary>
 /// <param name="row"></param>
 public override void SetFromCsv(CsvIo.CsvRow row)
 {
     this.Index    = row[0].CsvToIntNotNull();
     this.Name     = row[1];
     this.Kana     = row[2];
     this.SlotLv   = row[3].CsvToIntNotNull();
     this.Skill1Id = row[4].CsvToInt();
     this.Skill1Lv = row[5].CsvToInt();
     this.Skill2Id = row[6].CsvToInt();
     this.Skill2Lv = row[7].CsvToInt();
     this.Rare     = row[8].CsvToIntNotNull();
 }
 /// <summary>
 /// CSV行データをセットする.
 /// </summary>
 /// <param name="row"></param>
 public override void SetFromCsv(CsvIo.CsvRow row)
 {
     this.Index    = row[0].CsvToIntNotNull();
     this.AmulteId = row[1].CsvToInt();
     this.AmulteLv = row[2].CsvToInt();
     this.Name     = row[3];
     this.Kana     = row[4];
     this.Skill1Id = row[5].CsvToInt();
     this.Skill1Lv = row[6].CsvToInt();
     this.Skill2Id = row[7].CsvToInt();
     this.Skill2Lv = row[8].CsvToInt();
     this.Skill3Id = row[9].CsvToInt();
     this.Skill3Lv = row[10].CsvToInt();
 }