2using System.Collections.Generic;
7 public class Row : BaseRow
71 public static readonly IReadOnlyDictionary<string, int>
RowMapping =
new Dictionary<string, int>
93 [
"textFlavor_JP"] = 20,
99 public static readonly IReadOnlyDictionary<string, string>
TypeMapping =
new Dictionary<string, string>
102 [
"parent"] =
"string",
103 [
"name_JP"] =
"string",
108 [
"faction"] =
"string",
110 [
"idProfile"] =
"string",
111 [
"idFile"] =
"string[]",
112 [
"idBiome"] =
"string",
113 [
"idGen"] =
"string",
114 [
"idPlaylist"] =
"string",
115 [
"tag"] =
"string[]",
118 [
"image"] =
"string",
120 [
"questTag"] =
"string[]",
121 [
"textFlavor_JP"] =
"string",
122 [
"textFlavor"] =
"string",
123 [
"detail_JP"] =
"string",
124 [
"detail"] =
"string"
127 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)