protected override void ReadLine(BinaryReader reader)
 {
     SuperArmorRecoveryCoffTable.RowData rowData = new SuperArmorRecoveryCoffTable.RowData();
     base.Read <int>(reader, ref rowData.Value, CVSReader.intParse);
     this.columnno = 0;
     base.Read <int>(reader, ref rowData.monster_type, CVSReader.intParse);
     this.columnno = 1;
     base.Read <double>(reader, ref rowData.SupRecoveryChange, CVSReader.doubleParse);
     this.columnno = 2;
     this.Table.Add(rowData);
     this.columnno = -1;
 }
 protected override bool OnLine(string[] Fields)
 {
     SuperArmorRecoveryCoffTable.RowData rowData = new SuperArmorRecoveryCoffTable.RowData();
     if (!base.Parse(Fields[this.ColMap[0]], ref rowData.Value))
     {
         return(false);
     }
     if (!base.Parse(Fields[this.ColMap[1]], ref rowData.monster_type))
     {
         return(false);
     }
     if (!base.Parse(Fields[this.ColMap[2]], ref rowData.SupRecoveryChange))
     {
         return(false);
     }
     this.Table.Add(rowData);
     return(true);
 }