├── .gitattributes ├── .gitignore ├── App.config ├── MaterialForm.Designer.cs ├── MaterialForm.cs ├── MaterialForm.resx ├── MaterialType.cs ├── MonsterAttack.cs ├── MonsterAttackForm.Designer.cs ├── MonsterAttackForm.cs ├── MonsterAttackForm.resx ├── MonsterForm.Designer.cs ├── MonsterForm.cs ├── MonsterForm.resx ├── Newtonsoft.Json.dll ├── Newtonsoft.Json.xml ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── DataSources │ ├── MonsterNameStrings.datasource │ ├── Mtype.datasource │ ├── PathSettingsData.datasource │ ├── cdda_item_creator.spell.allowed_strings.datasource │ ├── cdda_item_creator.spell.fake_spell.datasource │ ├── cdda_item_creator.spell.fake_spell1.datasource │ ├── cdda_item_creator.spell.spell_type.datasource │ └── cdda_item_creator.spell.spell_type1.datasource ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── README.md ├── ViewerForm.Designer.cs ├── ViewerForm.cs ├── ViewerForm.resx ├── cdda-item-creator.csproj ├── cdda-item-creator.exe.config ├── cdda-item-creator.sln ├── custom_json.cs ├── json ├── body_parts.json ├── hardcoded_mattack.json ├── monster_flags.json ├── spell_effects.json ├── spell_flags.json └── valid_color.json ├── mtype.cs ├── packages.config ├── packages └── Newtonsoft.Json.12.0.3 │ ├── .signature.p7s │ ├── LICENSE.md │ ├── Newtonsoft.Json.12.0.3.nupkg │ ├── lib │ ├── net20 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net35 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net40 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── net45 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netstandard1.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netstandard1.3 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── netstandard2.0 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ ├── portable-net40+sl5+win8+wp8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ └── portable-net45+win8+wp8+wpa81 │ │ ├── Newtonsoft.Json.dll │ │ └── Newtonsoft.Json.xml │ └── packageIcon.png ├── selector.Designer.cs ├── selector.cs ├── selector.resx ├── spell_form.Designer.cs ├── spell_form.cs ├── spell_form.resx └── spell_type.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/.gitignore -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/App.config -------------------------------------------------------------------------------- /MaterialForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/MaterialForm.Designer.cs -------------------------------------------------------------------------------- /MaterialForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/MaterialForm.cs -------------------------------------------------------------------------------- /MaterialForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/MaterialForm.resx -------------------------------------------------------------------------------- /MaterialType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/MaterialType.cs -------------------------------------------------------------------------------- /MonsterAttack.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/MonsterAttack.cs -------------------------------------------------------------------------------- /MonsterAttackForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/MonsterAttackForm.Designer.cs -------------------------------------------------------------------------------- /MonsterAttackForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/MonsterAttackForm.cs -------------------------------------------------------------------------------- /MonsterAttackForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/MonsterAttackForm.resx -------------------------------------------------------------------------------- /MonsterForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/MonsterForm.Designer.cs -------------------------------------------------------------------------------- /MonsterForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/MonsterForm.cs -------------------------------------------------------------------------------- /MonsterForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/MonsterForm.resx -------------------------------------------------------------------------------- /Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Properties/DataSources/MonsterNameStrings.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/Properties/DataSources/MonsterNameStrings.datasource -------------------------------------------------------------------------------- /Properties/DataSources/Mtype.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/Properties/DataSources/Mtype.datasource -------------------------------------------------------------------------------- /Properties/DataSources/PathSettingsData.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/Properties/DataSources/PathSettingsData.datasource -------------------------------------------------------------------------------- /Properties/DataSources/cdda_item_creator.spell.allowed_strings.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/Properties/DataSources/cdda_item_creator.spell.allowed_strings.datasource -------------------------------------------------------------------------------- /Properties/DataSources/cdda_item_creator.spell.fake_spell.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/Properties/DataSources/cdda_item_creator.spell.fake_spell.datasource -------------------------------------------------------------------------------- /Properties/DataSources/cdda_item_creator.spell.fake_spell1.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/Properties/DataSources/cdda_item_creator.spell.fake_spell1.datasource -------------------------------------------------------------------------------- /Properties/DataSources/cdda_item_creator.spell.spell_type.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/Properties/DataSources/cdda_item_creator.spell.spell_type.datasource -------------------------------------------------------------------------------- /Properties/DataSources/cdda_item_creator.spell.spell_type1.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/Properties/DataSources/cdda_item_creator.spell.spell_type1.datasource -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/README.md -------------------------------------------------------------------------------- /ViewerForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/ViewerForm.Designer.cs -------------------------------------------------------------------------------- /ViewerForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/ViewerForm.cs -------------------------------------------------------------------------------- /ViewerForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/ViewerForm.resx -------------------------------------------------------------------------------- /cdda-item-creator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/cdda-item-creator.csproj -------------------------------------------------------------------------------- /cdda-item-creator.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/cdda-item-creator.exe.config -------------------------------------------------------------------------------- /cdda-item-creator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/cdda-item-creator.sln -------------------------------------------------------------------------------- /custom_json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/custom_json.cs -------------------------------------------------------------------------------- /json/body_parts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/json/body_parts.json -------------------------------------------------------------------------------- /json/hardcoded_mattack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/json/hardcoded_mattack.json -------------------------------------------------------------------------------- /json/monster_flags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/json/monster_flags.json -------------------------------------------------------------------------------- /json/spell_effects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/json/spell_effects.json -------------------------------------------------------------------------------- /json/spell_flags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/json/spell_flags.json -------------------------------------------------------------------------------- /json/valid_color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/json/valid_color.json -------------------------------------------------------------------------------- /mtype.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/mtype.cs -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/packages.config -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/.signature.p7s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/packages/Newtonsoft.Json.12.0.3/.signature.p7s -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/packages/Newtonsoft.Json.12.0.3/LICENSE.md -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/Newtonsoft.Json.12.0.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/packages/Newtonsoft.Json.12.0.3/Newtonsoft.Json.12.0.3.nupkg -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net20/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net35/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net40/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/net45/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/netstandard1.3/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/netstandard2.0/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/portable-net40+sl5+win8+wp8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/packages/Newtonsoft.Json.12.0.3/lib/portable-net45+win8+wp8+wpa81/Newtonsoft.Json.xml -------------------------------------------------------------------------------- /packages/Newtonsoft.Json.12.0.3/packageIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/packages/Newtonsoft.Json.12.0.3/packageIcon.png -------------------------------------------------------------------------------- /selector.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/selector.Designer.cs -------------------------------------------------------------------------------- /selector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/selector.cs -------------------------------------------------------------------------------- /selector.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/selector.resx -------------------------------------------------------------------------------- /spell_form.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/spell_form.Designer.cs -------------------------------------------------------------------------------- /spell_form.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/spell_form.cs -------------------------------------------------------------------------------- /spell_form.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/spell_form.resx -------------------------------------------------------------------------------- /spell_type.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KorGgenT/cdda-item-creator/HEAD/spell_type.cs --------------------------------------------------------------------------------