2using System.Collections.Generic;
7 public class Row : BaseRow
73 public static readonly IReadOnlyDictionary<string, int>
RowMapping =
new Dictionary<string, int>
90 [
"costSkyTravel"] = 15,
96 [
"textFlavor_JP"] = 21,
102 public static readonly IReadOnlyDictionary<string, string>
TypeMapping =
new Dictionary<string, string>
105 [
"parent"] =
"string",
106 [
"name_JP"] =
"string",
111 [
"faction"] =
"string",
113 [
"idProfile"] =
"string",
114 [
"idFile"] =
"string[]",
115 [
"idBiome"] =
"string",
116 [
"idGen"] =
"string",
117 [
"idPlaylist"] =
"string",
118 [
"tag"] =
"string[]",
119 [
"costSkyTravel"] =
"int",
122 [
"image"] =
"string",
124 [
"questTag"] =
"string[]",
125 [
"textFlavor_JP"] =
"string",
126 [
"textFlavor"] =
"string",
127 [
"detail_JP"] =
"string",
128 [
"detail"] =
"string"
131 public override string[]
ImportFields =>
new string[1] {
"textFlavor" };
static string[] GetStringArray(int id)
static string GetString(int id)
static int GetInt(int id)
static int[] GetIntArray(int id)
static readonly IReadOnlyDictionary< string, int > RowMapping
override string[] ImportFields
static readonly IReadOnlyDictionary< string, string > TypeMapping
override void SetRow(Row r)
override IReadOnlyDictionary< string, string > GetTypeMapping()
override IReadOnlyDictionary< string, int > GetRowMapping()
override Row CreateRowByMapping(IReadOnlyDictionary< string, int > mapping)